
:root {
  --c1375-primary: #4d7c5e;
  --c1375-primary-dark: #3a6048;
  --c1375-accent: #d97706;
  --c1375-bg: #f4f9f5;
  --c1375-bg-alt: #e4f0e6;
  --c1375-text: #1a2e20;
  --c1375-text-muted: #5a7a62;
  --c1375-border: #c4d8c8;
  --c1375-success: #22c55e;
  --c1375-warning: #d97706;
  --c1375-danger: #dc2626;
  --c1375-font-heading: "Space Grotesk", Georgia, serif;
  --c1375-font-body: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --c1375-heading-weight: 700;
  --c1375-heading-letter-spacing: 0.08em;
  --c1375-radius: 24px;
  --c1375-container-width: 1280px;
  --c1375-spacing-scale: 1.25;
  --c1375-section-padding: 120px 0;
}

/* ── Author Box (E-E-A-T) ──────────────────────────── */
.author-box {
  margin: 48px 0;
  padding: 32px;
  background: rgba(0, 0, 0, 0.02);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
}
.author-box-image { width: 120px; height: 120px; }
.author-box-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0;
  display: block;
}
.author-box-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.author-box-meta .author-box-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.author-box-meta h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 4px;
  line-height: 1.3;
}
.author-box-meta .title {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.author-box-meta .credentials {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
}
.author-box-meta .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 12px;
}
.author-box-meta .expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.author-box-meta .expertise span {
  background: var(--color-primary);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .author-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .author-box-image,
  .author-box-image img,
  .author-box-initials { margin: 0 auto; }
  .author-box-meta .expertise { justify-content: center; }
}

.m1375-body{--c1375-on-primary:#ffffff;--c1375-on-primary-dark:#ffffff;--c1375-on-accent:#ffffff;}

/* ======== Magazine reset (var-based — archetype themes drive ALL colour/type;
   NEVER use literal palette hex on element selectors here) ======== */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0;background:var(--c1375-bg);color:var(--c1375-text);font-family:var(--c1375-font-body);font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased;}
h1,h2,h3,h4,h5,h6{font-family:var(--c1375-font-heading);color:inherit;margin:0 0 .6em;line-height:1.18;}
p{margin:0 0 1.2em;}
a{color:var(--c1375-primary);text-decoration:none;}
img{max-width:100%;height:auto;display:block;}

/* ======== Magazine base (shared primitives) ======== */
.m1375-container{max-width:var(--c1375-container-width,1200px);margin:0 auto;padding:0 24px;}
.m1375-sronly{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.m1375-btn{display:inline-flex;align-items:center;gap:8px;background:var(--c1375-accent);color:var(--c1375-on-accent,#fff);border:0;border-radius:var(--c1375-radius,8px);padding:12px 22px;font-weight:700;cursor:pointer;font-family:var(--c1375-font-body);text-decoration:none;}
.m1375-btn:hover{filter:brightness(1.08);}

/* Logo */
.m1375-logo{display:inline-flex;align-items:center;gap:13px;text-decoration:none;color:var(--c1375-text);}
.m1375-logo__mark{display:grid;place-items:center;min-width:44px;height:44px;padding:0 10px;border-radius:11px;background:linear-gradient(135deg,var(--c1375-primary),var(--c1375-accent));color:var(--c1375-on-primary,#fff);font-family:var(--c1375-font-heading);font-weight:800;font-size:1.25rem;letter-spacing:.02em;}
/* Transparent-background mark — render it big and unboxed (no radius/bg). */
.m1375-logo__img{height:54px;width:auto;max-width:170px;object-fit:contain;border-radius:0;background:transparent;display:block;}
.m1375-logo__word{font-family:var(--c1375-font-heading);font-weight:800;font-size:1.6rem;letter-spacing:-.02em;}
@media(max-width:680px){.m1375-logo__img{height:44px;max-width:130px;}.m1375-logo__word{font-size:1.3rem;}}

/* Ticker */
.m1375-ticker{background:var(--c1375-bg-alt);border-bottom:1px solid var(--c1375-border);}
.m1375-ticker__inner{display:flex;align-items:center;gap:16px;height:46px;overflow:hidden;}
.m1375-ticker__label{flex-shrink:0;background:var(--c1375-accent);color:var(--c1375-on-accent,#fff);font-weight:800;font-size:.72rem;text-transform:uppercase;letter-spacing:.06em;padding:6px 12px;border-radius:6px;}
.m1375-ticker__track{display:flex;gap:18px;align-items:center;overflow:hidden;white-space:nowrap;font-size:.86rem;}
.m1375-ticker__track a{color:var(--c1375-text);text-decoration:none;font-weight:600;}
.m1375-ticker__track a:hover{color:var(--c1375-primary);}
.m1375-ticker__sep{color:var(--c1375-accent);}

/* Rows */
.m1375-row{display:flex;gap:14px;align-items:flex-start;}
.m1375-row__media{flex-shrink:0;width:96px;height:72px;border-radius:10px;background-size:cover;background-position:center;}
.m1375-row__num{flex-shrink:0;width:40px;height:40px;display:grid;place-items:center;font-family:var(--c1375-font-heading);font-weight:800;color:var(--c1375-primary);font-size:1.4rem;}
.m1375-row__body{min-width:0;}
.m1375-row__cat{color:var(--c1375-accent);font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em;text-decoration:none;}
.m1375-row__title{font-family:var(--c1375-font-heading);font-size:.98rem;line-height:1.25;margin:3px 0 4px;}
.m1375-row__title a{color:var(--c1375-text);text-decoration:none;}
.m1375-row__title a:hover{color:var(--c1375-primary);}
.m1375-row__date{color:var(--c1375-text-muted);font-size:.76rem;}

/* Grid + cards */
.m1375-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:26px;}
.m1375-grid--feature > :first-child{grid-column:span 2;}
.m1375-grid--feature > :first-child .m1375-card__title{font-size:1.5rem;}
.m1375-card{background:var(--c1375-bg-alt);border:1px solid var(--c1375-border);border-radius:14px;overflow:hidden;display:flex;flex-direction:column;transition:transform .18s,box-shadow .18s;box-shadow:0 1px 2px rgba(0,0,0,.05),0 16px 34px -22px rgba(0,0,0,.5);}
.m1375-card:hover{transform:translateY(-4px);box-shadow:0 1px 2px rgba(0,0,0,.05),0 26px 48px -24px rgba(0,0,0,.6);}
.m1375-card__media{display:block;aspect-ratio:16/9;background-size:cover;background-position:center;}
.m1375-card__media--ph{display:grid;place-items:center;color:rgba(255,255,255,.92);font-family:var(--c1375-font-heading);font-weight:800;text-transform:uppercase;letter-spacing:.05em;}
.m1375-card__body{padding:18px 18px 20px;display:flex;flex-direction:column;gap:9px;flex:1;}
.m1375-card__title{font-family:var(--c1375-font-heading);font-size:1.16rem;line-height:1.24;}
.m1375-card__title a{color:var(--c1375-text);text-decoration:none;}
.m1375-card__title a:hover{color:var(--c1375-primary);}
.m1375-card__excerpt{color:var(--c1375-text-muted);font-size:.9rem;line-height:1.55;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.m1375-card--overlay{border:0;background:transparent;}
.m1375-card__ovl{display:flex;flex-direction:column;justify-content:flex-end;min-height:300px;padding:22px;background-size:cover;background-position:center;text-decoration:none;border-radius:14px;}
.m1375-card--overlay .m1375-card__title{color:#fff;margin:8px 0 6px;font-family:var(--c1375-font-heading);}
.m1375-card--horizontal{flex-direction:row;align-items:stretch;}
.m1375-card--horizontal .m1375-card__media{aspect-ratio:auto;width:42%;flex-shrink:0;min-height:160px;}
.m1375-card--horizontal .m1375-card__body{flex:1;}
@media(max-width:520px){.m1375-card--horizontal{flex-direction:column;}.m1375-card--horizontal .m1375-card__media{width:100%;aspect-ratio:16/9;min-height:0;}}

/* Tiles */
.m1375-tile{position:relative;display:flex;align-items:flex-end;border-radius:16px;overflow:hidden;background-size:cover;background-position:center;text-decoration:none;color:#fff;box-shadow:0 16px 36px -22px rgba(0,0,0,.62);}
.m1375-tile__body{padding:24px;}
.m1375-tile h3{font-family:var(--c1375-font-heading);font-size:1.4rem;line-height:1.16;margin:10px 0 6px;color:#fff;}
.m1375-tile--banner{min-height:430px;}
.m1375-tile--banner h3{font-size:2.3rem;max-width:780px;}
.m1375-tile--big{min-height:446px;}
.m1375-tile--big h3{font-size:1.95rem;}
.m1375-tile--sm{min-height:214px;}

/* Badge + meta */
.m1375-badge{display:inline-block;color:var(--c1375-accent);font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em;text-decoration:none;}
.m1375-badge--solid{background:var(--c1375-accent);color:var(--c1375-on-accent,#fff);padding:5px 11px;border-radius:6px;}
.m1375-meta{display:inline-flex;align-items:center;gap:7px;color:var(--c1375-text-muted);font-size:.8rem;margin-top:auto;}
.m1375-meta__author{font-weight:700;color:var(--c1375-text);}
.m1375-meta--light,.m1375-meta--light .m1375-meta__author,.m1375-meta--light time{color:rgba(255,255,255,.88);}

/* Section heads */
.m1375-section{padding:34px 0 8px;}
.m1375-section__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px;border-bottom:2px solid var(--c1375-border);padding-bottom:10px;}
.m1375-section__head h2{font-family:var(--c1375-font-heading);font-size:1.45rem;position:relative;padding-left:14px;}
.m1375-section__head--bar h2::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:5px;height:1.1em;background:var(--c1375-accent);border-radius:3px;}
.m1375-section__head h2 a{color:var(--c1375-text);text-decoration:none;}
.m1375-section__more{color:var(--c1375-primary);text-decoration:none;font-weight:700;font-size:.85rem;}
.m1375-section__head--underline{justify-content:center;flex-direction:column;border-bottom:0;text-align:center;}
.m1375-section__head--underline h2{padding-left:0;}
.m1375-section__head--underline h2::after{content:"";display:block;width:64px;height:3px;background:var(--c1375-accent);border-radius:3px;margin:12px auto 0;}
.m1375-section__head--underline .m1375-section__more{margin-top:8px;}

/* Prose (article/page body) */
.m1375-prose{font-family:var(--c1375-font-body);font-size:1.06rem;line-height:1.75;color:var(--c1375-text);}
.m1375-prose h2{font-family:var(--c1375-font-heading);font-size:1.7rem;margin:34px 0 14px;}
.m1375-prose h3{font-family:var(--c1375-font-heading);font-size:1.3rem;margin:26px 0 12px;}
.m1375-prose p{margin:0 0 18px;}
.m1375-prose a{color:var(--c1375-primary);}
.m1375-prose img{max-width:100%;height:auto;border-radius:12px;margin:22px 0;}
.m1375-prose ul,.m1375-prose ol{margin:0 0 18px;padding-left:22px;}
.m1375-prose li{margin:6px 0;}
.m1375-prose blockquote{border-left:4px solid var(--c1375-accent);background:var(--c1375-bg-alt);padding:16px 22px;margin:24px 0;border-radius:0 10px 10px 0;font-style:italic;}
.m1375-prose table{width:100%;border-collapse:collapse;margin:22px 0;font-size:.95rem;}
.m1375-prose th{background:var(--c1375-primary);color:var(--c1375-on-primary,#fff);padding:11px 14px;text-align:left;}
.m1375-prose td{padding:10px 14px;border-bottom:1px solid var(--c1375-border);}
/* Structured content blocks (TL;DR / key-stats / callout) ship with LIGHT inline
   backgrounds, so on a DARK archetype the inherited body text (near-white) would be
   invisible. Force readable dark text inside them — children keep their own inline
   colours; only the un-coloured text (summary, stat numbers) is corrected. Targets
   the boxes by their inline background signature so it covers already-published
   articles too (the inline styles are in the stored content). */
[style*="background:#f5f7fa"],[style*="background:#fbf7ec"],[style*="background:#ffffff;border:1px solid #e3e8ee"]{color:#1f2733!important;}

/* Author box */
.m1375-authorbox{display:flex;gap:16px;align-items:center;background:var(--c1375-bg-alt);border:1px solid var(--c1375-border);border-radius:14px;padding:20px;margin:34px 0;}
.m1375-authorbox__avatar{flex-shrink:0;width:54px;height:54px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,var(--c1375-primary),var(--c1375-accent));color:#fff;font-family:var(--c1375-font-heading);font-weight:800;font-size:1.4rem;}
.m1375-authorbox p{color:var(--c1375-text-muted);font-size:.9rem;margin:4px 0 0;}
.m1375-related{margin-top:40px;}

/* Sidebar widgets */
.m1375-aside{display:flex;flex-direction:column;gap:26px;}
.m1375-widget{background:var(--c1375-bg-alt);border:1px solid var(--c1375-border);border-radius:14px;padding:20px;}
.m1375-widget__title{font-family:var(--c1375-font-heading);font-size:1.05rem;margin:0 0 16px;padding-bottom:10px;border-bottom:2px solid var(--c1375-border);position:relative;}
.m1375-widget__title::after{content:"";position:absolute;left:0;bottom:-2px;width:44px;height:2px;background:var(--c1375-accent);}
.m1375-widget__list{display:flex;flex-direction:column;gap:16px;}
.m1375-widget--search form{display:flex;gap:0;}
.m1375-widget--search input{flex:1;border:1px solid var(--c1375-border);background:var(--c1375-bg);color:var(--c1375-text);border-radius:10px 0 0 10px;padding:11px 14px;font-size:.9rem;}
.m1375-widget--search button{border:0;background:var(--c1375-accent);color:var(--c1375-on-accent,#fff);border-radius:0 10px 10px 0;padding:0 16px;cursor:pointer;}
.m1375-catlist{list-style:none;margin:0;padding:0;}
.m1375-catlist li{display:flex;justify-content:space-between;align-items:center;padding:9px 0;border-bottom:1px solid var(--c1375-border);}
.m1375-catlist li:last-child{border-bottom:0;}
.m1375-catlist a{color:var(--c1375-text);text-decoration:none;font-weight:600;font-size:.92rem;}
.m1375-catlist a:hover{color:var(--c1375-primary);}
.m1375-catlist span{color:var(--c1375-text-muted);font-size:.78rem;background:var(--c1375-bg);border:1px solid var(--c1375-border);border-radius:20px;padding:1px 9px;}

/* Standard 2-col inner layout (archetypes may use or replace) */
.m1375-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:40px;padding:34px 24px 56px;}
.m1375-layout--narrow{grid-template-columns:minmax(0,1fr);max-width:860px;}
.m1375-layout__main{min-width:0;}
@media(max-width:980px){.m1375-layout{grid-template-columns:1fr;}}

/* Mobile nav reveal (shared convention: .m1375-burger toggles #m1375-nav.open) */
.m1375-burger{display:none;background:var(--c1375-bg-alt);border:1px solid var(--c1375-border);color:var(--c1375-text);width:40px;height:40px;border-radius:10px;cursor:pointer;font-size:1rem;}
@media(max-width:680px){
  /* Mobile menu = FULL-SCREEN overlay. Target the nav by ID (specificity 1,0,0 +
     !important) so this BEATS every archetype's own .xx-nav{display:flex} (0,1,0).
     The burger gets a higher z-index than the overlay so it stays visible & tappable
     IN PLACE to close — the old top:76px drop-down sat under the taller masthead and
     the opaque panel covered the burger, so you couldn't close it. */
  #m1375-nav{display:none!important;}
  #m1375-nav.open{display:flex!important;position:fixed;inset:0;z-index:1000;flex-direction:column;justify-content:center;align-items:stretch;gap:2px;background:var(--c1375-bg);padding:72px 16px 24px;overflow-y:auto;}
  #m1375-nav.open a{padding:15px 24px;width:100%;text-align:center;border-bottom:1px solid var(--c1375-border);}
  .m1375-burger{display:block;position:relative;z-index:1001;}
}

/* ======== Archetype: newsroom ======== */
.arch-newsroom{
  --c1375-bg:#ffffff;--c1375-bg-alt:#f4f6f9;--c1375-text:#15181e;--c1375-text-muted:#59616e;--c1375-border:#e3e7ec;--c1375-font-heading:'Barlow', system-ui, sans-serif;--c1375-font-body:'Lora', Georgia, serif;
  /* Pinned editorial identity — fixed navy + one blue accent + serif body. */
  --c1375-primary:#142a4c;--c1375-primary-dark:#0e2038;--c1375-accent:#1d63c4;
  --c1375-on-primary:#ffffff;--c1375-on-accent:#ffffff;
  --c1375-font-body:'Source Serif 4','Lora',Georgia,'Times New Roman',serif;--c1375-font-heading:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;
  --nr-navy:#142a4c;--nr-blue:#1d63c4;
  --m1375-nav-top:0px;--c1375-radius:3px;
}
.arch-newsroom .nr-card__media,.arch-newsroom .nr-lead__img,.arch-newsroom .nr-articleimg span{border-radius:var(--c1375-radius);}

/* Top utility bar — date + tagline, hairline under */
.nr-topbar{background:var(--c1375-bg-alt);border-bottom:1px solid var(--c1375-border);font-size:.76rem;color:var(--c1375-text-muted);}
.nr-topbar__inner{display:flex;justify-content:space-between;align-items:center;height:36px;}
.nr-topbar__tag{text-transform:uppercase;letter-spacing:.12em;font-size:.68rem;font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;}

/* Masthead — serif-free navy wordmark, full-width nav band below */
.nr-head{background:var(--c1375-bg);border-bottom:3px solid var(--nr-navy);}
.nr-head__inner{display:flex;align-items:center;justify-content:space-between;padding:18px 24px 14px;}
.nr-word{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:900;font-size:clamp(1.7rem,4vw,2.6rem);letter-spacing:-.02em;color:var(--nr-navy);text-decoration:none;line-height:1;}
.nr-navbar{border-top:1px solid var(--c1375-border);background:var(--c1375-bg);}
.nr-nav{display:flex;flex-wrap:wrap;gap:0;}
.nr-nav a{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.04em;color:var(--nr-navy);text-decoration:none;padding:12px 16px 11px;border-bottom:3px solid transparent;}
.nr-nav a:first-child{padding-left:0;}
.nr-nav a:hover{color:var(--nr-blue);}
.nr-nav a.active{border-bottom-color:var(--nr-blue);color:var(--nr-blue);}

/* Shared accent bits */
.nr-kicker{display:inline-block;font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:800;font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;color:var(--nr-blue);text-decoration:none;margin-bottom:7px;}
.nr-kicker:hover{text-decoration:underline;text-underline-offset:3px;}
.nr-kicker--plain{color:var(--c1375-text-muted);}
.nr-byline{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-size:.82rem;color:var(--c1375-text-muted);margin:10px 0 0;}
.nr-byline__author{color:var(--c1375-text);font-weight:700;}

/* Hairline section rule + title + view-all */
.nr-rule{display:flex;align-items:baseline;justify-content:space-between;gap:14px;border-bottom:2px solid var(--nr-navy);padding-bottom:7px;margin:0 0 28px;}
.nr-rule__title{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:800;font-size:1.05rem;text-transform:uppercase;letter-spacing:.05em;color:var(--nr-navy);margin:0;}
.nr-rule__title a{color:var(--nr-navy);text-decoration:none;}
.nr-rule__title a:hover{color:var(--nr-blue);}
.nr-rule__more{flex-shrink:0;font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:700;font-size:.76rem;text-transform:uppercase;letter-spacing:.04em;color:var(--nr-blue);text-decoration:none;}

/* Lead story — dominant hero, text below */
.nr-lead{padding:40px 24px 0;}
.nr-lead__img{display:block;width:100%;aspect-ratio:21/9;background-size:cover;background-position:center;}
.nr-lead__body{padding-top:18px;max-width:840px;}
.nr-lead__title{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:900;font-size:clamp(1.9rem,4.4vw,3rem);line-height:1.08;letter-spacing:-.01em;margin:0 0 12px;}
.nr-lead__title a{color:var(--c1375-text);text-decoration:none;}
.nr-lead__title a:hover{color:var(--nr-blue);}
.nr-lead__deck{font-size:1.16rem;line-height:1.55;color:var(--c1375-text-muted);margin:0;max-width:720px;}

/* Secondary strip — 3 compact cards under the lead */
.nr-sec{padding:40px 24px 0;}
.nr-sec__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;border-top:1px solid var(--c1375-border);padding-top:40px;}

/* Two-column body: main feed + sticky-ish sidebar */
.nr-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:48px;padding:40px 24px 0;}
.nr-main{min-width:0;display:flex;flex-direction:column;gap:40px;}

/* Category bands */
.nr-band{}
.nr-band__grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}

/* News card — small media, serif headline, tight meta */
.nr-card{display:flex;flex-direction:column;}
.nr-card__media{display:block;width:100%;aspect-ratio:16/9;background-size:cover;background-position:center;margin-bottom:11px;}
.nr-card__media--ph{background:linear-gradient(135deg,var(--nr-navy),var(--nr-blue));}
.nr-card__title{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:800;font-size:1.18rem;line-height:1.22;margin:0 0 7px;}
.nr-card__title a{color:var(--c1375-text);text-decoration:none;}
.nr-card__title a:hover{color:var(--nr-blue);}
.nr-card__excerpt{font-size:.94rem;line-height:1.55;color:var(--c1375-text-muted);margin:0 0 9px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.nr-card__meta{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-size:.76rem;color:var(--c1375-text-muted);margin:auto 0 0;}
.nr-card__author{color:var(--c1375-text);font-weight:700;}

/* Intro / welcome note */
.nr-intro{padding:40px 24px 0;}
.nr-narrow{max-width:720px;}
.nr-pagepad{padding:48px 24px;}

/* Category page */
.nr-cathead{padding:40px 24px 22px;border-bottom:3px solid var(--nr-navy);}
.nr-cathead__eyebrow{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:800;font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;color:var(--nr-blue);margin:0 0 6px;}
.nr-cathead__title{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:900;font-size:clamp(2rem,5vw,3.1rem);line-height:1.06;letter-spacing:-.01em;margin:0;}
.nr-cathead__intro{font-size:1.08rem;line-height:1.55;color:var(--c1375-text-muted);max-width:680px;margin:14px 0 0;}
.nr-cathead__count{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-size:.78rem;text-transform:uppercase;letter-spacing:.06em;color:var(--c1375-text-muted);margin:14px 0 0;}
.nr-catfeed{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;padding:40px 24px 0;}
.nr-othercats{padding:40px 24px 0;}
.nr-othercats__list{display:flex;flex-wrap:wrap;gap:10px 12px;}
.nr-othercats__link{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:700;font-size:.84rem;color:var(--nr-navy);text-decoration:none;border:1px solid var(--c1375-border);padding:8px 14px;border-radius:var(--c1375-radius);}
.nr-othercats__link:hover{border-color:var(--nr-blue);color:var(--nr-blue);}

/* Article */
.nr-article{max-width:760px;padding:40px 24px 0;}
.nr-pagewrap{padding-bottom:40px;}
.nr-article__head{margin-bottom:24px;}
.nr-article__head--page{border-bottom:2px solid var(--nr-navy);padding-bottom:14px;}
.nr-article__title{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:900;font-size:clamp(2rem,4.6vw,3.1rem);line-height:1.1;letter-spacing:-.01em;margin:8px 0 0;}
.nr-article__deck{font-size:1.22rem;line-height:1.5;color:var(--c1375-text-muted);margin:14px 0 0;}
.nr-article__head .nr-byline{border-top:1px solid var(--c1375-border);border-bottom:1px solid var(--c1375-border);padding:10px 0;margin-top:18px;}
.nr-articleimg{margin:26px 0 0;}
.nr-articleimg span{display:block;width:100%;aspect-ratio:16/9;background-size:cover;background-position:center;}
.nr-article__body{margin-top:28px;}
.arch-newsroom .nr-article__body h2,.arch-newsroom .nr-article__body h3{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:800;letter-spacing:-.01em;}
.arch-newsroom .nr-article__body h2{border-bottom:1px solid var(--c1375-border);padding-bottom:6px;}

/* Author box */
.nr-authorbox{display:flex;gap:16px;align-items:center;border-top:2px solid var(--nr-navy);margin-top:36px;padding-top:22px;}
.nr-authorbox__avatar{flex-shrink:0;width:54px;height:54px;border-radius:50%;display:grid;place-items:center;background:var(--nr-navy);color:#fff;font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:800;font-size:1.25rem;}
.nr-authorbox__name{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:800;font-size:1rem;margin:0;color:var(--c1375-text);}
.nr-authorbox__bio{font-size:.9rem;color:var(--c1375-text-muted);margin:3px 0 0;}

/* Related */
.nr-related{padding:40px 24px 0;}
.nr-related__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}

/* Footer — multi-column navy band */
.nr-footer{margin-top:40px;background:var(--nr-navy);color:#dce4f0;}
.nr-footer__cols{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px;padding:48px 24px 30px;}
.nr-footer__word{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:900;font-size:1.5rem;color:#fff;text-decoration:none;letter-spacing:-.01em;}
.nr-footer__tag{color:#9fb2cf;font-size:.92rem;line-height:1.55;margin:10px 0 0;max-width:340px;}
.nr-footer__h{font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:800;font-size:.78rem;text-transform:uppercase;letter-spacing:.1em;color:#fff;margin:0 0 14px;}
.nr-footer__links{display:flex;flex-direction:column;gap:9px;}
.nr-footer__links a{color:#c4d2e6;text-decoration:none;font-size:.92rem;}
.nr-footer__links a:hover{color:#fff;}
.nr-footer__links--inline{flex-direction:row;flex-wrap:wrap;gap:8px 16px;margin-top:14px;}
.nr-footer__bar{display:flex;align-items:center;gap:14px;border-top:1px solid rgba(255,255,255,.16);padding:18px 24px 26px;}
.nr-footer__mono{display:inline-grid;place-items:center;width:38px;height:38px;border:1px solid rgba(255,255,255,.4);border-radius:50%;font-family:'Libre Franklin','Barlow',system-ui,-apple-system,'Segoe UI',sans-serif;font-weight:800;font-size:.9rem;color:#fff;}
.nr-footer__copy{font-size:.8rem;color:#9fb2cf;margin:0;}

/* Responsive */
@media(max-width:980px){
  .nr-layout{grid-template-columns:1fr;gap:40px;}
}
@media(max-width:820px){
  .nr-sec__grid,.nr-catfeed,.nr-related__grid{grid-template-columns:1fr 1fr;}
  .nr-footer__cols{grid-template-columns:1fr 1fr;}
}
@media(max-width:680px){
  .nr-head__inner{padding:14px 24px 12px;}
  .nr-band__grid,.nr-sec__grid,.nr-catfeed,.nr-related__grid{grid-template-columns:1fr;}
  .nr-footer__cols{grid-template-columns:1fr;gap:28px;}
  .nr-lead__img{aspect-ratio:16/9;}
}

