.customer-faq-section {
  max-width: 1400px;
  margin: 0 auto 40px;
}

.customer-faq-section__title {
  margin: 0;
  padding: 10px 0;
  color: #353535;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.customer-faq-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-faq-section__card-wrap {
  min-width: 0;
}

.customer-faq-section__card {
  height: 100%;
  padding: 24px;
  border: 1px solid #353535;
  border-radius: 20px;
}

.customer-faq-section__header {
  position: relative;
  min-height: 40px;
  padding-right: 50px;
}

.customer-faq-section__card-title {
  margin: 0 0 20px;
  color: #353535;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.customer-faq-section__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.customer-faq-section__questions {
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-faq-section__question {
  overflow: hidden;
  padding-right: 10%;
  color: #353535;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-faq-section__link {
  display: inline-block;
  margin-top: 20px;
  color: #256fff;
  font-size: 14px;
  line-height: 1.5;
}

.customer-faq-section__link:hover,
.customer-faq-section__link:focus-visible {
  text-decoration: underline;
}

.customer-faq-section__link:focus-visible {
  outline: 2px solid #256fff;
  outline-offset: 2px;
}

@media screen and (max-width: 839px) {
  .customer-faq-section {
    margin-bottom: 20px;
  }

  .customer-faq-section__title {
    font-size: 24px;
    line-height: 1.3;
  }

  .customer-faq-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px !important;
  }

  .customer-faq-section__card {
    padding: 10px;
    border-radius: 10px;
  }

  .customer-faq-section__header {
    min-height: 30px;
    padding-right: 40px;
  }

  .customer-faq-section__card-title {
    font-size: 18px;
  }

  .customer-faq-section__icon {
    width: 30px;
    height: 30px;
  }

  .customer-faq-section__question,
  .customer-faq-section__link {
    font-size: 12px;
  }
}
