/* voice.css — overrides on top of styles.css for the brutally-honest cut */

/* tighter overall rhythm — half the scroll */
.voice-main section { margin-top: 36px; }
.voice-main .feature { padding: 22px 0; }
.voice-main h2 { font-size: 28px; margin: 4px 0 12px; }
.voice-main h3 { font-size: 19px; }
.voice-main p { margin: 0 0 10px; font-size: 16px; }
.voice-main .subhead { font-size: 16px; }

/* hero gets a slightly more dramatic gradient and a caption overlay on the phone */
.hero-voice {
  background: linear-gradient(160deg, #08191F 0%, #0E2A33 50%, #1A4A52 100%);
}
.hero-voice h1 {
  font-size: 54px;
  line-height: 1.0;
  font-weight: 900;
}
.hero-voice .lead { font-size: 18px; max-width: 540px; }
.hero-voice .pill.sun {
  text-transform: none;
  letter-spacing: 0;
}
.caption-overlay {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 25, 31, 0.92);
  color: #DBF2EB;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.08);
}

/* the "look. before you scroll." confession block */
.confession {
  background: #FFFAEC;
  border: 1px dashed #E8B341;
  border-radius: 18px;
  padding: 22px 26px;
  margin-top: 36px;
}
.confession h2 { color: #5A3D00; }
.confession p { color: #2B2316; }

/* dim aside text, used for the self-aware whispers */
.dim {
  color: #6B7C82;
  font-size: 14px;
  font-style: italic;
}
.feature .body .aside {
  margin-top: 6px;
  font-size: 13px;
  color: #6B7C82;
  font-style: italic;
}

/* bug list — lowercase, monospaced bullet, hand-drawn vibe */
.bug-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.bug-list li {
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid #C84E2C;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #243339;
}
.bug-list li::before {
  content: "× ";
  color: #C84E2C;
  font-weight: 700;
  margin-right: 4px;
}
.bug-list code {
  background: #F2EFE7;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 13px;
}

/* callout-grid for pro/trips section — image left, text right, compact */
.callout-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
}
.callout-grid.mt { margin-top: 14px; }
.callout-grid .shot.small {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(11,30,36,0.12);
  background: var(--ink);
}

/* the download callout, slightly snarkier */
.callout.sarcasm {
  background: #0E2A33;
  position: relative;
}
.callout.sarcasm h3::after {
  content: "";
}

/* responsive adjustments for the voice cut */
@media (max-width: 880px) {
  .hero-voice h1 { font-size: 38px; }
  .callout-grid { grid-template-columns: 1fr; }
  .callout-grid .shot.small { max-width: 200px; margin: 0 auto; }
  .caption-overlay { display: none; }
}

/* print: hide the bear-shame and the sarcasm download cta */
@media print {
  .confession { background: #FBFAF6; border: 1px solid #ccc; }
  .callout.sarcasm { background: #FBFAF6; color: black; }
  .callout.sarcasm h3, .callout.sarcasm p { color: black; }
}
