/* ======================================================
   UtanSvenskLicens.vip — Swedish flag palette
   Editorial + Scandinavian minimal · totally new design
   Deep Sverige blue #004B87 · Sunny yellow #FECC00 · Paper #FDFBF5
   ====================================================== */

/* Google Fonts loaded via <link>: Fraunces (serif display) + Inter (sans body) */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--blue-hot); text-decoration: underline; text-underline-offset: 3px; }

:root {
  /* Paper background — warm slightly-cream white */
  --paper: #FDFBF5;
  --paper-2: #F6F1E4;
  --paper-3: #EBE3CE;

  /* Sweden flag — deep steel blue */
  --blue: #004B87;
  --blue-hot: #003665;
  --blue-deep: #002744;
  --blue-tint: #E6EEF6;
  --blue-tint-2: #C7D6E7;

  /* Sunny flag yellow */
  --yellow: #FECC00;
  --yellow-hot: #E5B500;
  --yellow-soft: #FFE58A;
  --yellow-tint: #FFF7D6;

  /* Ink & text */
  --ink: #16202E;
  --ink-2: #34435B;
  --ink-3: #64738A;
  --ink-4: #94A0B4;

  /* Borders */
  --line: #E1DACA;
  --line-2: #CBC1A8;
  --line-blue: rgba(0, 75, 135, 0.14);

  /* Sizing */
  --max-w: 1160px;
  --radius: 3px;
  --radius-lg: 6px;

  /* Shadows — subtle only */
  --shadow-1: 0 1px 2px rgba(22, 32, 46, .04), 0 1px 4px rgba(22, 32, 46, .04);
  --shadow-2: 0 8px 24px rgba(0, 75, 135, .10);
  --shadow-yellow: 0 4px 14px rgba(254, 204, 0, .28);

  /* Fonts — serif display + clean sans body */
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ======================================================
   Typography
   ====================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--blue-deep);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.22;
  margin: 1.6em 0 .5em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.15rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.05rem); }
h3 { font-size: clamp(1.15rem, 1.4vw, 1.28rem); }
h4 { font-size: 1.05rem; }

h2 { position: relative; padding-top: .35em; }
h2::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: var(--yellow);
  margin-bottom: .55em;
  border-radius: 2px;
}

p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.4em; margin: 0 0 1.15em; }
li { margin-bottom: .35em; }
strong { color: var(--blue-deep); font-weight: 700; }

.flag-inline {
  display: inline-block;
  height: .82em;
  width: auto;
  vertical-align: -.08em;
  margin: 0 .18em 0 .12em;
  border: 1px solid rgba(0, 39, 68, .18);
  border-radius: 1.5px;
}

/* ======================================================
   Layout
   ====================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 22px;
}
.section, section.container, section.content, .content > .container {
  padding-top: 44px;
  padding-bottom: 44px;
}
@media (max-width: 720px) {
  .section, section.container, section.content, .content > .container { padding-top: 30px; padding-bottom: 30px; }
}

/* ======================================================
   Header — thin, editorial, sticky
   ====================================================== */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: var(--shadow-1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img {
  height: 40px;
  width: auto;
  max-width: 210px;
  display: block;
}
.logo-text { display: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav a {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 9px 12px;
  border-radius: var(--radius);
  letter-spacing: .015em;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover {
  color: var(--blue-hot);
  background: var(--blue-tint);
  text-decoration: none;
}
.nav a.active { color: var(--blue-deep); background: var(--yellow-tint); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius);
  color: var(--blue-deep);
  font-size: 22px;
  padding: 6px 12px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: inline-block; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 3px solid var(--yellow);
    padding: 8px 12px 16px;
    box-shadow: var(--shadow-2);
    gap: 0;
  }
  .nav.is-open a {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .nav.is-open a:last-child { border-bottom: none; }
}

/* ======================================================
   Hero — flat editorial, flag stripe
   ====================================================== */
.page-hero {
  position: relative;
  background: var(--paper);
  padding: 60px 0 44px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg,
    var(--blue) 0 33%,
    var(--yellow) 33% 66%,
    var(--blue) 66%);
}
.page-hero .blob { display: none; }
.page-hero .container { position: relative; z-index: 2; }

.breadcrumbs {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--ink-2); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue-hot); text-decoration: underline; }
.breadcrumbs .sep { color: var(--line-2); }

.page-hero h1 { margin: 0 0 .4em; max-width: 900px; }
.page-hero .lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--ink-2);
  max-width: 720px;
  line-height: 1.55;
  font-weight: 400;
}

/* Home hero variant — big magazine energy */
body.home .page-hero { padding: 72px 0 56px; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
body.home .page-hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.7rem);
  font-weight: 800;
}

/* ======================================================
   Buttons
   ====================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-primary {
  background: var(--yellow);
  color: var(--blue-deep);
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover {
  background: var(--yellow-hot);
  border-color: var(--yellow-hot);
  color: var(--blue-deep);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-secondary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-secondary:hover { background: var(--blue-hot); color: #fff; text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover { background: var(--blue-tint); color: var(--blue-deep); text-decoration: none; }

.btn-block { display: block; width: 100%; }

/* ======================================================
   List-heading (Hitta rätt casino direkt)
   ====================================================== */
.list-heading {
  text-align: center;
  margin-top: 46px;
  margin-bottom: 26px;
}
.list-heading::before { margin-left: auto; margin-right: auto; }

/* ======================================================
   Featured cards — casino tracking cards (STRUCTURE PRESERVED)
   Only visual styling below; content untouched.
   ====================================================== */
.featured-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .featured-cards { grid-template-columns: 1fr; gap: 18px; }
}
.feat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-1);
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.feat-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-tint-2);
  box-shadow: var(--shadow-2);
}
.feat-card.is-hot::before { background: var(--yellow); }
.feat-card .feat-flame {
  position: absolute;
  top: -14px;
  right: 16px;
  background: var(--yellow);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: var(--shadow-yellow);
}
.feat-card .feat-thumb {
  margin: 4px 0 14px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.feat-card .feat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--blue-deep);
  line-height: 1.3;
}
.feat-card .feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}
.feat-card .feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.feat-card .feat-list .ico {
  font-size: 16px;
  line-height: 1.2;
  flex: 0 0 auto;
}
.feat-card .btn-primary { margin-top: auto; }

/* ======================================================
   Trust stats — 4-tile bar under featured cards
   ====================================================== */
.trust-stats-wrap { margin: 0 auto 20px; }
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 20px auto 0;
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.trust-stats .ts-tile {
  text-align: center;
  padding: 22px 12px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
}
.trust-stats .ts-tile:last-child { border-right: none; }
.trust-stats .ts-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 5px;
}
.trust-stats .ts-lab {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .82);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
@media (max-width: 900px) {
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .trust-stats .ts-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .trust-stats .ts-tile:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .trust-stats .ts-tile:nth-child(n+3) { border-bottom: none; }
}
@media (max-width: 460px) {
  .trust-stats .ts-num { font-size: 1.3rem; }
  .trust-stats .ts-lab { font-size: 11px; }
  .trust-stats .ts-tile { padding: 16px 8px; }
}

/* ======================================================
   TOC — sober editorial box
   ====================================================== */
.toc {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 22px 26px 18px;
  margin: 28px 0;
}
.toc-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
}
.toc-title::before { display: none; }
.toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 34px;
}
.toc li { margin: 4px 0; font-size: 14.5px; break-inside: avoid; }
.toc a { color: var(--ink-2); text-decoration: none; }
.toc a:hover { color: var(--blue-hot); text-decoration: underline; }
@media (max-width: 720px) { .toc ol { columns: 1; } }

/* ======================================================
   Tables
   ====================================================== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin: 20px 0;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
thead th {
  background: var(--blue-deep);
  color: #fff;
  padding: 13px 14px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  white-space: nowrap;
}
tbody td {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  vertical-align: top;
}
tbody tr:nth-child(even) td { background: var(--paper); }
tbody tr:hover td { background: var(--yellow-tint); }

/* ======================================================
   Feature cards (info grid) — 6-tile inside content
   ====================================================== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0 28px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: border-color .18s ease, transform .18s ease;
  box-shadow: var(--shadow-1);
}
.feature-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.feature-card .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue-tint);
  color: var(--blue-hot);
  border-radius: var(--radius);
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  color: var(--blue-deep);
}
.feature-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
@media (max-width: 900px) { .feature-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-cards { grid-template-columns: 1fr; } }

/* ======================================================
   Step grid (test method) — numbered
   ====================================================== */
.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 20px 0 28px;
}
.step-box {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px 62px;
  box-shadow: var(--shadow-1);
}
.step-box .step-num {
  position: absolute;
  top: 22px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}
.step-box h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  color: var(--blue-deep);
}
.step-box p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
@media (max-width: 720px) { .step-grid { grid-template-columns: 1fr; } }

/* ======================================================
   Snabbfakta callout (accent panel)
   ====================================================== */
.snabbfakta {
  background: var(--blue-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin: 24px 0;
  border-left: 6px solid var(--yellow);
}
.snabbfakta h3 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 1.15rem;
}
.snabbfakta ul { list-style: none; padding: 0; margin: 0; }
.snabbfakta li {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  color: rgba(255, 255, 255, .92);
  font-size: 14.5px;
}
.snabbfakta li::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 700;
}

/* ======================================================
   Pros / cons columns (fördelar & nackdelar)
   ====================================================== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 20px 0 24px;
}
.pros-cons .pros, .pros-cons .cons {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 20px 22px;
}
.pros-cons .pros { border-top: 4px solid #1F9E4A; }
.pros-cons .cons { border-top: 4px solid #C0392B; }
.pros-cons h3 { margin: 0 0 10px; font-size: 1.05rem; color: var(--blue-deep); }
.pros-cons ul { list-style: none; padding: 0; margin: 0; }
.pros-cons li { padding: 5px 0 5px 22px; position: relative; color: var(--ink-2); font-size: 14.5px; }
.pros-cons .pros li::before {
  content: "+"; position: absolute; left: 0; color: #1F9E4A; font-weight: 800;
}
.pros-cons .cons li::before {
  content: "−"; position: absolute; left: 0; color: #C0392B; font-weight: 800;
}
@media (max-width: 720px) { .pros-cons { grid-template-columns: 1fr; } }

/* ======================================================
   FAQ (details/summary)
   ====================================================== */
.faq { margin: 20px 0 28px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .18s ease;
}
details[open] { border-color: var(--blue-tint-2); box-shadow: var(--shadow-1); }
summary {
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--blue-deep);
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 46px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--yellow-hot);
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease;
}
details[open] summary::after { content: "−"; }
details > p, details > div {
  padding: 0 20px 18px;
  color: var(--ink-2);
  font-size: 15px;
}

/* ======================================================
   Author card
   ====================================================== */
.author-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  margin: 34px 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: start;
}
.author-photo, .author-card img.author-photo, .author-card > img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
  box-shadow: var(--shadow-1);
}
.author-info { min-width: 0; }
.author-name {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue-deep);
  font-weight: 800;
}
.author-name::before { display: none; }
.author-role {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}
.author-bio { font-size: 15px; color: var(--ink-2); margin: 0 0 12px; line-height: 1.6; }
.author-email-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}
.author-email-btn:hover { background: var(--blue-hot); color: #fff; text-decoration: none; }
@media (max-width: 600px) {
  .author-card { grid-template-columns: 1fr; text-align: left; }
  .author-photo, .author-card > img { margin: 0 0 8px; }
}

/* ======================================================
   Footer
   ====================================================== */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, .85);
  padding: 46px 0 26px;
  margin-top: 60px;
  position: relative;
  border-top: 5px solid var(--yellow);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 5px; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    var(--yellow) 0 33%,
    var(--blue) 33% 66%,
    var(--yellow) 66%);
  opacity: .55;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}
.site-footer p, .site-footer li { font-size: 14px; color: rgba(255,255,255,.75); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer a { color: rgba(255, 255, 255, .85); }
.site-footer a:hover { color: var(--yellow); text-decoration: none; }
.footer-logo { height: 42px; margin-bottom: 14px; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 30px auto 0;
  padding: 20px 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
}

/* ======================================================
   Reveal animation
   ====================================================== */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ======================================================
   Content section flow
   ====================================================== */
.content .container > section { margin-bottom: 34px; }
.content .container > section:last-child { margin-bottom: 0; }
.content h2 { margin-top: 1.2em; }

/* ======================================================
   Callout / info-box
   ====================================================== */
.callout, .info-box, .note {
  background: var(--yellow-tint);
  border: 1px solid var(--yellow-hot);
  border-left: 4px solid var(--yellow-hot);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 18px 0;
  color: var(--blue-deep);
}
.callout h3, .info-box h3, .note h3 { margin-top: 0; color: var(--blue-deep); }

/* ======================================================
   Win ticker
   ====================================================== */
.win-ticker, #win-ticker {
  background: var(--blue-deep);
  color: #fff;
  padding: 10px 0;
  font-size: 13.5px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ======================================================
   Utilities
   ====================================================== */
.mt-0 { margin-top: 0 !important; }
.center { text-align: center; }
main { min-height: 60vh; }

/* ======================================================
   Print
   ====================================================== */
@media print {
  .site-header, .site-footer, .featured-cards, .btn { display: none; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
}
