/* =====================================================================
   BÄSTA ONLINE CASINO UTAN SVENSK LICENS — Clean Editorial Stylesheet
   Brand: Navy (#15234a) + Gold (#f0b820)
   Single sans family, no fancy decorations, GI-style simple and clean
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Brand palette */
  --navy-900: #0d1733;
  --navy-800: #15234a;
  --navy-700: #1e2f5c;
  --navy-600: #29406e;
  --navy-500: #3a527f;

  --gold-700: #b58912;
  --gold-600: #d4a01a;
  --gold-500: #f0b820;
  --gold-400: #f5c947;
  --gold-300: #f9dc78;
  --gold-50:  #fff8e1;

  --gray-900: #1a1f2e;
  --gray-800: #2c3344;
  --gray-700: #4a5468;
  --gray-600: #6b7588;
  --gray-500: #97a1b4;
  --gray-400: #c8cfdc;
  --gray-300: #e1e6ee;
  --gray-200: #eef1f6;
  --gray-100: #f6f8fb;
  --gray-50:  #fafbfd;
  --white: #ffffff;

  --success: #2a8556;
  --danger: #b53737;

  /* Typography — single clean sans family */
  --font-body: 'Source Sans 3', system-ui, -apple-system, "Helvetica Neue", sans-serif;

  /* Spacing */
  --gutter: 1.5rem;
  --max-content: 760px;
  --max-page: 1240px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(13, 23, 51, 0.05);
  --shadow-md: 0 4px 12px rgba(13, 23, 51, 0.08);
}

/* ===================== Reset & base ===================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--gold-600); }
hr { border: none; border-top: 1px solid var(--gray-300); margin: 2.5rem 0; }

/* ===================== Typography (clean sans throughout) ===================== */

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.2rem);
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
h4 {
  font-size: 1.02rem;
  margin-top: 1.3rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

p { margin: 0 0 1.1rem; }
ul, ol { padding-left: 1.4rem; margin: 0 0 1.4rem; }
ul li, ol li { margin-bottom: 0.45rem; }

strong { font-weight: 700; color: var(--navy-900); }

/* ===================== Layout ===================== */

.container {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
  padding: 1.5rem 0 2rem;
}
.article {
  min-width: 0;
  max-width: var(--max-content);
}
.sidebar { position: sticky; top: 1rem; }

@media (max-width: 1024px) {
  .page-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sidebar { position: static; }
}

/* ===================== Header — minimal, no decoration ===================== */

.topbar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
}
.topbar .util-left { display: flex; gap: 1.6rem; }
.topbar a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
}
.topbar a:hover { color: var(--navy-800); }
.topbar .lang { color: var(--gray-600); }

.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(13, 23, 51, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
.brand img {
  height: 48px;
  width: auto;
  display: block;
}

.mainnav { display: flex; align-items: center; gap: 2rem; }
.mainnav a {
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
}
.mainnav a:hover { color: var(--navy-900); }
.mainnav a.active {
  color: var(--navy-900);
  font-weight: 700;
}
.mainnav a.active::after {
  content: '';
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-500);
}

/* ===================== Mobile menu (hamburger + drawer) ===================== */

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: 0;
  width: 44px;
  height: 44px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: all 0.2s ease;
}

@media (max-width: 880px) {
  .mainnav { display: none; }
  .header-inner { justify-content: space-between; }
  .topbar { display: none; }
  .mobile-toggle { display: flex; }
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 23, 51, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-drawer.is-open .mobile-drawer-overlay { opacity: 1; }
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 340px;
  background: #fff;
  box-shadow: -8px 0 28px rgba(13, 23, 51, 0.25);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.is-open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-brand img { height: 32px; }
.mobile-close {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--navy-900);
  font-size: 1.6rem;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0 0 2px 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-close:hover {
  background: var(--navy-800);
  color: var(--gold-400);
  border-color: var(--navy-800);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  overflow-y: auto;
}
.mobile-nav a {
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  font-size: 1.05rem;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.mobile-nav a:hover {
  background: var(--gold-50);
  border-left-color: var(--gold-500);
}
.mobile-nav-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0.6rem 1.4rem;
}

/* ===================== Breadcrumb ===================== */

.breadcrumb {
  font-size: 0.86rem;
  color: var(--gray-600);
  margin: 1.5rem 0 0.5rem;
}
.breadcrumb a { color: var(--gray-700); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy-700); }
.breadcrumb .sep { color: var(--gray-400); margin: 0 0.45rem; }

/* ===================== Article header ===================== */

.article-header { margin-bottom: 2rem; }
.article-intro {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}
.article-intro p:last-child { margin-bottom: 0; }

/* Byline — date | author w/ photo | fact-checker w/ photo  (GI style) */
.byline {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0 1.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.byline .updated {
  font-size: 0.9rem;
  color: var(--gray-700);
}
.byline .updated .label {
  display: block;
  font-size: 0.7rem;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}
.byline .updated .date {
  font-weight: 700;
  color: var(--navy-900);
}
.byline .byline-person {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.byline .byline-person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.byline .person-meta {
  line-height: 1.25;
  font-size: 0.92rem;
  min-width: 0;
}
.byline .person-tag {
  display: block;
  font-size: 0.7rem;
  color: var(--gold-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}
.byline .person-tag .check {
  color: var(--gold-600);
  margin-left: 4px;
  font-size: 0.78rem;
}
.byline .person-name {
  display: block;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.96rem;
}
.byline .person-role {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
}

@media (max-width: 700px) {
  .byline {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "date date"
      "author factchecker";
    gap: 1rem 0.8rem;
  }
  .byline .updated { grid-area: date; }
  .byline .byline-person:nth-child(2) { grid-area: author; }
  .byline .byline-person:nth-child(3) { grid-area: factchecker; }
  .byline .byline-person { gap: 0.55rem; }
  .byline .byline-person img { width: 40px; height: 40px; }
  .byline .person-name { font-size: 0.9rem; }
  .byline .person-role { font-size: 0.75rem; }
  .byline .person-tag { font-size: 0.66rem; }
}

.ad-disclosure {
  background: var(--gray-100);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin: 1.5rem 0 2rem;
  line-height: 1.5;
}
.ad-disclosure strong { color: var(--navy-800); }

/* ===================== Featured cards (sitewide hub grid) ===================== */

.featured-block {
  margin: 1.6rem 0 2.4rem;
}
.featured-block .featured-title {
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
.cat-card {
  display: grid;
  grid-template-columns: 40px 150px auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  background: linear-gradient(105deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-800) 100%);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 110px;
  transition: transform 0.15s ease;
}
.cat-card:hover { transform: translateY(-1px); }
.cat-card::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 280px;
  background: radial-gradient(circle at right, rgba(240, 184, 32, 0.16), transparent 70%);
  pointer-events: none;
}
.cat-card .cat-num {
  font-weight: 800;
  color: var(--gold-400);
  font-size: 1.4rem;
  padding-left: 4px;
}
.cat-card .cat-icon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-right: 1.2rem;
}
.cat-card .cat-icon-block img {
  height: 44px;
  width: auto;
}
.cat-card .cat-icon-block .cat-icon-label {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
}
.cat-card .cat-rating {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.1rem;
  text-align: center;
  min-width: 120px;
}
.cat-card .cat-rating .rating-label {
  display: block;
  font-size: 0.74rem;
  color: var(--gray-300);
  font-weight: 500;
  margin-bottom: 2px;
}
.cat-card .cat-rating .score {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.1;
}
.cat-card .cat-rating .rating-tag {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-300);
  font-weight: 500;
  margin-top: 1px;
}
.cat-card .cat-info-main {
  position: relative;
  z-index: 1;
  line-height: 1.25;
}
.cat-card .cat-meta {
  display: block;
  font-size: 0.84rem;
  color: var(--gray-300);
  font-weight: 500;
  margin-bottom: 3px;
}
.cat-card .cat-title {
  display: block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.cat-card .cat-cta {
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: background 0.15s ease;
}
.cat-card:hover .cat-cta { background: var(--gold-400); }

@media (max-width: 920px) {
  .cat-card {
    grid-template-columns: 30px 110px 1fr auto;
    gap: 1rem;
    padding: 1rem;
  }
  .cat-card .cat-rating { display: none; }
  .cat-card .cat-icon-block img { height: 36px; }
}
@media (max-width: 540px) {
  .cat-card {
    grid-template-columns: 26px 1fr auto;
  }
  .cat-card .cat-icon-block { display: none; }
  .cat-card .cat-cta { padding: 0.55rem 1rem; font-size: 0.86rem; }
  .cat-card .cat-title { font-size: 1.05rem; }
}

/* ===================== Callout boxes ===================== */

.callout {
  background: var(--gold-50);
  border: 1px solid #f3e0a8;
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  margin: 2rem 0;
}
.callout-title {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.callout-title::before {
  content: '';
  display: inline-block;
  width: 16px; height: 3px;
  background: var(--gold-500);
}
.callout ul, .callout p:last-child { margin-bottom: 0; }
.callout ul { padding-left: 1.25rem; }
.callout li { margin-bottom: 0.45rem; line-height: 1.5; }

.callout--navy {
  background: var(--navy-900);
  border: 1px solid var(--navy-700);
  border-left: 3px solid var(--gold-500);
  color: var(--gray-200);
}
.callout--navy .callout-title { color: var(--gold-400); }
.callout--navy .callout-title::before { background: var(--gold-500); }
.callout--navy h3, .callout--navy strong, .callout--navy h4 { color: var(--white); }
.callout--navy a { color: var(--gold-300); }

/* ===================== Mini-review ===================== */

.minireview {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  margin: 1.2rem 0 1.5rem;
}
.minireview h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-900);
}
.minireview .minireview-tag {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-700);
  margin-bottom: 0.55rem;
}
.minireview p { margin-bottom: 0.85rem; }
.minireview p:last-child { margin-bottom: 0; }

/* ===================== Tables — clean, branded ===================== */

.table-wrap {
  overflow-x: auto;
  margin: 1.8rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  background: var(--white);
}
table th {
  background: var(--navy-800);
  color: var(--white);
  text-align: left;
  padding: 0.85rem 1rem;
  font-weight: 700;
  border-bottom: 3px solid var(--gold-500);
}
table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
  color: var(--gray-800);
}
table tr:nth-child(even) td { background: var(--gray-50); }
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: var(--gold-50); }

table .table-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--navy-800);
  border-radius: var(--radius-sm);
  padding: 5px;
  margin-right: 0.7rem;
  vertical-align: middle;
}
table .table-icon img { width: 100%; height: 100%; object-fit: contain; }
table .with-icon {
  display: flex;
  align-items: center;
}
table .with-icon strong { display: block; line-height: 1.25; color: var(--navy-900); font-weight: 700; }

/* Mobile table: stack each row vertically with label/value pairs */
@media (max-width: 640px) {
  .table-wrap {
    overflow-x: visible;
    border: none;
    background: transparent;
  }
  table, table tbody { display: block; width: 100%; background: transparent; }
  table thead { display: none; }
  table tr {
    display: block;
    margin-bottom: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  table tr:nth-child(even) td { background: transparent; }
  table tr:hover td { background: transparent; }
  table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1rem;
    text-align: right;
    border-bottom: 1px solid var(--gray-200);
  }
  table td:last-child { border-bottom: none; }
  table tr td:first-child,
  table tr:nth-child(even) td:first-child {
    background: var(--navy-800);
    color: var(--white);
    border-bottom: 3px solid var(--gold-500);
    text-align: left;
    justify-content: flex-start;
  }
  table tr td:first-child::before { display: none; }
  table tr td:first-child strong { color: var(--white); font-size: 1.05rem; }
  table tr td:first-child .table-icon { display: none; }
  table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--navy-900);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    flex-shrink: 0;
  }
}

/* ===================== Step list ===================== */

.steps {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.7rem;
  margin: 1.8rem 0;
}
.steps h3 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
}
.steps ol {
  list-style: none;
  padding: 0;
  counter-reset: stepcount;
  margin: 1rem 0 0;
}
.steps ol li {
  counter-increment: stepcount;
  position: relative;
  padding-left: 2.8rem;
  padding-bottom: 1rem;
  margin-bottom: 0.3rem;
  border-left: 1px solid var(--gray-300);
  margin-left: 13px;
}
.steps ol li::before {
  content: counter(stepcount);
  position: absolute;
  top: -2px;
  left: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  border: 3px solid var(--gray-50);
}
.steps ol li:last-child { border-left: 1px solid transparent; padding-bottom: 0; }
.steps ol li strong { display: block; font-size: 1rem; color: var(--navy-900); margin-bottom: 0.15rem; }

/* ===================== Pros / cons ===================== */

.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.6rem 0;
}
.proscons .pros, .proscons .cons {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
}
.proscons h4 {
  margin-top: 0;
  font-size: 1rem;
  font-weight: 800;
  padding-bottom: 0.5rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid var(--gray-300);
}
.proscons .pros h4 { color: var(--success); }
.proscons .cons h4 { color: var(--danger); }
.proscons ul { list-style: none; padding: 0; margin: 0; }
.proscons li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-size: 0.95rem;
}
.proscons .pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
  font-size: 1.05rem;
}
.proscons .cons li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 800;
  font-size: 1.15rem;
}

@media (max-width: 640px) {
  .proscons { grid-template-columns: 1fr; }
}

/* ===================== FAQ accordion ===================== */

.faq { margin: 1.8rem 0; }
.faq details {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq details[open] { border-color: var(--navy-700); }
.faq summary {
  cursor: pointer;
  padding: 1rem 3rem 1rem 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: 'F:';
  font-weight: 800;
  color: var(--gold-600);
  font-style: italic;
  flex-shrink: 0;
}
.faq summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--navy-700);
  line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq .faq-answer { padding: 0 1.2rem 1rem 2.4rem; color: var(--gray-800); }
.faq .faq-answer p { margin: 0; line-height: 1.6; }

/* ===================== Author bio card ===================== */

.author-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  margin: 2.5rem 0 1rem;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.3rem;
  align-items: start;
}
.author-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}
.author-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.15rem;
  color: var(--navy-900);
}
.author-card .role {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.6rem;
}
.author-card p { margin-bottom: 0.7rem; font-size: 0.95rem; line-height: 1.55; }
.author-card .author-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--navy-800);
  text-decoration: none;
  border: 2px solid var(--navy-800);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.author-card .author-link:hover { background: var(--navy-800); color: var(--white); }

@media (max-width: 540px) {
  .author-card { grid-template-columns: 70px 1fr; gap: 1rem; }
  .author-card img { width: 70px; height: 70px; }
}

/* ===================== Sidebar ===================== */

.side-block { margin-bottom: 1.5rem; }
.side-block-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy-900);
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--gray-300);
}
.side-block-head::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 3px;
  background: var(--gold-500);
}
.side-block-body { font-size: 0.95rem; color: var(--gray-800); }
.side-block-body p:last-child { margin-bottom: 0; }
.side-block-body ul { list-style: none; padding: 0; margin: 0; }
.side-block-body ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.side-block-body ul li:last-child { border-bottom: none; }
.side-block-body ul li a {
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 600;
  display: block;
  line-height: 1.35;
  font-size: 0.94rem;
}
.side-block-body ul li a:hover { color: var(--gold-600); }
.side-block-body ul li .tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  background: transparent;
  padding: 2px 0;
  text-transform: uppercase;
  margin-top: 3px;
}

.side-checklist {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.3rem 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.side-checklist h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0.4rem 0 0.9rem;
}
.side-checklist h3 .accent { color: var(--gold-400); }
.side-checklist .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(240, 184, 32, 0.13);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  font-weight: 800;
}
.side-checklist ul { list-style: none; padding: 0; margin: 0.5rem 0 1.1rem; }
.side-checklist ul li {
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--gray-300);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.side-checklist ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 800;
}
.side-checklist ul li strong { color: var(--white); }
.side-checklist .side-cta {
  display: inline-block;
  background: var(--gold-500);
  color: var(--navy-900);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.side-checklist .side-cta:hover { background: var(--gold-400); color: var(--navy-900); }

/* ===================== Footer ===================== */

.site-footer {
  background: var(--navy-900);
  color: var(--gray-300);
  padding: 2.5rem 0 1.5rem;
  margin-top: 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.55rem; font-size: 0.92rem; }
.site-footer ul li a { color: var(--gray-300); text-decoration: none; }
.site-footer ul li a:hover { color: var(--gold-400); }
.site-footer .footer-brand img {
  max-height: 44px;
  margin-bottom: 1.1rem;
  display: block;
}
.site-footer .footer-brand p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.responsible-row {
  border-top: 1px solid var(--navy-700);
  padding-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--gray-400);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2rem;
  margin-bottom: 1.4rem;
}
.responsible-row .age {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--gold-500);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}
.responsible-row a { color: var(--gray-200); text-decoration: underline; }
.responsible-row a:hover { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid var(--navy-700);
  padding-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer-bottom .licenses { display: flex; gap: 0.5rem; align-items: center; }
.footer-bottom .licenses span {
  font-size: 0.7rem;
  background: var(--navy-800);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-400);
}

/* Article inline links — clearly visible navy with gold underline */
.article p a:not(.cat-card):not(.author-link),
.article li a:not(.cat-card):not(.author-link),
.article td a:not(.cat-card):not(.author-link) {
  color: var(--navy-700);
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 600;
}
.article p a:not(.cat-card):not(.author-link):hover,
.article li a:not(.cat-card):not(.author-link):hover {
  color: var(--gold-700);
  text-decoration-color: var(--navy-700);
}

@media print {
  .header, .topbar, .sidebar, .site-footer { display: none; }
  body { font-size: 11pt; }
  .page-grid { grid-template-columns: 1fr; }
}
