/* ============================================================
   Homepage — All section styles
   ============================================================ */

/* ── Home Hero ── */
.home-hero {
  position: relative;
  width: 100%;
  height: 760px;
  overflow: hidden;
  background: #0E1A2D;
}

.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scrim: dark on left where text sits, fading to clear on right */
.home-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,26,45,0.7) 0%, rgba(14,26,45,0.55) 30%, rgba(14,26,45,0.15) 55%, rgba(14,26,45,0) 70%);
}

/* Subtle top/bottom vignette — masked to left side only */
.home-hero__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,26,45,0.4) 0%, rgba(14,26,45,0) 25%, rgba(14,26,45,0) 75%, rgba(14,26,45,0.6) 100%);
  mask-image: linear-gradient(90deg, black 0%, black 40%, transparent 65%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 40%, transparent 65%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 32px;
}

.home-hero__wrap {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.home-hero__inner { max-width: 760px; }

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 5px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 28px;
  font-size: 13px;
  color: #fff;
}

.home-hero__badge-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(255,255,255,0.95);
  color: #1F2A3D;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: -0.01em;
}

.home-hero__badge-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--apoh-blue);
}

.home-hero__badge-unit {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-1);
}

.home-hero__badge-text {
  opacity: 0.92;
}

.home-hero__title {
  font-size: 68px;
  line-height: 1.02;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.home-hero__accent {
  color: var(--apoh-green);
  position: relative;
  white-space: nowrap;
}

.home-hero__accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 380 14' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8 Q 100 1, 200 6 T 378 5' stroke='%23F4B72A' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

.home-hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  margin: 0 0 36px;
  font-weight: 400;
}

.home-hero__ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.home-hero__callback-btn {
  padding: 15px 26px;
  border: none;
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--apoh-blue);
  box-shadow: 0 6px 20px rgba(36, 106, 180, 0.35);
  transition: background var(--dur-base);
}
.home-hero__callback-btn:hover { background: var(--apoh-blue-darker); text-decoration: none; }

.home-hero__trust {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.home-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-hero__trust-value { font-size: 14px; color: #fff; font-weight: 800; }
.home-hero__trust-label { font-size: 11px; color: rgba(255,255,255,0.65); }
.home-hero__trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

@media (max-width: 768px) {
  .home-hero { height: auto; min-height: 0; }
  /* Clear sticky header (~60px) plus breathing room */
  .home-hero__content { height: auto; padding: 40px 20px 36px; text-align: center; }
  /* When WP admin bar is present (46px on mobile) push down further */
  .admin-bar .home-hero__content { padding-top: 80px; }
  .home-hero__title { font-size: 40px; }
  .condition-hero__eyebrow { text-align: center; }
  .home-hero__ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .home-hero__ctas .apoh-btn,
  .home-hero__ctas .home-hero__callback-btn,
  .home-hero__ctas .condition-hero__callback-btn { justify-content: center; text-align: center; }
  .home-hero__badge { font-size: 10px; gap: 5px; padding: 3px 8px 3px 3px; white-space: nowrap; }
  .home-hero__badge-pill { padding: 3px 8px; }
  .home-hero__badge-num { font-size: 11px; }
  .home-hero__badge-unit { font-size: 8px; }
  .home-hero__trust { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .home-hero__trust-divider { display: none; }
  /* Mobile: dark gradient top and bottom for readability */
  .home-hero__scrim {
    background: linear-gradient(180deg, rgba(14,26,45,0.7) 0%, rgba(14,26,45,0.4) 35%, rgba(14,26,45,0.25) 55%, rgba(14,26,45,0.5) 80%, rgba(14,26,45,0.75) 100%);
  }
  .home-hero__vignette {
    background: none;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 480px) {
  .home-hero__title { font-size: 32px; }
  .home-hero__lead { font-size: 16px; }
  .home-hero__badge { font-size: 9px; gap: 4px; padding: 3px 6px 3px 3px; }
  .home-hero__badge-pill { padding: 2px 6px; }
  .home-hero__badge-num { font-size: 10px; }
  .home-hero__badge-unit { font-size: 7px; }
}

/* ── One-Day Admissions ── */
.oda { background: var(--bg-page); padding: var(--space-20) 0 var(--space-16); }

.oda__card {
  background: linear-gradient(135deg, var(--apoh-blue) 0%, var(--apoh-blue-darker) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.oda__glow {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137,190,64,0.25), transparent 70%);
}

.oda__eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.oda__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  color: #fff;
}

.oda__body {
  margin: 0;
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 620px;
}
.oda__body strong { color: #fff; }
.oda__note { opacity: 0.7; }

.oda__hours-card {
  background: #fff;
  color: #1F2A3D;
  border-radius: 18px;
  padding: 24px 28px;
  min-width: 240px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.oda__hours-label {
  font-size: 11px;
  color: var(--fg-3);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.oda__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #F0F0EE;
  font-size: 14px;
}
.oda__hours-row--last { border-bottom: none; }
.oda__hours-day { font-weight: 600; }
.oda__hours-time { color: var(--apoh-blue); font-weight: 700; }

.oda__cta { margin-top: 14px; width: 100%; text-align: center; }

@media (max-width: 768px) {
  .oda__card { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ── Award-Winning ── */
.award .apoh-container { max-width: 1280px; }

.award__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.award__media { position: relative; }

.award__video {
  display: block;
  text-decoration: none;
}

.award__video-inner {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(36, 106, 180, 0.18);
  background: #0E1A2D;
  position: relative;
  cursor: pointer;
}

.award__video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #C7DAA0 0%, #89BE40 60%, #246AB4 130%);
}

.award__video-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.award__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
}

.award__video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  transition: transform var(--dur-fast);
}
.award__video:hover .award__video-play { transform: scale(1.08); }

.award__video-duration {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.04em;
}

.award__video-caption {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-2);
  padding-left: 4px;
}

.award__title {
  font-size: 42px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 12px 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.award__title-accent { color: var(--apoh-blue); }

.award__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-1);
  margin: 0 0 24px;
}

.award__quote {
  margin: 0 0 28px;
  padding: 20px 24px;
  border-left: 4px solid var(--apoh-green);
  background: var(--bg-subtle);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-slab);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: #1F2A3D;
  font-weight: 300;
}

.award__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .award__grid { grid-template-columns: 1fr; gap: 40px; }
  .award__title { font-size: 32px; }
  .award__badge { top: -14px; right: -8px; }
}

/* ── Admissions Process ── */
.admissions { background: var(--bg-page); }

.admissions__header { text-align: center; margin-bottom: 56px; }
.admissions__header .apoh-swoosh { margin: 0 auto 14px; }

.admissions__title {
  font-size: 44px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 12px 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.admissions__title-accent { color: var(--apoh-blue); }

.admissions__lead {
  font-size: 17px;
  color: var(--fg-1);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.admissions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.admissions__line {
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #C7D5E8 0 6px, transparent 6px 12px);
  z-index: 0;
}

.admissions__card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px 24px 30px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.admissions__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(36,106,180,0.12), 0 0 0 1px var(--border-hairline);
}

.admissions__circle-wrap {
  display: flex;
  justify-content: center;
  margin-top: -52px;
  margin-bottom: 18px;
}
.admissions__circle-wrap .apoh-step {
  outline: 6px solid var(--bg-page);
}

.admissions__tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--fg-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.admissions__card-title {
  font-size: 22px;
  font-weight: 800;
  color: #1F2A3D;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.admissions__card-accent { color: var(--apoh-blue); }

.admissions__card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-1);
  margin: 0;
}

.admissions__cta { display: flex; justify-content: center; margin-top: 48px; }

@media (max-width: 1024px) {
  .admissions__grid { grid-template-columns: repeat(2, 1fr); }
  .admissions__line { display: none; }
}
@media (max-width: 480px) {
  .admissions__grid { grid-template-columns: 1fr; }
  .admissions__title { font-size: 32px; }
}

/* ── Callback Form ── */
.callback-form { background: linear-gradient(180deg, #fff 0%, #F0F5FB 60%, #fff 100%); }
.callback-form__header { text-align: center; margin-bottom: 24px; }
.callback-form__header .apoh-swoosh { margin: 0 auto; }

.callback-form__title {
  font-size: 36px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 12px 0 10px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.callback-form__title-accent { color: var(--apoh-blue); }

.callback-form__lead {
  font-size: 15px;
  color: var(--fg-1);
  margin: 0 auto 14px;
  max-width: 540px;
  line-height: 1.5;
}

.callback-form__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 50px rgba(31,42,61,0.07);
}

.callback-form__segments {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 18px;
  justify-content: space-between;
}

.callback-form__segment-group {
  border: none;
  padding: 0;
  margin: 0;
}

.callback-form__segment-label,
.callback-form__segments legend {
  font-size: 11px;
  font-weight: 700;
  color: #3D3F47;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
  padding: 0;
}

.callback-form__segment-options {
  display: inline-flex;
  padding: 3px;
  background: #F4F5F7;
  border-radius: var(--radius-pill);
  gap: 2px;
}

.callback-form__segment-options label {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur-fast);
  white-space: nowrap;
  color: var(--fg-1);
}

.callback-form__segment-options input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.callback-form__segment-options input[type="radio"]:checked + label,
.callback-form__segment-options label:has(input:checked) {
  background: #fff;
  color: var(--apoh-blue);
  box-shadow: 0 1px 2px rgba(31,42,61,0.08);
}

.callback-form__divider {
  border: none;
  height: 1px;
  background: #F1F1EE;
  margin: 0;
}

.callback-form__row { display: grid; gap: 12px; }
.callback-form__row--2 { grid-template-columns: 1fr 1fr; }

.callback-form__req { color: var(--apoh-orange); }
.callback-form__optional { font-weight: 500; color: var(--fg-3); text-transform: none; letter-spacing: 0; }

.callback-form__submit { width: 100%; margin-top: 4px; box-shadow: 0 6px 18px rgba(137,190,64,0.32); }

.callback-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #F1F1EE;
}

.callback-form__badges {
  display: inline-flex;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-1);
}

.callback-form__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.callback-form__legal {
  font-size: 10.5px;
  color: var(--fg-3);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .callback-form__segments { grid-template-columns: 1fr; }
  .callback-form__row--2 { grid-template-columns: 1fr; }
  .callback-form__title { font-size: 28px; }
}

/* ── Hybrid Program ── */
.hybrid {
  background: #1F2A3D;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hybrid__glow {
  position: absolute;
  border-radius: 50%;
}
.hybrid__glow--tl { top: -120px; left: -120px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(137,190,64,0.18), transparent 70%); }
.hybrid__glow--br { bottom: -80px; right: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(36,106,180,0.4), transparent 70%); }

.hybrid__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hybrid__title {
  font-size: 48px;
  font-weight: 900;
  margin: 14px 0 22px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
}
.hybrid__title-accent { color: var(--apoh-green); }

.hybrid__body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 16px;
  max-width: 560px;
}
.hybrid__body strong,
.hybrid__body b { color: #fff; }

/* Ensure all bold text in dark sections is white, not blue */
.apoh-section--dark strong,
.apoh-section--dark b { color: #fff; }
.hybrid__body--dim { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }

.hybrid__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hybrid__ghost-btn {
  padding: 15px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--dur-base);
}
.hybrid__ghost-btn:hover { background: rgba(255,255,255,0.08); text-decoration: none; }

.hybrid__team-box {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(137,190,64,0.4);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 0 0 28px;
  max-width: 560px;
}

.hybrid__team-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--apoh-green);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hybrid__team-list {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}

.hybrid__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.hybrid__stat-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 24px 20px;
}

.hybrid__stat-top { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; white-space: nowrap; }
.hybrid__stat-value { font-size: 28px; font-weight: 900; color: var(--apoh-green); font-family: var(--font-slab); line-height: 1; letter-spacing: -0.03em; white-space: nowrap; }
.hybrid__stat-unit { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 700; letter-spacing: 0.04em; }
.hybrid__stat-label { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.45; font-weight: 500; }

.hybrid__photo {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.hybrid__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #246AB4, #1a3a5c);
}

.hybrid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.hybrid__photo-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(31,42,61,0.78);
  color: #fff;
  padding: 8px 12px;
  border-radius: 9px;
  font-family: var(--font-slab);
}

.hybrid__photo-label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  color: var(--apoh-green);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hybrid__photo-title {
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .hybrid__grid { grid-template-columns: 1fr; gap: 32px; }
  .hybrid__content { text-align: center; }
  .hybrid__content .apoh-section-label { display: block; text-align: center; }
  .hybrid__title { font-size: 36px; }
  .hybrid__ctas { flex-direction: column; align-items: stretch; }
  .hybrid__ctas .apoh-btn,
  .hybrid__ghost-btn { justify-content: center; text-align: center; }
}

/* ── Treatment Programs ── */
.programs__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.programs__title {
  font-size: 42px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 12px 0 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 720px;
}
.programs__title-accent { color: var(--apoh-blue); }

.programs__see-all {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  padding: 12px;
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}

.programs__card {
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  transition: all 0.2s;
}
.programs__card:hover {
  border-color: var(--card-color);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--card-color) 13%, transparent);
  text-decoration: none;
}

.programs__card-photo {
  width: 140px;
  flex: 0 0 140px;
  overflow: hidden;
}

.programs__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.programs__card-text {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.programs__card-name { margin: 0; font-size: 16px; font-weight: 800; color: #1F2A3D; line-height: 1.25; letter-spacing: -0.01em; }
.programs__card-blurb { margin: 0; font-size: 13px; line-height: 1.55; color: var(--fg-2); }
.programs__card-link { margin-top: auto; font-size: 12px; color: var(--card-color); font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }

/* Enforce AA-safe accent colors on card links */
.programs__card[style*="--card-color: #89BE40"] .programs__card-link { color: var(--apoh-green-aa); }
.programs__card[style*="--card-color: #F7921E"] .programs__card-link { color: var(--apoh-orange-aa); }
.programs__card[style*="--card-color: #F4B72A"] .programs__card-link { color: #8A6C00; }

@media (max-width: 1024px) {
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .programs__header { flex-direction: column; align-items: center; text-align: center; }
  .programs__grid { grid-template-columns: 1fr; }
  .programs__title { font-size: 32px; }
  .programs__card-photo { width: 100px; flex: 0 0 100px; }
}

/* ── Whole Person Care ── */
.wpc__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

.wpc__title {
  font-size: 44px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 12px 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.wpc__title-accent { color: var(--apoh-blue); }

.wpc__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-1);
  margin: 0 0 28px;
}

.wpc__video {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1F2A3D;
  text-decoration: none;
}

.wpc__video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #246AB4 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wpc__video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wpc__video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--apoh-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform var(--dur-base);
  position: relative;
  z-index: 2;
}
.wpc__video:hover .wpc__video-play { transform: scale(1.05); }

.wpc__video-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.wpc__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wpc__pillar {
  background: var(--bg-subtle);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border-hairline);
  position: relative;
  overflow: hidden;
}

.wpc__pillar-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--pillar-color);
}

.wpc__pillar-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }

.wpc__pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--pillar-color) 12%, transparent);
  color: var(--pillar-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wpc__pillar-label { margin: 0; font-size: 18px; font-weight: 800; color: #1F2A3D; }
.wpc__pillar-body { margin: 0; font-size: 14px; line-height: 1.6; color: var(--fg-1); }

@media (max-width: 768px) {
  .wpc__top { grid-template-columns: 1fr; text-align: center; }
  .wpc__pillars { grid-template-columns: 1fr; }
  .wpc__title { font-size: 32px; }
  .wpc__lead + .apoh-btn { margin: 0 auto; }
}

/* ── Mental Health Tests (dark bg, 3 featured) ── */
.mhtests { background: #1F2A3D; color: #fff; }

.mhtests__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

.mhtests__title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  margin: 12px 0 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 540px;
}

.mhtests__intro {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 360px;
  margin: 0;
}

.mhtests__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.mhtests__card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--dur-base);
  display: block;
}
.mhtests__card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.mhtests__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--card-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mhtests__card-name { margin: 0 0 10px; font-size: 22px; font-weight: 800; color: #fff; line-height: 1.2; }
.mhtests__card-desc { margin: 0 0 20px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.mhtests__card-cta { font-size: 14px; font-weight: 700; color: var(--card-color); }

/* AA-safe tints for dark-background card CTAs */
.mhtests__card[style*="#246AB4"] .mhtests__card-cta { color: #6BA3E0 !important; }
.mhtests__card[style*="#7E5BCC"] .mhtests__card-cta { color: #A88AE0 !important; }

.mhtests__footer { text-align: center; }

.mhtests__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--dur-base);
}
.mhtests__view-all:hover { background: rgba(255, 255, 255, 0.12); text-decoration: none; }

@media (max-width: 768px) {
  .mhtests__grid { grid-template-columns: 1fr; }
  .mhtests__title { font-size: 32px; }
  .mhtests__header { flex-direction: column; }
}

/* ── Personal Stories ── */
.stories__header { text-align: center; margin-bottom: 56px; }

.stories__title {
  font-size: 40px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 12px auto 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 720px;
}

.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stories__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  background: var(--bg-subtle);
}

.stories__card-media {
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(160deg, color-mix(in srgb, var(--story-color) 25%, transparent), color-mix(in srgb, var(--story-color) 56%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stories__card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stories__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  color: var(--story-color);
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.stories__duration {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
}

.stories__focus {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 10px;
  background: #fff;
  color: var(--story-color);
  font-size: 11px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stories__card-body { padding: 24px; }
.stories__card-body .apoh-star-row { margin-bottom: 10px; }

.stories__quote {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #1F2A3D;
  font-style: italic;
  font-family: var(--font-slab);
  font-weight: 400;
}

.stories__attribution { font-size: 13px; color: var(--fg-3); font-weight: 600; }

.stories__cta { text-align: center; margin-top: 40px; font-size: 15px; font-weight: 700; }

@media (max-width: 768px) {
  .stories__grid { grid-template-columns: 1fr; }
  .stories__title { font-size: 32px; }
}

/* ── Hazelden Strip ── */
.hazelden {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

.hazelden__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}

.hazelden__badge {
  padding: 10px 18px;
  border: 1px dashed #C7D5E8;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--apoh-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hazelden__text {
  font-family: var(--font-slab);
  font-style: italic;
  font-size: 16px;
  color: var(--fg-1);
  max-width: 640px;
  line-height: 1.5;
  margin: 0;
}

/* ── Financing (numbered cards) ── */
.financing__header { text-align: center; margin-bottom: 48px; }

.financing__title {
  font-size: 42px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 12px auto 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 720px;
}
.financing__title-accent { color: var(--apoh-blue); }

.financing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.financing__card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--border-hairline);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all var(--dur-base);
}
.financing__card:hover {
  transform: translateY(-2px);
  border-color: var(--card-color);
  box-shadow: 0 12px 32px -12px rgba(31, 42, 61, 0.16);
  text-decoration: none;
}

.financing__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.financing__card-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--card-color), color-mix(in srgb, var(--card-color) 80%, black));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-slab);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.financing__card-title { margin: 0; font-size: 20px; font-weight: 800; color: #1F2A3D; letter-spacing: -0.01em; }
.financing__card-body { margin: 0; font-size: 15px; line-height: 1.65; color: var(--fg-1); }

@media (max-width: 768px) {
  .financing__cards { grid-template-columns: 1fr; }
  .financing__title { font-size: 32px; }
}

/* ── Insurance Strip (centered logo grid) ── */
.ins-strip {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  padding: 64px 0;
}

.ins-strip__header {
  text-align: center;
  margin-bottom: 32px;
}

.ins-strip__title {
  font-size: 28px;
  font-weight: 800;
  color: #1F2A3D;
  margin: 10px 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.ins-strip__accent { color: var(--apoh-blue); }

.ins-strip__body {
  margin: 0 auto;
  max-width: 560px;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.6;
}

.ins-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.ins-strip__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 14px;
}

.ins-strip__card--in-network {
  box-shadow: 0 0 0 2px #E5F2EA inset;
}

.ins-strip__card-name {
  font-size: 16px;
  font-weight: 800;
  color: #1F2A3D;
  text-align: center;
}

.ins-strip__card img {
  max-height: 120px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.ins-strip__in-network-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  color: #1F6F3F;
  background: #E5F2EA;
  text-transform: uppercase;
}

.ins-strip__disclaimer {
  margin-top: 22px;
  font-size: 13px;
  color: var(--fg-2);
  text-align: center;
  line-height: 1.55;
}

.ins-strip__cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 768px) {
  .ins-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ins-strip__grid { grid-template-columns: 1fr; }
  .ins-strip__card { height: auto; min-height: 100px; }
}

/* ── Resources (dark bg) ── */
.resources { position: relative; overflow: hidden; }

.resources__header { text-align: center; margin-bottom: 48px; }

.resources__title {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin: 12px 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.resources__title-accent { color: var(--apoh-green); }

.resources__intro {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  max-width: 560px;
}

.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.resources__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--dur-base);
}
.resources__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--res-color);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.resources__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--res-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--res-color) 33%, transparent);
}

.resources__card-label { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.resources__card-sub { font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, 0.55); }
.resources__card-browse { margin-top: auto; font-size: 13px; color: var(--res-color); font-weight: 800; }

/* AA-safe tints for dark-background resource CTAs */
.resources__card[style*="--res-color: #246AB4"] .resources__card-browse { color: #6BA3E0; }
.resources__card[style*="--res-color: #E55934"] .resources__card-browse { color: #F07050; }
.resources__card[style*="--res-color: #89BE40"] .resources__card-browse { color: #89BE40; /* already passes on dark */ }

@media (max-width: 1024px) { .resources__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .resources__grid { grid-template-columns: 1fr; } }

/* ── Faith Strip ── */
.faith {
  background: linear-gradient(180deg, var(--bg-subtle), #F0F5FB);
  padding: 72px 0;
  text-align: center;
}

.faith__inner { max-width: 880px; }
.faith__inner .apoh-swoosh { margin: 0 auto 18px; opacity: 0.85; }

.faith__verse {
  font-family: var(--font-slab);
  font-size: 26px;
  line-height: 1.45;
  color: #1F2A3D;
  font-style: italic;
  font-weight: 300;
  margin: 0 0 14px;
}

.faith__ref {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── Newsletter ── */
.newsletter {
  background: var(--apoh-blue);
  padding: 64px 0;
  color: #fff;
}

.newsletter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.newsletter__title {
  margin: 10px 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}

.newsletter__lead { margin: 0; font-size: 15px; color: rgba(255, 255, 255, 0.9); line-height: 1.6; }

/* Green label needs bright version on dark/colored background */
.newsletter .apoh-section-label--green { color: var(--apoh-green) !important; }

.newsletter__form { display: flex; flex-direction: column; gap: 10px; }

.newsletter__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.newsletter__input {
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter__input:focus { background: rgba(255,255,255,0.22); }
.newsletter__input--wide { grid-column: 1; }

.newsletter__submit {
  padding: 14px 22px;
  background: var(--apoh-green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background var(--dur-base);
}
.newsletter__submit:hover { background: var(--apoh-green-darker); }

.newsletter__legal { font-size: 11px; opacity: 0.65; }

.newsletter__row:last-of-type { grid-template-columns: 1fr auto; }

@media (max-width: 768px) {
  .newsletter__grid { grid-template-columns: 1fr; }
  .newsletter__row { grid-template-columns: 1fr; }
  .newsletter__row:last-of-type { grid-template-columns: 1fr; }
}

/* Newsletter — Gravity Forms overrides */
.newsletter__form .gform_wrapper { margin: 0 !important; padding: 0 !important; max-width: none !important; }
.newsletter__form .gform_body { margin: 0 !important; }
.newsletter__form .gform_fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin: 0 !important; padding: 0 !important;
}
.newsletter__form .gfield { margin: 0 !important; padding: 0 !important; }
.newsletter__form .gfield--width-half { grid-column: span 1; }
.newsletter__form .gfield_label,
.newsletter__form .gform-field-label { display: none !important; }
.newsletter__form .gfield .ginput_container input,
.newsletter__form .gfield .ginput_container input[type="text"],
.newsletter__form .gfield .ginput_container input[type="email"] {
  width: 100% !important;
  padding: 14px 16px !important;
  border-radius: 10px !important;
  border: none !important;
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-family: var(--font-sans) !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
}
.newsletter__form .gfield .ginput_container input::placeholder { color: rgba(255,255,255,0.6) !important; }
.newsletter__form .gfield .ginput_container input:focus { background: rgba(255,255,255,0.22) !important; }

/* Submit row: email + button side by side */
.newsletter__form .gform-footer,
.newsletter__form .gform_footer {
  display: flex !important;
  gap: 10px !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  grid-column: 1 / -1;
}
.newsletter__form .gform_footer input[type="submit"],
.newsletter__form .gform_button {
  padding: 14px 28px !important;
  background: var(--apoh-green) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  cursor: pointer;
  font-family: var(--font-sans) !important;
  transition: background var(--dur-base);
  white-space: nowrap;
}
.newsletter__form .gform_footer input[type="submit"]:hover,
.newsletter__form .gform_button:hover { background: var(--apoh-green-darker) !important; }
.newsletter__form .gform_validation_errors,
.newsletter__form .gfield_description { color: rgba(255,255,255,0.7) !important; font-size: 12px !important; }
.newsletter__form .gfield_error input { border: 1px solid #E55934 !important; }
/* Hide honeypot */
.newsletter__form .gform_validation_container { display: none !important; }

@media (max-width: 768px) {
  .newsletter__form .gform_fields { grid-template-columns: 1fr !important; }
}

/* Get Help Now + In-Network Band — moved to components.css (global) */

/* ── Case Studies Preview ── */
.cs-preview { padding: var(--space-20) 0; background: #F5F5F4; }

.cs-preview__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-hairline);
}

.cs-preview__left {
  background: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.cs-preview__title {
  font-size: 32px;
  font-weight: 900;
  color: #1F2A3D;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 14px 0 28px;
}

.cs-preview__stories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin-bottom: 28px;
}

.cs-preview__story {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 14px;
  padding: 14px 16px;
  text-decoration: none;
  transition: all var(--dur-fast);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.cs-preview__story:hover {
  border-color: var(--story-color, var(--apoh-blue));
  box-shadow: 0 4px 14px color-mix(in srgb, var(--story-color, var(--apoh-blue)) 13%, transparent);
  text-decoration: none;
}

.cs-preview__story-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.cs-preview__story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-preview__story-text { flex: 1; min-width: 0; }

.cs-preview__story-cat {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cs-preview__story-title {
  font-size: 15px;
  font-weight: 800;
  color: #1F2A3D;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cs-preview__placeholder {
  padding: 24px;
  text-align: center;
  color: var(--fg-3);
}

.cs-preview__view-all {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cs-preview__right {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.cs-preview__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cs-preview__photo-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #89BE40 0%, #246AB4 100%);
}

.cs-preview__photo-caption {
  background: rgba(31, 42, 61, 0.78);
  color: #fff;
  padding: 9px 13px;
  border-radius: 10px;
  font-family: var(--font-slab);
}

.cs-preview__photo-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--apoh-green);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cs-preview__photo-title {
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .cs-preview__card { grid-template-columns: 1fr; }
  .cs-preview__left { text-align: center; align-items: center; }
  .cs-preview__right { min-height: 240px; }
  .cs-preview__left { padding: 32px 24px; }
}

/* ── Callback Form (simplified) ── */
.callback-form { background: linear-gradient(180deg, #fff 0%, #F0F5FB 60%, #fff 100%); }
.callback-form__header { text-align: center; margin-bottom: 32px; }

.callback-form__title {
  font-size: 36px;
  font-weight: 900;
  color: #1F2A3D;
  margin: 12px 0 10px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.callback-form__title-accent { color: var(--apoh-blue); }

.callback-form__lead {
  font-size: 15px;
  color: var(--fg-1);
  margin: 0 auto;
  max-width: 540px;
  line-height: 1.5;
}

.callback-form__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 50px rgba(31, 42, 61, 0.07);
}

.callback-form__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--apoh-blue);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  display: block;
}

.callback-form__row { display: grid; gap: 16px; }
.callback-form__row--2 { grid-template-columns: 1fr 1fr; }

.callback-form__submit { width: 100%; }

.callback-form__badges {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--fg-1);
  flex-wrap: wrap;
}

.callback-form__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 768px) {
  .callback-form__row--2 { grid-template-columns: 1fr; }
  .callback-form__title { font-size: 28px; }
}
