/* Loyalogy — Broadsheet Journal design system
   Hugo theme override — loaded when fontPairing = "broadsheet"
   Based on design handoff: design_handoff_loyalogy_broadsheet/design/styles.css
   OMITTED: .adwrap, .adslot, .news — not used on CT sites */

:root {
  --primary: #0A1A33;
  --accent: #C8A24B;
  --navy: #0A1A33;
  --ink: #1a2740;
  --paper: #FAF8F2;
  --paper-2: #F1ECDF;
  --paper-3: #EAE3D2;
  --gold: #C8A24B;
  --gold-deep: #806014;
  --green: #1F8A50;
  --red: #C0392B;
  --line: rgba(10,26,51,.14);
  --line-2: rgba(10,26,51,.28);
  --line-strong: rgba(10,26,51,.55);
  --muted: rgba(10,26,51,.56);
  --muted-2: rgba(10,26,51,.4);
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Schibsted Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --wrap: 1200px;
  --pad: 48px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.rule-strong { border: 0; border-top: 3px solid var(--navy); margin: 0; }
.rule-dbl { border: 0; border-top: 3px solid var(--navy); border-bottom: 1px solid var(--line-strong); height: 5px; }
.divider { margin: 0 auto; max-width: var(--wrap); padding: 0 var(--pad); }

/* ---------- shared type ---------- */
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker .cat { color: var(--muted); }
.kicker .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-2);
  vertical-align: middle;
  margin: 0 9px 2px;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
}
.meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--muted);
}
.byline { font-family: var(--sans); }
.byline b { font-weight: 700; color: var(--navy); font-size: 13.5px; }
.byline span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 1px; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -.015em;
  line-height: 1.06;
  margin: 0;
}
.serif { font-family: var(--serif); }
.serif-i { font-style: italic; }
.mono { font-family: var(--mono); }

/* ---------- verdict stamps ---------- */
.vd {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 4px;
  border: 1.5px solid;
  white-space: nowrap;
  line-height: 1;
}
.vd--gold { color: var(--gold-deep); border-color: var(--gold); }
.vd--green { color: var(--green); border-color: var(--green); }
.vd--red { color: var(--red); border-color: var(--red); }
.vd--ink { color: var(--navy); border-color: var(--navy); }
.vd.solid { color: #fff; }
.vd--green.solid { background: var(--green); }
.vd--red.solid { background: var(--red); }
.vd--gold.solid { background: var(--gold); color: #16264A; }
.vd--ink.solid { background: var(--navy); }

/* large stacked verdict block */
.verdict-stamp {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.verdict-stamp .vd-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.verdict-stamp .vd-val {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1.5px solid var(--gold);
  padding: 8px 13px;
  border-radius: 4px;
  line-height: 1;
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  border-radius: 4px;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .18s ease;
  text-decoration: none;
}
.btn-fill { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.btn-fill:hover { background: #13294f; }
.btn-fill.gold { background: var(--gold); color: #1a1305; border-color: var(--gold); }
.btn-fill.gold:hover { filter: brightness(.95); }
.btn-out { background: transparent; color: var(--navy); border-color: var(--navy); text-transform: none; }
.btn-out:hover { background: var(--navy); color: var(--paper); }
.btn-cap { text-transform: uppercase; }

/* ---------- masthead ---------- */
.site-header { border-bottom: 1px solid var(--line-strong); }

.util { border-bottom: 1px solid var(--line); }
.util .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.util .tagline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.util .mono { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .04em; }
.util .date-str { font-family: var(--mono); font-size: 11px; color: var(--muted); }

.stick {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 242, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brandmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brandmark .wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -.02em;
  color: var(--navy);
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .15s;
  text-decoration: none;
}
.nav a:hover { color: var(--gold-deep); }
.nav a.active { color: var(--gold-deep); }
.nav a.nav-contact {
  border: 1.5px solid var(--navy);
  padding: 7px 14px;
  border-radius: 4px;
  transition: all .15s;
}
.nav a.nav-contact:hover { background: var(--navy); color: var(--paper); }

/* ---------- cover image placeholder ---------- */
.cover {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(150deg, #1a3157, #0A1A33);
}
.cover.alt { background: linear-gradient(150deg, #23406b, #13294f); }
.cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cover .ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.cover .deco {
  position: absolute;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  opacity: .3;
  pointer-events: none;
}
.cover .deco.a { right: -50px; top: -50px; width: 180px; height: 180px; }
.cover .deco.b { left: -44px; bottom: -60px; width: 160px; height: 160px; border-color: rgba(255,255,255,.14); }
.cover .grain {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.cover .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 18px 14px;
  background: linear-gradient(0deg, rgba(5,9,18,.8), transparent);
  font-family: var(--sans);
  font-size: 11.5px;
  color: rgba(255, 255, 255, .78);
}

/* ---------- review cards ---------- */
.card { display: flex; flex-direction: column; }
.card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; margin-bottom: 16px; }
.card .cover { height: 200px; margin-bottom: 16px; }
.card-body { display: flex; flex-direction: column; flex: 1; }
.card .ttl, .card h3 { font-size: 22px; line-height: 1.12; margin: 8px 0 0; font-family: var(--serif); }
.card .ttl a:hover, .card h3 a:hover { color: var(--gold-deep); }
.card .dek { font-size: 15px; color: var(--muted); line-height: 1.5; margin: 9px 0 0; font-family: var(--sans); }
.card-foot, .card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.card .foot .by { font-family: var(--sans); font-size: 12px; color: var(--muted); }

/* ---------- verdict list rows ---------- */
.vrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.vrow .prog-name, .vrow .prog {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}
.vrow .sub {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 3px;
}

/* ---------- section heads ---------- */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 9px;
  margin-bottom: 24px;
}
.sec-head h2, .sec-head h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}
.sec-head .meta { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.sec-head .more {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sec-head.light { border-bottom-color: rgba(255,255,255,.3); }
.sec-head.light h2 { color: #fff; }

/* ---------- verdict index table ---------- */
.itable {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
  margin-top: 16px;
}
.itable thead tr {
  border-bottom: 2px solid var(--navy);
}
.itable th {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 12px 10px 0;
  text-align: left;
}
.itable tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background .12s;
}
.itable tbody tr:hover { background: var(--paper-2); }
.itable td {
  padding: 14px 12px 14px 0;
  vertical-align: middle;
}
.itable .prog { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--navy); }
.itable .cat-cell { font-family: var(--sans); font-size: 12px; color: var(--muted); text-transform: capitalize; }
.itable .mono { font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* chip filters */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.chip {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--line-2);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.on { background: var(--navy); color: var(--paper); border-color: var(--navy); }

/* ---------- article header ---------- */
.art-head {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.art-head .kicker { margin-bottom: 14px; }
.art-head h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 18px;
}
.art-head .dek {
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
  font-family: var(--sans);
  margin-bottom: 24px;
}
.art-head .byline-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- verdict scorecard (article) ---------- */
.verdict-scorecard {
  background: var(--paper-2);
  border: 1.5px solid var(--line-2);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 0 0 40px;
}
.scorecard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.scorecard-left { flex: 1; }
.vd-label-sm {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 8px;
}
.big-vd {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
  border: 2px solid;
  display: inline-block;
  line-height: 1;
  margin-bottom: 14px;
}
.big-vd.vd--green { color: var(--green); border-color: var(--green); }
.big-vd.vd--red { color: var(--red); border-color: var(--red); }
.big-vd.vd--gold { color: var(--gold-deep); border-color: var(--gold); }
.verdict-summary {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.score-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.score-circle span {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.score-circle small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.pros strong, .cons strong {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.pros strong { color: var(--green); }
.cons strong { color: var(--red); }
.pro-item, .con-item {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  padding: 4px 0;
}
.pro-item { color: var(--green); }
.con-item { color: var(--red); }

/* ---------- home page hero ---------- */
.hero-cover {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.hero-left h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 500;
  line-height: 1.04;
  margin: 14px 0 16px;
}
.hero-left .dek {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  font-family: var(--sans);
  margin: 0 0 24px;
}
.hero-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.byline-bar { font-family: var(--sans); font-size: 13px; color: var(--muted); }
.cover-hero { height: 320px; }
.latest-verdicts { margin-top: 24px; }
.trust-strip {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}
.trust-label {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.trust-brands {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- verdict index section ---------- */
.verdict-index { padding: 56px 0; border-bottom: 1px solid var(--line); }

/* ---------- reviews grid ---------- */
.reviews-grid { padding: 56px 0; border-bottom: 1px solid var(--line); }
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* ---------- analysis band ---------- */
.analysis-band {
  background: var(--navy);
  padding: 56px 0;
}
.analysis-band .sec-head h2 { color: #fff; }
.analysis-band .dek { color: rgba(250,248,242,.65); }
.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.acol h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.12;
  margin: 10px 0 10px;
}
.acol h3 a { color: #fff; }
.acol h3 a:hover { color: var(--gold); }
.acol .kicker.k { color: var(--gold); }
.acol .dek {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(250,248,242,.65);
  line-height: 1.55;
  margin: 0 0 12px;
}
.acol .byline { font-family: var(--mono); font-size: 11px; color: rgba(250,248,242,.45); }

/* ---------- footer ---------- */
.foot-band.ftr {
  background: var(--navy);
  color: var(--paper);
  padding: 48px 0 32px;
}
.foot-band.ftr a { color: rgba(250,248,242,.66); }
.foot-band.ftr a:hover { color: #fff; }
.foot-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(250,248,242,.15);
  margin-bottom: 24px;
}
.foot-copy {
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(250,248,242,.4);
  letter-spacing: .04em;
}

/* utilities */
.muted { color: var(--muted); }
.fee {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--navy);
  text-transform: none;
}
.iconbtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  background: transparent;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
}
.iconbtn:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }

/* ---------- article body ---------- */
.article-single { padding: 0 0 80px; }
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
}
.article-body h2 { font-size: 28px; margin: 2em 0 .6em; }
.article-body h3 { font-size: 22px; margin: 1.8em 0 .5em; }
.article-body p { margin: 0 0 1.2em; }
.article-body a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.article-body ul, .article-body ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.article-body li { margin-bottom: .4em; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 1.5em 0;
  padding: .5em 0 .5em 1.5em;
  font-style: italic;
  color: var(--muted);
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  :root { --pad: 28px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { order: -1; }
  .cover-hero { height: 240px; }
  .grid3 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .analysis-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .proscons { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --pad: 18px; }
  .util .wrap { display: none; }
  .nav { gap: 14px; }
  .nav a { font-size: 12px; }
  .brandmark .wordmark { font-size: 21px; }
  .grid3 { grid-template-columns: 1fr; }
  .analysis-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 24px; }
  .hero-left h1 { font-size: 30px; }
  .itable th:nth-child(3), .itable td:nth-child(3) { display: none; }
  .chips { gap: 6px; }
  .chip { font-size: 10px; padding: 6px 10px; }
  .scorecard-top { flex-direction: column; }
  .score-circle { align-self: flex-start; }
}
