/* ============================================
   CINEMATIC ARTICLE LAYOUT (cin-article.css)
   Scope: body.article-cin only
   ============================================ */

/* ROOT / BODY OVERRIDES
   -------------------------------------------- */
body.article-cin{
  background:
    radial-gradient(circle at top, #1a2227 0, #050608 50%, #020204 100%);
  color: var(--fg, #e8edf5);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Main frame: a bit wider than your standard .wrap */
.article-cin .cin-frame{
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px 80px;
  position: relative;
}

/* Optional faint vertical rails for that RGG feel */
.article-cin .cin-frame::before,
.article-cin .cin-frame::after{
  content:"";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 2px;
  pointer-events:none;
  background: linear-gradient(
    to bottom,
    rgba(200,163,62,.0),
    rgba(200,163,62,.5),
    rgba(200,163,62,.0)
  );
  opacity:.6;
  z-index:-1;
}
.article-cin .cin-frame::before{ left: 7%; }
.article-cin .cin-frame::after{ right: 7%; }

/* ============================================
   HERO: FULL-BLEED CINEMATIC TOP SECTION
   ============================================ */

/* Wrapper that lets hero break out of the content width */
.article-cin .cin-hero{
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-bottom: 40px;
  overflow: hidden;
  background:#000;
}

/* Media (image OR video) inside hero */
.article-cin .cin-hero-media{
  width: 100%;
  height: auto;
  display:block;

  /* movie-style frame */
  aspect-ratio: 21 / 9.5;
  object-fit: cover;
  object-position: 50% 45%;

  filter: contrast(1.08) saturate(1.05) brightness(.96);
  transform: scale(1.02);
  transition: transform 8s ease-out, filter 1.6s ease-out;
}

/* Slow cinematic zoom */
.article-cin .cin-hero:hover .cin-hero-media{
  transform: scale(1.06);
  filter: contrast(1.12) saturate(1.08) brightness(1.0);
}

/* Gradient overlay for text readability */
.article-cin .cin-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.75) 70%, rgba(0,0,0,.95) 100%);
  pointer-events:none;
}

/* Hero content (title, kicker, meta) */
.article-cin .cin-hero-inner{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-start;
  padding: min(10vh,80px) min(8vw,80px);
  gap: 12px;
  z-index:2;
}

.article-cin .cin-kicker{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  color:rgba(232,237,245,.80);
}

.article-cin .cin-title{
  font-size: clamp(2.2rem, 3vw + 1.4rem, 3.4rem);
  line-height:1.05;
  margin:0;
  color:#f9fafb;
  text-shadow:0 18px 50px rgba(0,0,0,.8);
}

.article-cin .cin-meta{
  font-size:.9rem;
  color:rgba(232,237,245,.75);
}

/* Thin gold underline under title (optional) */
.article-cin .cin-title-underline{
  width:80px;
  height:2px;
  margin-top:8px;
  background:linear-gradient(90deg,#c8a33e,#f5e6a0);
  border-radius:999px;
}

/* ============================================
   ARTICLE BODY
   ============================================ */

.article-cin .cin-body{
  margin-top:40px;
}

/* Lead paragraph */
.article-cin .cin-lede{
  font-size:1.1rem;
  line-height:1.8;
  color:rgba(232,237,245,.88);
  max-width: 740px;
  margin:0 auto 26px;
}

/* Normal paragraphs */
.article-cin .cin-body p{
  max-width: 740px;
  margin: 0 auto 18px;
  line-height:1.7;
  color:rgba(232,237,245,.9);
}

/* Section headings */
.article-cin .cin-h2{
  max-width: 740px;
  margin:40px auto 14px;
  font-size:1.4rem;
  line-height:1.3;
  color:#f5f5f5;
}
.article-cin .cin-h2 span{
  border-bottom:2px solid #c8a33e;
  padding-bottom:3px;
}

.article-cin .cin-h3{
  max-width: 740px;
  margin:26px auto 10px;
  font-size:1.05rem;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:rgba(232,237,245,.85);
}

/* Lists */
.article-cin .cin-body ul,
.article-cin .cin-body ol{
  max-width: 740px;
  margin: 8px auto 20px;
  padding-left:1.4rem;
}

.article-cin .cin-body li{
  margin-bottom:6px;
}

/* Inline highlight and note styles (re-use your tokens) */
.article-cin .cin-highlight{
  background:rgba(200,163,62,.18);
  padding:1px 4px;
  border-radius:3px;
}
.article-cin .cin-note{
  color:var(--muted,#9aa3b2);
  font-size:.9rem;
}

/* Field-note card using your special element */
.article-cin .field-notes{
  max-width: 740px;
  margin:26px auto;
}

/* Pullquote */
.article-cin .cin-pullquote{
  max-width: 640px;
  margin:32px auto;
  padding:18px 22px;
  border-left:3px solid #c8a33e;
  font-size:1.05rem;
  line-height:1.7;
  color:rgba(232,237,245,.9);
  background:radial-gradient(circle at top left, rgba(200,163,62,.12), rgba(7,10,14,.7));
  box-shadow:0 16px 40px rgba(0,0,0,.55);
}

/* ============================================
   CINEMATIC INLINE MEDIA BLOCKS
   ============================================ */

/* Full-width (within frame) “scene” image / video */
.article-cin .cin-scene{
  max-width: 100%;
  margin: 32px auto;
  border-radius:18px;
  overflow:hidden;
  background:#000;
  box-shadow:
    0 20px 60px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.03);
}

.article-cin .cin-scene-media{
  display:block;
  width:100%;
  aspect-ratio: 21 / 9;
  object-fit:cover;
  object-position:50% 50%;
  filter: contrast(1.1) saturate(1.05) brightness(.95);
  transition: transform 6s ease-out, filter 1.2s ease-out;
}

.article-cin .cin-scene:hover .cin-scene-media{
  transform: scale(1.04);
  filter: contrast(1.16) saturate(1.1) brightness(1.0);
}

/* Small caption under scenes */
.article-cin .cin-scene-caption{
  padding:10px 18px 14px;
  font-size:.85rem;
  color:var(--muted,#9aa3b2);
}

/* Smaller inset photo block, e.g., gear shot */
.article-cin .cin-photo-inline{
  max-width: 420px;
  margin:24px auto;
  text-align:center;
}

.article-cin .cin-photo-inline img{
  display:block;
  width:100%;
  height:auto;
  border-radius:14px;
  box-shadow:0 16px 40px rgba(0,0,0,.6);
}

.article-cin .cin-photo-caption{
  margin-top:8px;
  font-size:.85rem;
  color:var(--muted,#9aa3b2);
}

/* ============================================
   SOFT SCROLL-REVEAL (OPTIONAL CLASS .cin-reveal)
   ============================================ */

.article-cin .cin-reveal{
  opacity:0;
  transform: translateY(18px);
  transition:
    opacity .55s ease-out,
    transform .55s ease-out;
}
.article-cin .cin-reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* =========================================
   HOMEPAGE CINEMATIC HERO (NOLAN VIBE)
   ========================================= */

body.home .home-cin-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 150px 0 140px;       /* room under header */
  overflow: hidden;
  background-color: #05070b;   /* deep base so edges feel rich */
}

/* Full-bleed background image */
body.home .home-cin-hero picture,
body.home .home-cin-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.home .home-cin-media {
  object-fit: cover;
  object-position: center 40%;   /* tweak if you want more mountain vs lake */
  z-index: 0;
}

/* Color grade: teal shadows, warm mid, dark corners */
body.home .home-cin-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* cool blue wash over the whole frame */
  
    /* warm glow near the sun / center */
    radial-gradient(
      circle at 50% 22%,
      rgba(20, 16, 6, 0.5),
      transparent 60%
    ),
    /* subtle corner vignettes */
    radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.9), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(0, 0, 0, 0.9), transparent 55%);
  mix-blend-mode: soft-light;
  z-index: 1;
}

/* Letterbox hint (tiny top/bottom darkening) */
body.home .home-cin-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.38) 0%,
      rgba(0,0,0,0.0) 18%,
      rgba(0,0,0,0.0) 82%,
      rgba(0,0,0,0.55) 100%
    );
  z-index: 2;
}

/* Layout for text */
body.home .home-cin-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

body.home .home-cin-copy {
  max-width: 720px;
  margin-left: clamp(7vw, 11vw, 15vw);
  margin-right: clamp(4vw, 8vw, 10vw);
  color: var(--fg, #e8edf5);
}

/* Kicker */
body.home .home-cin-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(173, 186, 207, 0.9);
  margin-bottom: 16px;
}

/* Title */
body.home .home-cin-title {
  margin: 0 0 8px;
  font-size: clamp(2.6rem, 4.3vw, 4.2rem);
  line-height: 1.04;
  font-weight: 700;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

body.home .home-cin-title-gold {
  display: block;
  margin-top: 4px;
  color: var(--accent2, #c8a33e);
}

/* Gold underline like cin, but shorter */
body.home .home-cin-rule {
  display: inline-block;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent2, #c8a33e);
  margin: 16px 0 20px;
}

/* Lede paragraph – subtle blue tone */
body.home .home-cin-lede {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(189, 202, 224, 0.96);
}

/* CTAs */
body.home .home-cin-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-bottom: 18px;
}

body.home .home-cin-cta-main {
  min-width: 190px;
}

body.home .home-cin-cta-secondary {
  min-width: 150px;
}

/* Note */
body.home .home-cin-note {
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(205, 213, 228, 0.85);
}
/* =========================
   CIN PRODUCT TABLES
   ========================= */
.cin-products{
  margin: 22px 0 34px;
}

.product-table{
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.p-row{
  display: grid;
  grid-template-columns: 1.05fr 2.1fr auto;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(6px);
}

.p-type .p-label{
  font-weight: 650;
  letter-spacing: .2px;
}

.p-type .p-sub{
  margin-top: 4px;
  color: var(--muted);
  font-size: .95rem;
}

.p-name{
  font-weight: 650;
}

.p-notes{
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
  font-size: .98rem;
}

.p-cta{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.p-btn{
  white-space: nowrap;
  padding: 12px 14px;
  height: auto;
}

.p-disclosure{
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}
/* =========================================================
   CIN-ARTICLE.CSS — Rugged Gear Guide article layout
   Use this INSTEAD of article.css
   ========================================================= */

/* ---------- Base safety ---------- */
html, body { overflow-x: hidden; }
img, picture, video, iframe, svg { max-width: 100%; height: auto; display: block; }

:root{
  --cin-max: 1120px;
  --cin-pad: clamp(16px, 3vw, 28px);
  --cin-radius: 16px;
  --cin-border: rgba(255,255,255,.10);
  --cin-card: #111111;
  --cin-ink: #e8edf5;
  --cin-muted: #9aa3b2;
  --cin-gold: #c8a33e;
}

/* ---------- Main container ---------- */
main.wrap { max-width: var(--cin-max); margin: 0 auto; padding: 0 var(--cin-pad); }

.article-page-card{
  background: var(--cin-card);
  border: 1px solid var(--cin-border);
  border-radius: calc(var(--cin-radius) + 6px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

/* The article content block */
.guide-article{
  padding: clamp(18px, 3vw, 34px);
  color: var(--cin-ink);
  min-width: 0;
}

.guide-article p{ color: var(--cin-ink); line-height: 1.65; }
.guide-article .disclosure{ color: var(--cin-muted); font-size: .95rem; line-height: 1.5; }

/* ---------- Hero ---------- */
.article-hero-header{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--cin-border);
}

.article-hero-header .hero-img{
  width: 100%;
  height: clamp(320px, 55vh, 640px);
  object-fit: cover;
}

.article-hero-header .hero-inner{
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(18px, 4vw, 34px);
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0));
}

.article-hero-header h1{
  margin: 0 0 6px;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.12;
}

.article-hero-header .art-head{
  margin: 0;
  color: rgba(232,237,245,.82);
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
}

/* ---------- Sections / dividers ---------- */
.fade-divider{
  height: 1px;
  width: 100%;
  margin: 26px 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
}

/* ---------- Cards / highlight boxes ---------- */
.highlight-box{
  border: 1px solid rgba(200,163,62,.20);
  background: rgba(200,163,62,.07);
  border-radius: var(--cin-radius);
  padding: 18px 18px 16px;
}

.highlight-box h3{ margin-top: 0; }

.gold-underline{
  text-decoration: underline;
  text-decoration-color: rgba(200,163,62,.75);
  text-underline-offset: 4px;
}

.gold-bullets{ margin: 0; padding-left: 18px; }
.gold-bullets li{ margin: 6px 0; }
.gold-text-xs{ font-size: .95rem; line-height: 1.35; }

/* ---------- “Gift” layout blocks (your reused knife classes) ---------- */
.knife-gift-guide{ display: grid; gap: 22px; }

.gift-knife{ display: grid; gap: 18px; }
.gift-knife-header h2{ margin: 0 0 6px; font-size: clamp(1.25rem, 2.4vw, 1.7rem); }
.knife-tagline{ margin: 0; color: rgba(232,237,245,.85); }

.gift-knife-photo-big img{
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: var(--cin-radius);
  border: 1px solid rgba(255,255,255,.08);
}

.image-note-big,
.image-note{
  margin: 10px auto 0;
  color: rgba(232,237,245,.70);
  font-size: .92rem;
  max-width: 980px;
}

/* If you have the 2-column “layout” class used on Vortex */
.gift-knife-layout{
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.gift-knife-body{ min-width: 0; }

/* ---------- CTA buttons ---------- */
.knife-cta{ margin-top: 14px; }
.btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(129,185,187,.16);
  color: var(--cin-ink);
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn-primary:active{ transform: translateY(0); }

/* ---------- META text ---------- */
.knife-meta p{
  margin: 6px 0;
  color: rgba(232,237,245,.85);
}

/* ---------- TABLES (this is the big fix) ---------- */
/* Wrap tables in .table-wrap so they scroll instead of crushing */
.table-wrap{
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--cin-radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}

/* The table itself */
.knife-ratings{
  width: 100%;
  min-width: 860px;       /* prevents tiny columns on phones */
  border-collapse: collapse;
  table-layout: auto;     /* IMPORTANT: no forced squeezing */
}

.knife-ratings th,
.knife-ratings td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  vertical-align: top;

  /* IMPORTANT: stop mid-word splitting */
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.knife-ratings th{
  text-align: left;
  color: rgba(232,237,245,.9);
  font-weight: 700;
  background: rgba(255,255,255,.04);
}

.knife-ratings td{ color: rgba(232,237,245,.88); }

/* Optional “Top Pick” row vibe */
.badge-top-pick td{
  background: rgba(200,163,62,.06);
}
.badge-top-pick td:first-child strong{
  color: rgba(200,163,62,.95);
}

/* Make the last column link stay readable */
.knife-link{
  color: var(--cin-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,163,62,.55);
  padding-bottom: 2px;
}
.knife-link:hover{ border-bottom-color: rgba(200,163,62,.9); }



/* RELATED GUIDES / ARTICLES SECTION */
.related-guides {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.related-title {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8edf5;
  margin-bottom: 1.75rem;
  text-align: center;
  width: 100%;
}


/* grid layout – centered row of tiles */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 340px));
  justify-content: center;
  gap: 2rem;
}

/* individual card */
.related-card {
  display: flex;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  border-radius: 10px;
  background: #2b2b2b; /* gray like your other panel */
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  min-height: 140px;

  transition:
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    border-color 160ms ease-out,
    background 160ms ease-out;
}

.related-card:hover {
  transform: translateY(-2px);
  background: #333333;
  border-color: rgba(200, 163, 62, 0.6); /* your gold */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

/* thumbnail */
.related-thumb {
  width: 110px;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

/* text inside card */
.related-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.related-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(200, 163, 62, 0.85);
  margin: 0 0 0.25rem;
}

.related-heading {
  font-size: 0.98rem;
  margin: 0 0 0.25rem;
  color: #f3f5f8;
}

.related-snippet {
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(232, 237, 245, 0.78);
  margin: 0;
}
/* ---------- Mobile adjustments ---------- */
@media (max-width: 900px){
  .gift-knife-layout{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px){
  .guide-article{ padding: 18px; }
  .article-hero-header .hero-inner{ padding: 18px; }
}

/* Mobile */
@media (max-width: 720px){
  .p-row{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .p-cta{
    justify-content: flex-start;
  }
}

/* Mobile tweaks */
@media (max-width: 720px) {
  body.home .home-cin-hero {
    padding: 130px 0 110px;
  }

  body.home .home-cin-copy {
    margin-left: 20px;
    margin-right: 20px;
  }

  body.home .home-cin-title {
    font-size: clamp(2.1rem, 7.2vw, 2.7rem);
  }

  body.home .home-cin-lede {
    font-size: 0.98rem;
  }
}


/* On very small screens, let it breathe side-to-side */
@media (max-width: 640px) {
  body.home .cin-hero-inner {
    padding: 24px 18px 30px;
    margin: 0 14px;
    border-radius: 18px;
  }
}
body.home .cin-kicker {
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted, #9aa3b2);
  margin-bottom: 12px;
}

/* Main title */
body.home .cin-title {
  margin: 0 auto 12px;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 1.06;
  font-weight: 700;
  color: var(--fg, #f6f7fb);
}

/* Gold second line inside the title */
body.home .cin-title-gold {
  display: block;
  margin-top: 6px;
  color: var(--accent2, #c8a33e);
  text-shadow: 0 0 18px rgba(0,0,0,0.9);
}
body.home .cin-sub {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--muted, #c0cad6);
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

/* Affiliate note at bottom of card */
body.home .cin-disclosure {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 0.9rem;
  color: rgba(217, 222, 231, 0.8);
  line-height: 1.5;
}
body.home .cin-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-bottom: 10px;
}

body.home .cin-cta-main {
  min-width: 190px;
}

body.home .cin-cta-secondary {
  min-width: 170px;
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
}

/* Optional: slight hover lift just in hero */
body.home .cin-hero-cta .btn-primary,
body.home .cin-hero-cta .btn-ghost {
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

body.home .cin-hero-cta .btn-primary:hover,
body.home .cin-hero-cta .btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}



/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */

/* Tablets (<= 1024px) */
@media (max-width:1024px){
  .article-cin .cin-frame{
    max-width: 1000px;
    padding-inline:18px;
  }
  .article-cin .cin-hero-inner{
    padding: 60px 40px;
  }
}

/* Small tablets & large phones (<= 768px) */
@media (max-width:768px){
  .article-cin .cin-frame{
    padding-inline:16px;
    margin-bottom:56px;
  }

  .article-cin .cin-hero-media{
    aspect-ratio: 16 / 9;
    transform: scale(1.03);
  }

  .article-cin .cin-hero-inner{
    padding: 40px 24px 34px;
  }

  .article-cin .cin-title{
    font-size: clamp(1.9rem, 4vw + 1.1rem, 2.4rem);
  }

  .article-cin .cin-lede,
  .article-cin .cin-body p,
  .article-cin .cin-h2,
  .article-cin .cin-h3,
  .article-cin .cin-pullquote,
  .article-cin .field-notes{
    max-width: 100%;
  }

  .article-cin .cin-scene{
    margin-inline: -4px;
    border-radius:14px;
  }
}

/* Small phones (<= 480px) */
@media (max-width:480px){
  .article-cin .cin-hero-inner{
    padding: 30px 18px 26px;
  }

  .article-cin .cin-kicker{
    font-size:.7rem;
  }
  .article-cin .cin-meta{
    font-size:.8rem;
  }

  .article-cin .cin-lede{
    font-size:1.0rem;
  }

  .article-cin .cin-pullquote{
    padding:14px 16px;
    font-size:.98rem;
  }

  .article-cin .cin-photo-inline{
    max-width: 100%;
  }
}
/* MOBILE: make cinematic hero fill the screen */
@media (max-width: 768px) {
  body.article-cin .cin-hero {
    position: relative;
    min-height: 100vh;        /* take up full screen height */
    padding: 0;               /* let the image run edge-to-edge */
    display: flex;
    align-items: flex-end;    /* text sits towards the bottom */
    overflow: hidden;
  }

  body.article-cin .cin-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;        /* keep it cinematic, no stretching */
  }

  body.article-cin .cin-hero-inner {
    position: relative;
    width: 100%;
    padding: 3rem 1.75rem 4rem;   /* adjust to taste */
  }
}
/* MOBILE: center cinematic headings + lists */
@media (max-width: 768px) {

  /* Center H2 + H3 headings */
  .cin-h2,
  .cin-h3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Optional: ensure underline beneath H2 (if used) centers properly */
  .cin-h2 span {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }

   /* Center the UL as a whole */
  .cin-body ul {
    width: max-content;     /* shrink to content width */
    margin-left: auto;
    margin-right: auto;     /* centers the entire list block */
    padding-left: 1.2rem;   /* space for bullets */
    text-align: left !important; /* keeps bullets + text aligned */
  }
 /* Keep LI spacing clean */
  .cin-body ul li {
    margin: 0.35rem 0;
  }
}
/* MOBILE: remove gold vertical rails */
@media (max-width: 768px) {
  .article-cin .cin-frame::before,
  .article-cin .cin-frame::after {
    display: none !important;
    content: none !important;
  }
}
/* ============================================
   MOBILE-ONLY HERO MEDIA POSITION HELPERS
   (Does NOT affect desktop)
   ============================================ */
@media (max-width: 768px) {

  /* center */
  .cin-hero-media.m-pos-center {
    object-position: 50% 50% !important;
  }

  /* show more top of the image (push crop downward) */
  .cin-hero-media.m-pos-top {
    object-position: 50% 20% !important;
  }

  /* show more bottom of the image (push crop upward) */
  .cin-hero-media.m-pos-bottom {
    object-position: 50% 80% !important;
  }

  /* optional left/right helpers */
  .cin-hero-media.m-pos-left {
    object-position: 20% 50% !important;
  }

  .cin-hero-media.m-pos-right {
    object-position: 55% 50% !important;
  }
}
/* ==========================================
   MOBILE CARDS — POP + PRODUCT NAME POP
   (works with td[data-label="Model"] etc.)
   ========================================== */
@media (max-width: 768px) {

  /* CARD (each row) */
  .optics-table tbody tr,
  .knife-models-table tbody tr {
    position: relative;
    display: block;
    margin: 16px 0 20px;
    padding: 16px 16px 14px;

    /* richer cinematic panel */
    background:
      radial-gradient(circle at 20% 0%, rgba(129,185,187,0.10), transparent 55%),
      radial-gradient(circle at 90% 30%, rgba(200,163,62,0.10), transparent 60%),
      linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(0,0,0,0.55));

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;

    box-shadow:
      0 18px 40px rgba(0,0,0,0.55),
      inset 0 0 0 1px rgba(255,255,255,0.03);

    transform: translateY(0);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  /* GOLD TOP ACCENT LINE */
  .optics-table tbody tr::before,
  .knife-models-table tbody tr::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: 10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(200,163,62,0.95), transparent);
    opacity: 0.9;
  }

  /* small lift on tap/hover */
  .optics-table tbody tr:hover,
  .knife-models-table tbody tr:hover {
    transform: translateY(-2px);
    border-color: rgba(200,163,62,0.22);
    box-shadow:
      0 22px 52px rgba(0,0,0,0.62),
      0 0 0 1px rgba(200,163,62,0.10),
      inset 0 0 0 1px rgba(255,255,255,0.04);
  }

  /* LABELS (Model / Best For / Specs etc.) */
  .optics-table td::before,
  .knife-models-table td::before {
    font-size: 11px;
    letter-spacing: 0.10em;
    opacity: 0.95;
  }

  /* PRODUCT NAME = headline */
  .optics-table td[data-label="Model"],
  .knife-models-table td[data-label="Model"] {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.15;
    margin-top: 8px;
    padding-bottom: 12px;
    margin-bottom: 14px;

    color: #e8edf5;
    text-shadow: 0 8px 24px rgba(0,0,0,0.55);

    /* more separation */
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }

  /* Optional: gold underline just under the name text */
  .optics-table td[data-label="Model"] span,
  .knife-models-table td[data-label="Model"] span {
    display: inline-block;
    padding-bottom: 6px;
    background-image: linear-gradient(90deg, rgba(200,163,62,0.95), rgba(129,185,187,0.35));
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: 0 100%;
  }

  /* If you DON'T have a <span> in the Model cell, you can still add a gold accent: */
  .optics-table td[data-label="Model"]::after,
  .knife-models-table td[data-label="Model"]::after {
    content: "";
    display: block;
    width: 86px;
    height: 2px;
    margin-top: 8px;
    border-radius: 999px;
    background: rgba(200,163,62,0.95);
    box-shadow: 0 0 10px rgba(200,163,62,0.22);
    opacity: 0.9;
  }

  /* SPECS bullets: a touch more readable */
  .spec-bullets li {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Price feel line: make it visually strong */
  .optics-table td[data-label="Price Feel"],
  .knife-models-table td[data-label="Price]()
