.cov-faq {
  background: var(--cov-bg);
  padding-bottom: 0;
}

.cov-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: stretch;
}

.cov-faq-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.cov-faq-title {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.cov-faq-subtitle {
  color: #fff;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
}

.cov-faq-image {
  margin-top: auto;
  line-height: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.cov-faq-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 360px;
}

.cov-faq-list {
  list-style: none;
  margin: 0;
  padding: 0 0 var(--cov-section-pad);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.cov-faq-item {
  padding: 0;
  border-radius: 32px 2px 32px 2px;
  overflow: hidden;
  transition:
    background 0.2s,
    border-color 0.2s,
    border-radius 0.2s;
  background: transparent;
  border: 0;
}
.cov-faq-item.is-open {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--cov-yellow);
  border-radius: 12px;
}

.cov-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
}

.cov-faq-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.cov-faq-item.is-open .cov-faq-icon {
  transform: rotate(45deg);
  color: #fff;
}

.cov-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.cov-faq-item.is-open .cov-faq-a {
  max-height: 800px;
}
.cov-faq-a p {
  padding: 0 16px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .cov-faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cov-faq-intro {
    align-items: center;
    text-align: center;
  }
  .cov-faq-image {
    display: none;
  }
}
@media (max-width: 480px) {
  .cov-faq-q {
    font-size: 16px;
    padding: 14px;
  }
  .cov-faq-a p {
    font-size: 14px;
    padding: 0 14px 14px;
  }
}
