.faq-list-page {
  width: min(88%, 1440px);
  margin: 0 auto;
  padding: 80px 0 80px;
  color: #14151a;
}

.faq-list-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 46px;
}

.faq-list-intro__title {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 600;
}

.faq-list-intro__description {
  max-width: none;
  margin: 0;
  color: #747b80;
  font-size: 15px;
  line-height: 1.8;
  white-space: nowrap;
}

.faq-search {
  flex: 0 0 320px;
}

.faq-search__label {
  display: block;
  margin-bottom: 20px;
  color: #14151a;
  font-size: 15px;
  line-height: 1;
}

.faq-search__field {
  position: relative;
  display: block;
}

.faq-search__input {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  padding: 0 48px 0 18px;
  border: 1px solid #dfe5e8;
  border-radius: 2px;
  background: #fff;
  color: #14151a;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-search__input:focus {
  border-color: #21536c;
  box-shadow: 0 0 0 3px rgba(33, 83, 108, .08);
}

.faq-search__icon {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 18px;
  height: 18px;
  border: 1.6px solid #21536c;
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.faq-search__icon::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 1.6px;
  background: #21536c;
  content: "";
  transform: rotate(45deg);
}

.faq-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-card {
  position: relative;
  display: flex;
  min-height: 218px;
  box-sizing: border-box;
  flex-direction: column;
  padding: 30px 32px 28px;
  border: 1px solid #e4e9ec;
  color: inherit;
  text-decoration: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.faq-card:hover {
  border-color: rgba(33, 83, 108, .58);
  box-shadow: 0 14px 34px rgba(18, 53, 70, .08);
  transform: translateY(-3px);
}

.faq-card__date {
  margin-bottom: 18px;
  color: #8a9297;
  font-size: 13px;
  letter-spacing: .04em;
}

.faq-card__title {
  margin: 0 0 13px;
  color: #16191b;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  transition: color .2s ease;
}

.faq-card:hover .faq-card__title { color: #21536c; }

.faq-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 22px;
  color: #747b80;
  font-size: 15px;
  line-height: 1.85;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.faq-card__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: #21536c;
  font-size: 14px;
}

.faq-card__arrow { transition: transform .2s ease; }
.faq-card:hover .faq-card__arrow { transform: translateX(4px); }

.faq-list-status {
  grid-column: 1 / -1;
  padding: 72px 20px;
  border: 1px solid #e4e9ec;
  color: #7a8186;
  text-align: center;
}

@media (max-width: 900px) {
  .faq-list-intro { align-items: stretch; flex-direction: column; gap: 24px; }
  .faq-search { flex-basis: auto; width: min(100%, 420px); }
  .faq-list-intro__description { white-space: normal; }
}

@media (max-width: 750px) {
  .faq-list-page { width: calc(100% - 32px); padding: 48px 0 80px; }
  .faq-list-intro { margin-bottom: 30px; }
  .faq-search { width: 100%; max-width: none; }
  .faq-list-intro__title { font-size: 26px; }
  .faq-list-grid { grid-template-columns: 1fr; gap: 14px; }
  .faq-card { min-height: 0; padding: 24px 22px; }
  .faq-card__title { font-size: 19px; }
}
