.anth-home .anth-faq {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.anth-home .anth-faq-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--text);
  margin: 0 0 32px;
}

.anth-home .anth-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  margin-bottom: 28px;
}

.anth-home .anth-faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  background: var(--surface);
}

.anth-home .anth-faq-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}

.anth-home .anth-faq-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 780px) {
  .anth-home .anth-faq-grid {
    grid-template-columns: 1fr;
  }
}
