/* Editorial design system shared by /about, /contact, /guides and the
   individual guide pages.

   Design goals
   ------------
   - Serif headlines for an editorial feel; sans body for legibility.
   - Stronger visual hierarchy: H1 large with a coloured kicker, H2 with
     a coloured marker, H3 understated.
   - Distinct top navigation bar visible on every page.
   - Lead paragraph with a deliberate, larger size and warmer colour.
   - Callouts use icon-style markers (no emoji, just typography).
   - Tables: zebra-striped, bordered, comfortable padding.
   - Comfortable max width (~720px content) with generous line-height.
   - Mobile-first: stacks cleanly on narrow screens. */

:root {
  --brand: #0a4dd6;
  --brand-dark: #0a3a9c;
  --brand-soft: #e8f0ff;
  --ink: #0f172a;
  --ink-muted: #475569;
  --ink-soft: #64748b;
  --line: #e5e7eb;
  --line-strong: #cbd5e1;
  --paper: #ffffff;
  --paper-warm: #fafaf7;
  --paper-cool: #f7fafd;
  --callout: #f1f5f9;
  --callout-warn: #fff7e6;
  --serif: ui-serif, "Source Serif Pro", "Source Serif 4", Charter, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --radius: 10px;
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.04);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper-warm);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ------------------------------ TOP NAV ------------------------------ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(6px);
}
.site-nav-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-brand-mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  margin-right: 8px;
  vertical-align: 0.05em;
}
.site-nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 15px;
}
.site-nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
}
.site-nav-links a:hover,
.site-nav-links a[aria-current="page"] {
  color: var(--brand);
}
@media (max-width: 540px) {
  .site-nav-links { gap: 14px; font-size: 14px; }
  .site-nav-inner { padding: 12px 16px; gap: 14px; }
}

/* ------------------------------ LAYOUT ------------------------------ */

main.editorial {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  background: transparent;
}
@media (max-width: 640px) {
  main.editorial { padding: 20px 18px 40px; }
}

nav.bc {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
nav.bc a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 600;
}
nav.bc a:hover { color: var(--brand); }
nav.bc span[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}

/* ------------------------------ TYPOGRAPHY ------------------------------ */

.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 10px;
}

h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 3.2vw, 26px);
  line-height: 1.25;
  margin: 40px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--brand);
  color: var(--ink);
  letter-spacing: -0.01em;
}
h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17.5px;
  line-height: 1.35;
  margin: 26px 0 6px;
  color: var(--ink);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.meta::before { content: ""; }
.meta span + span::before {
  content: "·";
  color: var(--ink-soft);
  margin-right: 12px;
  margin-left: -2px;
}

.lead {
  font-size: 19.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 28px;
  font-weight: 400;
}

p, li { font-size: 17px; }
p { margin: 0 0 14px; color: var(--ink); }
li { margin: 6px 0; }

strong { color: var(--ink); font-weight: 650; }
em { color: var(--ink-muted); }

a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 120ms ease;
}
a:hover { color: var(--brand-dark); }

/* ------------------------------ TABLE OF CONTENTS ------------------------------ */

.toc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px 14px;
  margin: 24px 0 28px;
}
.toc strong {
  font-family: var(--sans);
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 1;
}
.toc li {
  margin: 4px 0;
  padding-left: 16px;
  position: relative;
  font-size: 15.5px;
}
.toc li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 13px;
  top: 2px;
}
.toc a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
}
.toc a:hover { color: var(--brand); text-decoration: underline; }
@media (min-width: 640px) {
  .toc ul { columns: 2; column-gap: 28px; }
}

/* ------------------------------ TABLES ------------------------------ */

table {
  border-collapse: collapse;
  width: 100%;
  margin: 18px 0 22px;
  font-size: 15.5px;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
th, td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  background: var(--paper-cool);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line-strong);
}
tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) td { background: rgba(247, 250, 253, 0.5); }

/* ------------------------------ CALLOUTS ------------------------------ */

aside.callout {
  border-left: 4px solid var(--brand);
  background: var(--callout);
  padding: 14px 18px;
  margin: 22px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16.5px;
  color: var(--ink);
  position: relative;
}
aside.callout::before {
  content: "▸ Tip";
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  display: block;
  margin-bottom: 6px;
}
aside.callout p { margin: 0; }
aside.callout p + p { margin-top: 8px; }

aside.warn {
  border-left-color: #b45309;
  background: var(--callout-warn);
}
aside.warn::before {
  content: "△ Watch out";
  color: #92400e;
}

/* ------------------------------ FOOTER ------------------------------ */

.editorial-footer {
  margin: 56px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  text-align: center;
}
.editorial-footer .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}
.editorial-footer a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
}
.editorial-footer a:hover { color: var(--brand); }
.editorial-footer .copy {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
}

/* ------------------------------ GUIDES HUB CARDS ------------------------------ */

.guide-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin: 24px 0 32px;
}
@media (min-width: 640px) {
  .guide-grid { grid-template-columns: 1fr 1fr; }
}
.guide-card {
  display: block;
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.guide-card:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}
.guide-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--brand);
  margin: 0 0 6px;
}
.guide-card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ------------------------------ CONTACT CARD ------------------------------ */

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 18px 0 28px;
  box-shadow: var(--shadow-card);
}
.contact-card p { margin: 8px 0; font-size: 16px; }
.contact-card .label {
  display: inline-block;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 100px;
}

/* ------------------------------ AIRLINE PAGE: CONTACT BOARD ------------------------------ */

/* Top contact card on each airline page — replaces the inline-styled
   "Phone / Website / WhatsApp" list with a structured board that mirrors
   the editorial card chrome of the guide pages. */
.contact-board {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 0 0 24px;
  box-shadow: var(--shadow-card);
}
.contact-board .row {
  display: flex;
  align-items: baseline;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.contact-board .row:first-child { border-top: 0; }
.contact-board .label {
  flex: 0 0 110px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-board .value {
  flex: 1;
  font-size: 16.5px;
  color: var(--ink);
  word-break: break-word;
}
.contact-board .value a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}
.contact-board .value a:hover { text-decoration: underline; }
.contact-board .today {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 540px) {
  .contact-board .row { flex-direction: column; gap: 2px; padding: 10px 0; }
  .contact-board .label { flex: none; }
}

/* ------------------------------ AIRLINE PAGE: FAQ ------------------------------ */

.faq-list {
  margin: 0 0 12px;
  padding: 0;
}
.faq-list dt {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  margin: 18px 0 6px;
  padding-left: 14px;
  border-left: 2px solid var(--brand);
}
.faq-list dt:first-child { margin-top: 0; }
.faq-list dd {
  margin: 0 0 0 14px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ------------------------------ AIRLINE PAGE: FASTEST WAY BULLETS ------------------------------ */

.fastest-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 16px;
}
.fastest-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  border-top: 1px dashed var(--line);
  font-size: 16.5px;
  line-height: 1.55;
}
.fastest-list li:first-child { border-top: 0; }
.fastest-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--brand);
  font-weight: 700;
}
.fastest-list li strong { color: var(--ink); }

/* ------------------------------ AIRLINE PAGE: INSIGHTS / TIPS ------------------------------ */

.tip-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 14px;
}
.tip-stack > p {
  margin: 0;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 0 6px 6px 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.tip-stack > p strong { color: var(--ink); }

/* ------------------------------ AIRLINE PAGE: RELATED PILLS ------------------------------ */

.related-block {
  margin: 0 0 14px;
}
.related-block .group-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin: 0 0 8px;
  text-transform: none;
}
.related-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}
.related-pills a {
  display: inline-block;
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
  transition: border-color 120ms ease, color 120ms ease;
}
.related-pills a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ------------------------------ AIRLINE PAGE: ABOUT BLOCK ------------------------------ */

.about-block {
  margin: 36px 0 0;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.about-block h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 8px;
}
.about-block p {
  margin: 0 0 8px;
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.about-block p:last-child { margin-bottom: 0; }

/* ------------------------------ HOMEPAGE: AIRLINE DIRECTORY GRID ------------------------------ */

.airline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px 16px;
  padding: 0;
  margin: 12px 0 22px;
  list-style: none;
}
.airline-grid li { margin: 0; }
.airline-grid a {
  display: block;
  padding: 8px 4px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15.5px;
  border-bottom: 1px solid transparent;
  transition: color 120ms, border-color 120ms;
}
.airline-grid a:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

/* ------------------------------ MISC ------------------------------ */

ul, ol { padding-left: 24px; margin: 6px 0 18px; }
ul li::marker { color: var(--brand); }

hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 32px 0;
}

/* ============================================================ */
/* AIRLINE PROFILE — extended layout                              */
/* ============================================================ */
/* The redesigned airline page uses a richer layout than a stack of
   prose sections. The components below give each page distinct
   visual rhythm — hero, stat strip, channel grid, ops card,
   loyalty card, changelog — so a reviewer reading two airlines
   back-to-back sees genuinely different pages, not the same
   template with a name swap. */

main.editorial.airline { max-width: 820px; }

/* ---------------- HERO ---------------- */

.airline-hero {
  margin: 0 0 26px;
}
.airline-hero .kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.airline-hero .kicker-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.airline-hero .kicker-chip.muted {
  background: var(--paper-cool);
  color: var(--ink-soft);
}
.airline-hero h1 {
  margin: 0 0 8px;
  padding-left: 0;
  border-left: 0;
}
.airline-hero .lead {
  margin: 6px 0 16px;
}
.airline-hero .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.airline-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
}
.airline-hero .badge.alliance-skyteam { border-color: #c41e3a33; color: #8a1428; background: #fdf2f4; }
.airline-hero .badge.alliance-star    { border-color: #f5a52333; color: #92500c; background: #fef5e8; }
.airline-hero .badge.alliance-oneworld{ border-color: #0046ad33; color: #0a3171; background: #eaf1fb; }
.airline-hero .badge.eu261            { border-color: #0a4dd633; color: var(--brand-dark); background: var(--brand-soft); }

/* ---------------- STAT STRIP ---------------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 26px;
  box-shadow: var(--shadow-card);
}
.stat-tile {
  background: var(--paper);
  padding: 14px 14px 12px;
  text-align: left;
}
.stat-tile .stat-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.stat-tile .stat-value {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.stat-tile .stat-sub {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ---------------- PROFILE PROSE ---------------- */

.profile-section { margin: 36px 0 28px; }
.profile-section > p:first-of-type:first-letter {
  /* Subtle drop-cap on the opening paragraph of the customer-service
     profile — adds editorial feel and breaks visual monotony. */
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  float: left;
  line-height: 0.95;
  padding: 4px 9px 0 0;
  color: var(--brand-dark);
}

/* ---------------- CHANNEL GUIDE GRID ---------------- */

.channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 12px 0 22px;
}
@media (min-width: 640px) {
  .channel-grid { grid-template-columns: 1fr 1fr; }
}
.channel-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.channel-card .channel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}
.channel-card .channel-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.channel-card .channel-when {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
}
.channel-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.channel-card p strong { color: var(--ink); }

/* ---------------- OPERATIONAL CONTEXT CARD ---------------- */

.ops-card {
  background: linear-gradient(180deg, var(--paper-cool) 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 0 0 22px;
}
.ops-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 10px;
}
.ops-card p {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.ops-card p:last-child { margin-bottom: 0; }
.ops-card .ops-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 6px 14px;
  margin-top: 14px;
  font-size: 14.5px;
}
.ops-card .ops-row dt {
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding-top: 2px;
}
.ops-card .ops-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

/* ---------------- LOYALTY CARD ---------------- */

.loyalty-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 12px 0 22px;
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) {
  .loyalty-card { grid-template-columns: 160px 1fr; align-items: center; }
}
.loyalty-card .loyalty-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--brand-dark);
  margin: 0;
  letter-spacing: -0.01em;
}
.loyalty-card .loyalty-name + span {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.loyalty-card .loyalty-body {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ---------------- STRENGTHS / WATCH-OUTS ---------------- */

.dual-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 12px 0 22px;
}
@media (min-width: 640px) {
  .dual-list { grid-template-columns: 1fr 1fr; }
}
.dual-list .col {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px 14px;
}
.dual-list h4 {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--ink-soft);
}
.dual-list .col.positive h4 { color: #0c6e3e; }
.dual-list .col.negative h4 { color: #92400e; }
.dual-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dual-list li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.dual-list .col.positive li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0c6e3e;
  font-weight: 700;
}
.dual-list .col.negative li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #b45309;
  font-weight: 700;
}

/* ---------------- CHANGELOG ---------------- */

.changelog {
  margin: 12px 0 22px;
  padding-left: 22px;
  border-left: 2px solid var(--line);
}
.changelog .entry {
  position: relative;
  padding: 4px 0 14px 0;
}
.changelog .entry::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}
.changelog .when {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.changelog .what {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.55;
}
.changelog .what strong { color: var(--ink); }

/* ---------------- COUNTRY FLAG (text-based, no image) ---------------- */

.flag {
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
}

/* ---------------- AT-A-GLANCE TABLE (alt for stat-strip on narrow pages) ---------------- */

@media (max-width: 480px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-tile { padding: 12px 12px 10px; }
}
