/* =============================================
   ANSWERS / VOICES SECTION — Le Mirwa
   Light aesthetic: white cards on cream, colored top stripes
   ============================================= */
.answers-section {
  padding: 80px 48px;
  background: var(--white);
  border-top: 0.5px solid var(--ink-08);
  border-bottom: 0.5px solid var(--ink-08);
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
}

.aw-head {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 0.5px solid var(--ink-08);
  flex-wrap: wrap;
}
.aw-head .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 40px; line-height: 1;
  color: var(--red); letter-spacing: -0.02em;
}
.aw-head h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 40px); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--ink);
  flex: 1;
}
.aw-head .kicker {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
}

/* Question tabs */
.q-tabs {
  display: flex; gap: 6px; margin-bottom: 28px; flex-wrap: wrap;
  border-bottom: 0.5px solid var(--ink-08);
}
.q-tab {
  background: transparent; border: none;
  padding: 12px 16px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -0.5px;
  transition: color var(--t-fast), border-color var(--t-mid);
  color: var(--ink-50);
}
.q-tab:hover { color: var(--ink); }
.q-tab.active { border-bottom-color: var(--red); color: var(--ink); }
.q-tab .tab-num {
  font-family: var(--font-display); font-weight: 700;
  margin-right: 6px; font-size: 14px; color: var(--red);
}

/* Current question display */
.current-q-display {
  background: var(--cream); color: var(--ink);
  border: 0.5px solid var(--ink-08);
  border-left: 2px solid var(--red);
  border-radius: var(--radius-md);
  padding: 28px 32px; margin-bottom: 32px;
}
.current-q-display .cq-kicker {
  font-family: var(--font-label);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.current-q-display h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--ink);
}

/* Voice cards — white on cream */
.answers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 980px) { .answers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .answers-grid { grid-template-columns: 1fr; } }

.answer-card {
  background: var(--cream); color: var(--ink);
  border: 0.5px solid var(--ink-08);
  border-radius: var(--radius-md);
  padding: 22px 22px 18px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.answer-card:hover {
  border-color: var(--ink-20);
  transform: translateY(-2px);
}

/* 2px colored top stripe by question */
.answer-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 2px; background: var(--red);
}
.answer-card[data-q="q1"]::before, .answer-card[data-q="1"]::before { background: var(--blue); }
.answer-card[data-q="q2"]::before, .answer-card[data-q="2"]::before { background: var(--rn-gradient); }
.answer-card[data-q="q3"]::before, .answer-card[data-q="3"]::before { background: var(--red); }
.answer-card[data-q="q4"]::before, .answer-card[data-q="4"]::before { background: var(--gold); }
.answer-card[data-q="q5"]::before, .answer-card[data-q="5"]::before { background: var(--ink); }

/* Meta */
.answer-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-50);
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.who-tag {
  background: var(--ink); color: var(--on-dark);
  padding: 3px 9px; border-radius: var(--radius-pill);
  font-size: 10px; letter-spacing: 0.08em;
}

/* Quote — serif italic on light bg */
.answer-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 15px; line-height: 1.65;
  color: var(--ink); flex: 1;
}

/* Actions */
.answer-actions {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 0.5px solid var(--ink-08);
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
}

.vote-inline {
  background: var(--white);
  border: 0.5px solid var(--ink-08);
  border-radius: var(--radius-pill);
  color: var(--ink);
  padding: 5px 12px;
  font-family: inherit; font-size: inherit; letter-spacing: inherit;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--t-fast);
}
.vote-inline:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.vote-inline.voted {
  background: var(--red-08); border-color: var(--red-20); color: var(--red);
  animation: votePulse 0.35s var(--ease);
}
.vote-inline .arrow { font-size: 12px; }
@keyframes votePulse {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.comment-toggle {
  background: transparent; border: none;
  font-family: inherit; font-size: inherit; letter-spacing: inherit;
  color: var(--ink-50); cursor: pointer; text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 0.5px solid var(--ink-08);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.comment-toggle:hover { color: var(--red); border-color: var(--red); }

/* Discussion thread */
.answer-discussion {
  margin-top: 14px; padding: 14px 16px;
  background: var(--white);
  border: 0.5px solid var(--ink-08);
  border-left: 2px solid var(--red);
  border-radius: var(--radius-sm);
  display: none;
}
.answer-discussion.open { display: block; }
.ad-comment {
  padding: 8px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; line-height: 1.55; color: var(--ink);
  border-top: 0.5px dashed var(--ink-08);
}
.ad-comment:first-child { border-top: none; }
.ad-comment .who {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); margin-bottom: 3px;
}
.ad-form { display: flex; gap: 8px; margin-top: 10px; }
.ad-form input {
  flex: 1;
  background: var(--cream);
  border: 0.5px solid var(--ink-08);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--ink); caret-color: var(--red);
}
.ad-form input:focus { outline: none; border-color: var(--red-30); }
.ad-form input::placeholder { color: var(--ink-40); }
.ad-form button {
  background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast);
}
.ad-form button:hover { background: var(--red-deep); }

/* Mobile */
@media (max-width: 600px) {
  .answers-section { padding: 56px 20px; }
  .current-q-display { padding: 22px 22px; }
  .answer-card { padding: 20px 20px 16px; }
  .answer-text { font-size: 15px; }
}
