/* Features Section */
.features-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.features-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.features-section .features-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.features-section .feature-card {
  border-radius: 12px;
  background-color: #f9f7f7;
  padding: var(--padding-small);
}

.features-section .feature-card .content {
  display: flex;
  gap: 16px;
}

.features-section .feature-card .content-image {
  height: 16px;
  width: 14px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features-section .feature-card .description {
  display: flex;
}

.features-section .feature-card .description p {
  font-size: var(--features-font-size);
  font-weight: 300;
  line-height: var(--features-line-height);
  text-align: left;
  color: #353535;
}

@media (min-width: 1280px) {
  .features-section .container {
    flex-direction: row;
    width: 1200px;
    gap: 36px;
  }

  .features-section .title {
    width: 376px;
  }

  .features-section .features-panel {
    width: 788px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .features-section .feature-card {
    max-width: 376px;
    background-color: #f9f7f7;
    padding: 20px;
  }

  .features-section .feature-card .content {
    gap: 20px;
  }

  .features-section .feature-card .description {
    width: 288px;
  }

  .features-section .feature-card .content-image {
    width: 27.63px;
    height: 31.39px;
  }

  .features-section .feature-card .content-image img {
    width: 27.63px;
    height: 31.39px;
  }
}
