:root{
  --bg: #181818;
  --bg-soft: #171a1d;
  --surface: #ffffff;

  --text: #f3f4f6;
  --text-dark: #181818;
  --muted: #9aa0a6;

  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.18);

  --accent: #ffffff;

  --max: 1334px;

  --radius: 14px;

  --header-h: 63px;
}

/* Reset */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================
   HEADER
========================= */

.teen-header{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height: var(--header-h);
  z-index:1000;
    background: rgb(24 24 24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  
}

.teen-header__inner{
  max-width: var(--max);
  margin:0 auto;
  height:100%;
  padding:0 32px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Brand */

.teen-brand{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:600;
  letter-spacing:.04em;
  font-size: 1.6rem;
}

.teen-brand__berea{
  color:#fff;
}



/* Nav */

.teen-nav{
  display:flex;
  align-items:center;
  gap:32px;
}

.teen-nav__list{
  display:flex;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}

.teen-nav__link{
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--muted);
  font-weight:600;
}

.teen-nav__link:hover,
.teen-nav__link.is-active{
  color:#fff;
}

/* Actions */

.teen-nav__actions{
  display:flex;
  gap:14px;
}

.teen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

/* Button styles */

.teen-btn--ghost{
  border:1px solid var(--line-strong);
  color:#fff;
}

.teen-btn--solid{
  border:1px solid #fff;
  background:#fff;
  color:#181818;
}

/* =========================
   HERO
========================= */

.page-shell{
  padding-top: var(--header-h);
}

.hero{
  min-height: 85vh;
  display:flex;
  align-items:center;
}

.hero__grid {
    width: 100%;
    min-height: 100lvh;
    display: flex;
    align-items: center;
}

/* Main hero */

.hero__main{
  max-width: 900px;
}

.hero__eyebrow{
  display:inline-block;
  font-size:.75rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color: var(--muted);
  margin-bottom:20px;
}

/* Title (this is where the tone lives) */

.hero__title{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-size: clamp(2.8rem, 7vw, 8rem);
  line-height: .95;

  margin:0;
}

/* Subtext */

.hero__text{
  margin-top:24px;
  max-width:600px;

  font-size:1rem;
  line-height:1.7;
  color: var(--muted);
}

/* Actions */

.hero__actions{
  margin-top:30px;
  display:flex;
  gap:12px;
}

/* --- RESET NAV LINK STYLING --- */
/* =========================
   RESET / LINKS
========================= */

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* =========================
   HEADER
========================= */

.teen-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 63px;
  z-index: 1000;
      background: rgb(24 24 24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
 
}

.teen-header__inner{
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.teen-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0px;
    color: #fff;
    min-width: 0;
    flex-direction: row;
    align-content: flex-start;
}

.teen-brand__berea {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0px;
    text-transform: uppercase;
    padding-left: 0px;
}

.teen-brand__teen {
    font-family: 'inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: .75;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fcfcfc99;
    margin: 0px;
    writing-mode: vertical-lr;
    padding-top: 4px;
    padding-right:6px;
}

.teen-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    min-width: 0;
}

.teen-nav__list{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.teen-nav__item{
  margin: 0;
  padding: 0;
}

.teen-nav__link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .78);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .18em;
    text-transform: uppercase;
    line-height: 1;
    transition: color .18s ease, opacity .18s ease;
}

.teen-nav__link:hover,
.teen-nav__link.is-active{
  color: #fff;
}

.teen-nav__actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.teen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.teen-btn--ghost{
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  background: transparent;
}

.teen-btn--ghost:hover{
  border-color: rgba(255,255,255,.55);
}

.teen-btn--solid{
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  color: #0b0d10;
}

.teen-btn--solid:hover{
  background: #fff;
  border-color: #fff;
}

/* =========================
   MOBILE TOGGLE
========================= */

.teen-header__toggle{
  display: none;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.teen-header__toggle span{
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

/* animated toggle state */
.teen-header__toggle.is-open span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.teen-header__toggle.is-open span:nth-child(2){
  opacity: 0;
}

.teen-header__toggle.is-open span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   PAGE OFFSET
========================= */

.page-shell{
  padding-top: 63px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px){
  .teen-header__inner{
    padding: 8px 24px;
  }

  .teen-brand__berea{
    font-size: 34px;
  }

  .teen-nav__list{
    gap: 18px;
  }

  .teen-btn{
    padding: 10px 14px;
  }
}

@media (max-width: 980px){
  .teen-header__toggle{
    display: inline-flex;
  }

  .teen-nav{
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 24px 24px;
            background: #181818;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        height: 100svh;
  }

  .teen-nav.is-open{
    display: flex;
  }

  .teen-nav__list{
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .teen-nav__item{
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.06);
  }

  .teen-nav__item:first-child{
    border-top: 0;
  }

  .teen-nav__link{
    width: 100%;
    min-height: 54px;
    font-size: 13px;
    letter-spacing: .16em;
  }

  .teen-nav__actions{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 18px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .teen-btn{
    width: 100%;
  }
}

@media (max-width: 640px){
  .teen-header{
    height: 72px;
  }

  .teen-header__inner{
    padding: 0 18px;
    gap: 16px;
  }

  .teen-brand{
    gap: 0px;
  }

  .teen-brand__berea{
    font-size: 34px;
  }

  .teen-brand__teen{
    font-size: 29;
    letter-spacing: 1px;
  }

  .teen-header__toggle{
    width: 44px;
    height: 44px;
  }

  .teen-nav{
    top: 0px;
    padding: 115px 18px 20px;
    z-index:-1;
  }

  .page-shell{
    padding-top: 72px;
  }
}

/* --- HEADER BASE --- */
.site-header {
  background: #0c0c0c;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 32px;
}

/* --- LOGO --- */
.site-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase; /* FORCE IN BEREA CAPS */
  font-size: 22px;
  color: #ffffff;
}

/* optional: teen tag */
.site-logo .teen {
  font-size: 12px;
  letter-spacing: 2px;
  margin-left: 6px;
  color: #6f7cff; /* subtle accent */
}

/* --- NAV LINKS --- */
.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

/* active state */
.main-nav a.active {
  color: #ffffff;
}

/* --- BUTTONS --- */
.nav-btn {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* dashboard (filled) */
.nav-btn.primary {
  background: #ffffff;
  color: #000;
  border: none;
}

/* --- REMOVE DEV BUTTON --- */
#openNav,
.open-nav,
button[aria-label="Open navigation"] {
  display: none !important;
}

/* =========================
   IMAGE SECTION (OPTIONAL)
========================= */

.hero-image {
    width: 100%;
    height: 70svh;
    background-size: cover;
    background-position: 50% 18%;
    filter: saturate(0.95) brightness(1.35);
}

/* =========================
   LIGHT SECTION (contrast block)
========================= */

.section-light{
  background:#fcfcfc;
  color:#181818;
  
}

.section-light .title{
  font-family:'Barlow Condensed', sans-serif;
  text-transform:uppercase;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin:0 0 20px;
}

.section-light p{
  max-width:600px;
  color:#333;
  line-height:1.7;
}

.section-dark{
  background:#181818;
  color:#fcfcfc;
  padding:120px 0;
}

.section-light{
  background:#fcfcfc;
  color:#181818;
  padding:120px 0;
}

.section-shell{
  max-width: 1180px;
}

.section-shell--split{
  display:grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap:72px;
  align-items:start;
}

.section-copy{
  max-width: 760px;
}

.section-copy .title{
  margin:0 0 22px;
  font-family:'Barlow Condensed', sans-serif;
  font-weight:600;
  font-size:clamp(3rem, 6vw, 5.6rem);
  line-height:.95;
  letter-spacing:.01em;
  text-transform:uppercase;
}

.section-copy p{
  margin:0;
  max-width:760px;
  font-size:1.08rem;
  line-height:1.8;
}

.section-dark .section-copy p{
  color:rgba(255,255,255,.72);
}

.section-light .section-copy p{
  color:rgba(15,17,19,.72);
}

.section-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.section-list-block{
  display:grid;
  gap:0;
  border-top:1px solid rgba(15,17,19,.12);
}

.section-list-item{
  padding:22px 0;
  border-bottom:1px solid rgba(15,17,19,.12);
}

.section-list-item h3{
  margin:0 0 8px;
  font-family:'Barlow Condensed', sans-serif;
  font-size:2rem;
  line-height:1;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:#181818;
}

.section-list-item p{
  margin:0;
  color:rgba(15,17,19,.68);
  font-size:1rem;
  line-height:1.7;
}

.section-quote{
  display:flex;
  gap:18px;
  align-items:flex-start;
  margin-top:42px;
  max-width:860px;
}

.section-quote__mark{
  font-family:'Barlow Condensed', sans-serif;
  font-size:5rem;
  line-height:.8;
  color:rgba(255,255,255,.26);
  flex:0 0 auto;
}

.section-quote__text{
  margin:0;
  font-size:1.15rem;
  line-height:1.8;
  color:#ffffff !important;
}

.section-quote__ref{
  margin-top:12px !important;
  font-size:.82rem !important;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.62) !important;
}

.section-shell--cta .section-copy{
  max-width:820px;
}

.teen-btn--dark{
  border:1px solid rgba(15,17,19,.18);
  background:transparent;
  color:#181818;
}

.teen-btn--dark:hover{
  border-color:#181818;
}

@media (max-width: 980px){
  .section-dark,
  .section-light{
    padding:88px 0;
  }

  .section-shell--split{
    grid-template-columns:1fr;
    gap:42px;
  }

  .section-copy .title{
    font-size:clamp(2.6rem, 10vw, 4.4rem);
  }
}

@media (max-width: 640px){
  .section-dark,
  .section-light{
    padding:72px 0;
  }

  .section-copy p,
  .section-list-item p,
  .section-quote__text{
    font-size:1rem;
    line-height:1.7;
  }

  .section-list-item h3{
    font-size:1.6rem;
  }

  .section-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .section-actions .teen-btn{
    width:100%;
  }
}

/* =========================
   Teen Bible
========================= */

.teen-bible-page{
  background:#fcfcfc;
  color:#111;
}

.section-dark{
  background:#181818;
  color:#fcfcfc;
}

.section-light{
  background:#fcfcfc;
  color:#111;
}

.teen-bible-hero,
.teen-book-head,
.teen-reading-head{
  padding:120px 0 56px;
}

.teen-bible-hero__grid,
.teen-book-head__grid,
.teen-reading-head__row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:28px;
  align-items:end;
}

.teen-bible-shell{
  padding:42px 0 72px;
}

.teen-bible-intro{
  max-width:780px;
  margin-bottom:32px;
  font-size:1.05rem;
  line-height:1.7;
}

.teen-testament-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.teen-testament-panel{
  border:1px solid rgba(17,17,17,.12);
  padding:20px;
  background:#fcfcfc;
}

.teen-testament-panel__head{
  margin-bottom:18px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(17,17,17,.12);
}

.teen-testament-panel__head h3{
  margin:0;
  font-size:1.1rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.teen-book-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 14px;
}

.teen-book-link{
  display:block;
  text-decoration:none;
  color:inherit;
  padding:12px 0;
  border-bottom:1px solid rgba(17,17,17,.1);
  transition:transform .18s ease, opacity .18s ease;
}

.teen-book-link:hover{
  transform:translateX(4px);
  opacity:.85;
}

.teen-book-link__name{
  font-size:1rem;
  letter-spacing:.02em;
}

.teen-crumbs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
  font-size:.92rem;
  opacity:.78;
}

.teen-crumbs a{
  color:inherit;
  text-decoration:none;
}

.vertical-label{
  writing-mode:vertical-rl;
  text-orientation:mixed;
  font-size:.8rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.6;
}

.hero-note{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.hero-note p{
  margin:0;
  opacity:.78;
}

.teen-chapter-grid{
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  gap:12px;
  padding:42px 0 72px;
}

.teen-chapter-link{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:68px;
  border:1px solid rgba(17,17,17,.12);
  background:#fcfcfc;
  color:#111;
  text-decoration:none;
  font-size:1.1rem;
  font-weight:600;
  transition:transform .18s ease, background .18s ease;
}

.teen-chapter-link:hover{
  transform:translateY(-2px);
  background:#fff;
}

.teen-reading-section{
  padding:40px 0 84px;
}

.teen-reading-layout{
  display:grid;
  grid-template-columns:110px minmax(0,760px);
  gap:32px;
  align-items:start;
}

.teen-reading-rail{
  position:relative;
}

.teen-reading-rail__inner{
  position:sticky;
  top:120px;
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:.9rem;
  opacity:.72;
}

.teen-reading-rail__inner p{
  margin:0;
}

.teen-reader{
  max-width:760px;
  font-size:1.16rem;
  line-height:2;
  letter-spacing:.01em;
}

.teen-reader p{
  margin:0 0 1.2rem;
}

.verse-num{
  font-size:.72em;
  vertical-align:super;
  opacity:.52;
  margin-right:.28em;
}

.teen-verse.is-target{
  background:rgba(255,229,92,.45);
  border-radius:4px;
  padding:2px 4px;
  margin:0 -2px;
}

.teen-reading-controls{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.teen-nav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border:1px solid rgba(252,252,252,.18);
  color:#fcfcfc;
  text-decoration:none;
  background:transparent;
}

.teen-nav-btn.is-disabled{
  opacity:.35;
  pointer-events:none;
}

.teen-jump select{
  min-height:44px;
  border:1px solid rgba(252,252,252,.18);
  background:#111;
  color:#fcfcfc;
  padding:0 14px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

@media (max-width: 980px){
  .teen-testament-grid{
    grid-template-columns:1fr;
  }

  .teen-chapter-grid{
    grid-template-columns:repeat(6,minmax(0,1fr));
  }

  .teen-reading-layout{
    grid-template-columns:1fr;
  }

  .teen-reading-rail{
    display:none;
  }
}

@media (max-width: 720px){
  .teen-bible-hero,
  .teen-book-head,
  .teen-reading-head{
    padding:104px 0 40px;
  }

  .teen-bible-hero__grid,
  .teen-book-head__grid,
  .teen-reading-head__row{
    grid-template-columns:1fr;
  }

  .teen-book-list{
    grid-template-columns:1fr;
  }

  .teen-chapter-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .teen-reader{
    font-size:1.05rem;
    line-height:1.9;
  }
}

h1.page-title {
    font-family: 'Barlow Condensed';
    font-weight: 600;
    letter-spacing: 1px;
}

/* =========================
   Footer
========================= */

.site-footer{
  background:#2c2c2c;
  color:#fcfcfc;
  
}

.site-footer__inner{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:32px;
  padding:48px 10px;
}

.site-footer__col{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* Brand column */

.site-footer__col--brand .teen-brand{
  display:inline-flex;
  flex-direction:row;
  text-decoration:none;
  color:#fcfcfc;
  line-height:1;
}

.site-footer__tagline{
  margin:6px 0 0;
  font-size:.95rem;
  opacity:.7;
  max-width:260px;
}

/* Nav column */

.site-footer__nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.site-footer__nav a{
  text-decoration:none;
  color:#fcfcfc;
  font-size:.95rem;
  letter-spacing:.04em;
  opacity:.8;
  transition:opacity .18s ease, transform .18s ease;
}

.site-footer__nav a:hover{
  opacity:1;
  transform:translateX(4px);
}

/* Meta column */

.site-footer__meta{
  font-size:.85rem;
  opacity:.6;
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* Responsive */

@media (max-width: 900px){
  .site-footer__inner{
    grid-template-columns:1fr;
    gap:28px;
  }

  .site-footer__col--nav{
    order:2;
  }

  .site-footer__col--meta{
    order:3;
  }
}

/* =========================
   Teen Bible Filters
========================= */

.teen-bible-index-section{
  padding:40px 0 84px;
}

.teen-bible-filters{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px, 380px);
  gap:20px;
  align-items:end;
  margin:28px 0 20px;
}

.teen-bible-filter-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.teen-filter-tab{
  appearance:none;
  border:1px solid rgba(17,17,17,.14);
  background:#fcfcfc;
  color:#111;
  min-height:44px;
  padding:0 16px;
  font:inherit;
  letter-spacing:.04em;
  cursor:pointer;
  transition:background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.teen-filter-tab:hover{
  transform:translateY(-1px);
}

.teen-filter-tab.is-active{
  background:#111;
  color:#fcfcfc;
  border-color:#111;
}

.teen-bible-search-wrap{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.teen-bible-search-label{
  font-size:.84rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.7;
}

.teen-bible-search{
  width:100%;
  min-height:48px;
  border:1px solid rgba(17,17,17,.14);
  background:#fcfcfc;
  color:#111;
  padding:0 14px;
  font:inherit;
}

.teen-bible-search:focus{
  outline:none;
  border-color:#111;
}

.teen-bible-results-meta{
  margin:0 0 18px;
  font-size:.92rem;
  opacity:.68;
}

.teen-book-list--filtered{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px 18px;
}

.teen-book-link{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  text-decoration:none;
  color:inherit;
  padding:14px 0;
  border-bottom:1px solid rgba(17,17,17,.1);
  transition:transform .18s ease, opacity .18s ease;
}

.teen-book-link:hover{
  transform:translateX(4px);
  opacity:.85;
}

.teen-book-link__name{
  font-size:1rem;
  letter-spacing:.02em;
}

.teen-book-link__meta{
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.48;
  white-space:nowrap;
}

.teen-bible-empty{
  padding:24px 0 8px;
  opacity:.72;
}

.teen-bible-empty p{
  margin:0;
}

@media (max-width: 900px){
  .teen-bible-filters{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .teen-book-list--filtered{
    grid-template-columns:1fr;
  }

  .teen-book-link{
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
  }

  .teen-book-link__meta{
    white-space:normal;
  }
}
.teen-book-link.is-hidden{
  display:none !important;
}

/* =========================
   Teen Book Overview
========================= */

.teen-book-overview{
  padding:120px 0 84px;
  background:#fcfcfc;
  color:#111;
}

.teen-book-overview__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  margin-bottom:44px;
}

.teen-book-overview__title {
    margin: 0;
    font-size: clamp(3rem, 7vw, 5.4rem);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -.02em;
    font-family: 'Barlow Condensed';
}

.teen-book-overview__meta{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:1rem;
  opacity:.66;
  white-space:nowrap;
  padding-top:10px;
}

.teen-book-overview__dot{
  opacity:.45;
}

.teen-book-overview__body{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 360px;
  gap:48px;
  align-items:start;
}

.teen-book-start-link{
  display:inline-block;
  text-decoration:none;
  color:#111;
  font-size:1.8rem;
  line-height:1.1;
  margin-bottom:26px;
}

.teen-book-start-link:hover{
  opacity:.75;
}

.teen-book-overview__highlight{
  max-width:760px;
  margin:0 0 20px;
  font-size:1.06rem;
  line-height:1.7;
  color:rgba(17,17,17,.78);
}

.teen-book-overview__themes{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.teen-theme-chip{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border:1px solid rgba(17,17,17,.12);
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(17,17,17,.72);
  background:#fff;
}

.teen-book-jump{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
  width:100%;
}

.teen-book-jump__label{
  font-size:1rem;
  color:rgba(17,17,17,.68);
  white-space:nowrap;
}

.teen-book-jump__select{
  width:280px;
  max-width:100%;
  min-height:41px;
  border:0;
  border-radius:0px;
  background:#fff;
  color:#1c2433;
  padding:0 22px;
  font:inherit;
  font-size:1.1rem;
}

.teen-book-jump__select:focus{
  outline:none;
}

@media (max-width: 900px){
  .teen-book-overview__top{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:28px;
  }

  .teen-book-overview__meta{
    padding-top:0;
    white-space:normal;
  }

  .teen-book-overview__body{
    grid-template-columns:1fr;
    gap:28px;
  }

  .teen-book-jump{
    justify-content:flex-start;
  }
}

@media (max-width: 640px){
  .teen-book-overview{
    padding:104px 0 64px;
  }

  .teen-book-start-link{
    font-size:1.45rem;
  }

  .teen-book-jump{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .teen-book-jump__select{
    width:100%;
    min-height:58px;
    border-radius:16px;
  }
}
.teen-topic-grid,
.teen-study-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.teen-topic-card,
.teen-study-card{
  background:#fff;
  border:none;
  overflow:hidden;
}

.teen-topic-card__image,
.teen-study-card__image{
  display:block;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#e5e7eb;
}

.teen-topic-card__image img, .teen-study-card__image img
 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.5) contrast(0.75);
}

.teen-topic-card__body,
.teen-study-card__body{
  padding:16px;
}

.teen-topic-card__meta,
.teen-study-card__meta{
  margin:0 0 8px;
  font-size:.8rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.58;
}

.teen-topic-card__title,
.teen-study-card__title{
  margin:0 0 10px;
  font-size:1.2rem;
  line-height:1.1;
}

.teen-topic-card__title a,
.teen-study-card__title a,
.teen-study-card__meta a{
  color:inherit;
  text-decoration:none;
}

.teen-topic-card__text,
.teen-study-card__text{
  margin:0;
  line-height:1.6;
  color:rgba(17,17,17,.78);
}

.teen-reading-preview-html,
.teen-reading-html{
  line-height:1.8;
}

.teen-reading-preview-html p,
.teen-reading-html p{
  margin:0 0 1rem;
}

@media (max-width: 980px){
  .teen-topic-grid,
  .teen-study-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 720px){
  .teen-topic-grid,
  .teen-study-grid{
    grid-template-columns:1fr;
  }
}

.teen-hero-split{
  padding:110px 0 44px;
}

.teen-hero-split__inner{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:40px;
  align-items:center;
}

.teen-hero-split__content{
  max-width:760px;
}

.teen-hero-split__media{
  width:100%;
}

.teen-hero-split__media img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
  border-radius:14px;
}

/* tighten text spacing slightly */
.teen-hero-split__content .hero__text{
  max-width:680px;
}

/* MOBILE */
@media (max-width: 900px){
  .teen-hero-split__inner{
    grid-template-columns:1fr;
    gap:24px;
  }

  .teen-hero-split__media{
    order:2; /* ensures image flows under text */
  }
}