/* ============================================================
   ATLAS GUIDE — RESOURCE PAGE  ·  "FIELD GUIDE" v3.0
   travel-hacks.css  ·  Requires global.css loaded first
   ------------------------------------------------------------
   Standalone stylesheet for long-form resource pages (hacks,
   gadgets, can-i, etc). Not dependent on country.css.
   Reuses the same jg-* naming and --ag-* token language as the
   rest of the site for visual consistency, but only contains
   the components this page actually uses.
   ============================================================ */

/* ============================================================
   0 · LOCAL TOKEN BRIDGE + PAGE SURFACE
   ============================================================ */
:root {
  --primary:        var(--ag-green-800, #1A3A2B);
  --primary-light:  var(--ag-green-600, #2E5A45);
  --primary-dark:   var(--ag-green-900, #122820);
  --accent:         var(--ag-gold-500, #C9A85C);

  --text:           var(--ag-ink, #20261F);
  --text-mid:       var(--ag-ink-mid, #4A5248);
  --text-light:     var(--ag-ink-light, #7A8177);

  --bg:             var(--ag-white, #FFFFFF);
  --bg-warm:        var(--ag-parchment, #F6F1E4);
  --bg-card:        var(--ag-white, #FFFFFF);

  --border:         rgba(26, 58, 43, 0.12);
  --border-warm:    rgba(201, 168, 92, 0.30);
  --hair:           rgba(26, 58, 43, 0.16);

  --header-h:   80px;
  --quicknav-h: 56px;

  --card-radius: 4px;
  --section-gap: 84px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:    0 2px 10px rgba(26,58,43,0.06);
  --shadow-md:    0 10px 30px rgba(26,58,43,0.12);
}

body {
  background:
    radial-gradient(1200px 600px at 100% -5%, rgba(201,168,92,0.06), transparent 60%),
    var(--bg-warm);
  font-family: var(--font-body);
  color: var(--text);
}

.jg-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   1 · HERO  — editorial split panel
   ============================================================ */
.jg-hero {
  --risk:        var(--ag-green-400, #4D9E72);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: stretch;
  background: var(--primary-dark);
  isolation: isolate;
  overflow: hidden;
}

.jg-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(116px, 15vh, 188px) clamp(26px, 5vw, 76px) clamp(40px, 7vh, 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    repeating-linear-gradient(0deg, transparent 0 63px, rgba(255,255,255,0.018) 63px 64px),
    radial-gradient(140% 120% at 0% 100%, rgba(201,168,92,0.10), transparent 55%),
    var(--primary-dark);
}
.jg-hero-content::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent) 18%, var(--accent) 82%, transparent);
  opacity: .5;
}

.jg-breadcrumb {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  font-size: 0.66rem; font-weight: 700;
  color: rgba(255,255,255,0.34);
  margin-bottom: clamp(22px, 4vh, 40px);
  text-transform: uppercase; letter-spacing: 0.16em;
}
.jg-breadcrumb a       { color: rgba(255,255,255,0.34); transition: color 0.2s; }
.jg-breadcrumb a:hover { color: var(--accent); }
.jg-breadcrumb span    { color: rgba(255,255,255,0.18); }

.jg-hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.jg-hero-badge::before { content: ''; width: 22px; height: 1px; background: var(--accent); }
.jg-badge-dot { display: none; }

.jg-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 4.5vw, 6rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.045em;
  color: #fff;
  margin: 0 0 26px;
  position: relative;
}
.jg-hero-title::after {
  content: attr(data-initial);
  position: absolute; right: -10px; bottom: -0.12em;
  font-size: 2.6em; font-weight: 700;
  color: rgba(255,255,255,0.025);
  pointer-events: none; user-select: none; line-height: 1; z-index: -1;
}

.jg-hero-tagline {
  font-size: clamp(0.92rem, 1.05vw, 1.06rem);
  color: rgba(255,255,255,0.66);
  font-weight: 400;
  max-width: 580px;
  line-height: 1.75;
  margin: 0 0 30px;
  padding-left: 18px;
  border-left: 2px solid var(--risk);
}

.jg-hero-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.jg-meta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 6px 13px; border-radius: 2px;
  transition: background 0.18s, color 0.18s, border-color .18s;
}
.jg-meta-pill:hover { background: rgba(255,255,255,0.10); color: #fff; border-color: var(--border-warm); }

.jg-hero-bg { position: relative; overflow: hidden; }
.jg-hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  display: block; filter: saturate(0.9) contrast(1.02);
}
.jg-hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(120deg, var(--primary-dark) 0%, rgba(13,33,24,0.35) 42%, transparent 72%),
    linear-gradient(0deg, rgba(13,33,24,0.55), transparent 40%);
}
.jg-hero-bg::after { content: ''; position: absolute; inset: 16px; pointer-events: none; border: 1px solid rgba(255,255,255,0.18); }
.jg-hero-photo-label { display: none; }

.jg-hero-badge   { animation: jg-rise .7s .00s var(--ease-out) both; }
.jg-hero-title   { animation: jg-rise .7s .05s var(--ease-out) both; }
.jg-hero-tagline { animation: jg-rise .7s .11s var(--ease-out) both; }
.jg-hero-meta    { animation: jg-rise .7s .17s var(--ease-out) both; }
@keyframes jg-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .jg-hero-badge,.jg-hero-title,.jg-hero-tagline,.jg-hero-meta { animation: none; } }

/* ============================================================
   2 · QUICK NAV
   ============================================================ */
.jg-quicknav {
  position: sticky;
  top: var(--header-h);
  z-index: 900;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair);
  border-top: 1px solid var(--hair);
  width: 100%;
}
.jg-quicknav-inner {
  display: flex; flex-wrap: nowrap; justify-content: center; gap: 0;
  max-width: 1320px; margin: 0 auto; padding: 0 clamp(12px, 2vw, 32px);
  overflow-x: auto; scrollbar-width: none;
}
.jg-quicknav-inner::-webkit-scrollbar { display: none; }
.jg-qnav-item {
  position: relative; flex: 0 0 auto;
  padding: 17px clamp(9px,1vw,15px);
  font-size: 0.74rem; font-weight: 600; color: var(--text-mid);
  white-space: nowrap; letter-spacing: 0.01em;
  transition: color .2s; border-bottom: 2px solid transparent;
}
.jg-qnav-item:hover { color: var(--primary); }
.jg-qnav-item.active { color: var(--primary-dark); border-bottom-color: var(--accent); }

/* ============================================================
   3 · BODY / LAYOUT
   ============================================================ */
.jg-body   { padding: 60px 0 96px; }
.jg-layout { display: grid; grid-template-columns: 1fr 326px; gap: 60px; align-items: start; }
.jg-main   { counter-reset: chapter; min-width: 0; }

/* ============================================================
   4 · SECTION HEADERS
   ============================================================ */
.jg-section {
  counter-increment: chapter;
  position: relative;
  margin-bottom: var(--section-gap);
  padding-bottom: var(--section-gap);
  border-bottom: 1px solid var(--hair);
}
.jg-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.jg-section-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ag-gold-700, #A9843C);
  margin-bottom: 18px; padding-top: 22px;
  border-top: 2px solid var(--primary-dark);
}
.jg-section-label::before {
  content: counter(chapter, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0;
  color: var(--primary-dark);
  background: var(--accent);
  width: 34px; height: 34px; margin-top: -2px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 2px; flex-shrink: 0;
}

.jg-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  font-weight: 700; line-height: 1.06; color: var(--text);
  letter-spacing: -0.03em; margin-bottom: 28px;
  max-width: 22ch;
}

/* ============================================================
   5 · PROSE
   ============================================================ */
.jg-prose p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; max-width: 70ch; }
.jg-prose p:last-child { margin-bottom: 0; }

.jg-section > .jg-prose:first-of-type > p:first-child {
  font-size: 1.18rem; color: var(--text); font-weight: 420; line-height: 1.74;
}
.jg-section > .jg-prose:first-of-type > p:first-child::first-letter {
  font-family: var(--font-display); font-weight: 700;
  font-size: 3.4em; line-height: 0.78;
  float: left; margin: 6px 12px 0 0; color: var(--primary);
}

/* ============================================================
   6 · TIP / CALLOUT BOX
   ============================================================ */
.jg-tip-box {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--primary-light);
  border-radius: var(--card-radius);
  padding: 20px 24px; margin-top: 26px;
  box-shadow: var(--shadow-sm);
}
.jg-tip-icon       { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.jg-tip-box strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.jg-tip-box div    { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
.jg-tip-box a      { color: var(--primary); font-weight: 700; }
.jg-tip-box a:hover{ color: var(--ag-gold-700, #A9843C); }

/* ============================================================
   7 · HIGHLIGHTS GRID
   ============================================================ */
.jg-highlights-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; margin-top: 34px; border: 1px solid var(--hair); border-radius: var(--card-radius); overflow: hidden; background: var(--bg); }
.jg-highlight-card {
  display: flex; align-items: flex-start; gap: 15px;
  padding: 22px 24px; border-right: 1px solid var(--hair); border-top: 1px solid var(--hair);
  transition: background .25s;
}
.jg-highlight-card:nth-child(-n+2) { border-top: none; }
.jg-highlight-card:nth-child(2n)   { border-right: none; }
.jg-highlight-card:hover { background: rgba(201,168,92,0.08); }
.jg-highlight-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }
.jg-highlight-body { display: flex; flex-direction: column; gap: 5px; }
.jg-highlight-body strong { font-size: 0.95rem; font-weight: 800; color: var(--text); }
.jg-highlight-body span   { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   8 · HACK / DESTINATION-STYLE CARDS
   ============================================================ */
.jg-dest-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin: 32px 0 0; counter-reset: dest; }
.jg-dest-card {
  counter-increment: dest;
  position: relative; background: var(--bg);
  border: 1px solid var(--hair); border-radius: var(--card-radius);
  padding: 26px; display: flex; gap: 18px; overflow: hidden;
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out), border-color .35s;
}
.jg-dest-card::after {
  content: counter(dest, decimal-leading-zero);
  position: absolute; top: 14px; right: 18px;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: rgba(26,58,43,0.08);
}
.jg-dest-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 20px; height: 20px;
  border-top: 2px solid var(--accent); border-left: 2px solid var(--accent);
  opacity: 0; transition: opacity .3s, transform .3s; transform: translate(4px,4px);
}
.jg-dest-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-warm); }
.jg-dest-card:hover::before { opacity: 1; transform: translate(0,0); }
.jg-dest-featured { grid-column: span 2; background: linear-gradient(180deg, var(--bg), rgba(201,168,92,0.06)); }
.jg-dest-emoji { font-size: 2rem; flex-shrink: 0; margin-top: 2px; filter: saturate(.9); }
.jg-dest-tag { font-size: 0.64rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ag-gold-700, #A9843C); margin-bottom: 7px; }
.jg-dest-body { min-width: 0; }
.jg-dest-body h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 12px; letter-spacing: -.01em; }
.jg-dest-featured .jg-dest-body h3 { font-size: 1.7rem; }
.jg-dest-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.74; margin-bottom: 16px; max-width: 64ch; }
.jg-dest-tips { display: flex; flex-wrap: wrap; gap: 7px; }
.jg-dest-tips span {
  font-size: 0.72rem; font-weight: 600; color: var(--primary);
  background: rgba(26,58,43,0.05); padding: 5px 12px; border-radius: 2px;
  border: 1px solid rgba(26,58,43,0.10);
}

/* ============================================================
   9 · RATING BARS (savings / effort indicators)
   ============================================================ */
.jg-rating-item { display: grid; grid-template-columns: 150px 1fr 68px; align-items: center; gap: 12px; margin-bottom: 14px; }
.jg-rating-item span   { font-size: 0.78rem; color: var(--text-mid); font-weight: 600; }
.jg-rating-item strong { font-size: 0.78rem; font-weight: 800; color: var(--primary); text-align: right; font-family: var(--font-display); }
.jg-rating-bar  { height: 4px; background: rgba(26,58,43,0.08); border-radius: 0; overflow: hidden; }
.jg-rating-fill { height: 100%; background: var(--ag-green-500, #3D8A5E); border-radius: 0; transition: width 1.1s var(--ease-out); }
.jg-fill-mid    { background: var(--accent); }

/* ============================================================
   10 · TOOLKIT / BOOKING GRID
   ============================================================ */
.jg-book-intro { font-size: 1.05rem; color: var(--text-mid); margin: 30px 0 18px; max-width: 70ch; line-height: 1.8; }
.jg-book-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.jg-book-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg); border: 1px solid var(--hair);
  border-radius: var(--card-radius); padding: 18px 20px; color: inherit;
  position: relative; overflow: hidden;
  transition: box-shadow .3s var(--ease-out), border-color .3s, transform .3s;
}
.jg-book-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease-out);
}
.jg-book-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-warm); transform: translateX(4px); }
.jg-book-card:hover::before { transform: scaleY(1); }
.jg-book-icon { font-size: 1.5rem; flex-shrink: 0; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; background: rgba(26,58,43,0.05); border: 1px solid rgba(26,58,43,0.10); border-radius: var(--card-radius); }
.jg-book-body { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.jg-book-body strong { display: block; font-size: 0.92rem; font-weight: 800; color: var(--text); }
.jg-book-body span { display: block; font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }
.jg-book-arrow { color: var(--ag-gold-600, #B8934A); font-size: 1.05rem; font-weight: 700; flex-shrink: 0; opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s; }
.jg-book-card:hover .jg-book-arrow { opacity: 1; transform: translateX(0); }
.jg-book-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary-light));
  border-color: var(--primary-dark);
}
.jg-book-card-featured .jg-book-body strong { color: #fff; }
.jg-book-card-featured .jg-book-body span { color: rgba(255,255,255,0.6); }
.jg-book-card-featured .jg-book-icon { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.jg-book-card-featured::before { background: var(--accent); }

/* ============================================================
   11 · PARTNER BUTTON (used in sidebar)
   ============================================================ */
.jg-partner-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; padding: 11px 22px;
  border-radius: var(--card-radius); font-size: 0.86rem; font-weight: 700;
  white-space: nowrap; border: 1px solid transparent;
  transition: background .3s, color .3s, transform .3s, box-shadow .3s;
}
.jg-partner-btn:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(201,168,92,0.32); }

/* ============================================================
   12 · SIDEBAR
   ============================================================ */
.jg-sidebar { position: sticky; top: calc(var(--header-h) + var(--quicknav-h) + 22px); display: flex; flex-direction: column; gap: 18px; }
.jg-sidebar-card { background: var(--bg); border: 1px solid var(--hair); border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.jg-sidebar-title {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent); background: var(--primary-dark); margin: 0; padding: 14px 18px;
  display: flex; align-items: center; gap: 9px;
}
.jg-sidebar-title::before { content: '◆'; color: var(--accent); font-size: 0.62rem; }
.jg-qf-list { display: flex; flex-direction: column; padding: 4px 0; }
.jg-qf-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 18px; border-bottom: 1px solid var(--hair); font-size: 0.8rem; }
.jg-qf-item:last-child { border-bottom: none; }
.jg-qf-item span { color: var(--text-mid); }
.jg-qf-item strong { font-weight: 700; color: var(--text); }
.jg-sidebar-links { display: flex; flex-direction: column; gap: 2px; padding: 10px; }
.jg-sidebar-link { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 2px; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); transition: background .2s, color .2s, transform .2s; }
.jg-sidebar-link:hover { background: rgba(26,58,43,0.05); color: var(--primary); transform: translateX(3px); }

/* ============================================================
   13 · CLOSING
   ============================================================ */
.jg-closing { background: var(--primary-dark); padding: 84px 0; position: relative; overflow: hidden; }
.jg-closing::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(0deg, transparent 0 47px, rgba(255,255,255,0.015) 47px 48px);
}
.jg-closing-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; position: relative; }
.jg-closing-text .jg-section-label { color: var(--accent); border-top-color: var(--accent); padding-top: 0; border-top: none; margin-bottom: 14px; }
.jg-closing-text .jg-section-label::before { background: var(--accent); color: var(--primary-dark); content: '✦'; font-size: .9rem; }
.jg-closing-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 2.9rem); font-weight: 700; color: #fff; margin-bottom: 18px; letter-spacing: -0.03em; }
.jg-closing-text p { font-size: 0.96rem; color: rgba(255,255,255,0.62); line-height: 1.85; max-width: 600px; margin-bottom: 15px; }
.jg-closing-cta { display: flex; flex-direction: column; gap: 11px; min-width: 220px; }
.jg-closing .btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 26px; border-radius: var(--card-radius); font-weight: 700; font-size: 0.9rem; text-align: center; transition: background .3s, color .3s, transform .3s, box-shadow .3s, border-color .3s; }
.jg-closing .btn-primary { background: var(--accent); color: var(--primary-dark); }
.jg-closing .btn-primary:hover { background: #E3CD97; transform: translateY(-1px); }
.jg-closing .btn-outline { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); background: transparent; }
.jg-closing .btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.5); }

/* ============================================================
   14 · RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .jg-hero { grid-template-columns: 1fr 300px; }
  .jg-layout { grid-template-columns: minmax(0, 1fr); }
  .jg-sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; order: -1; margin-bottom: 30px; }
}
@media (max-width: 900px) {
  .jg-dest-featured { grid-column: span 1; }
}
@media (max-width: 860px) {
  .jg-hero { grid-template-columns: 1fr; grid-template-rows: 200px auto; }
  .jg-hero-bg { grid-row: 1; }
  .jg-hero-content { grid-row: 2; padding: 36px clamp(20px,5vw,44px) 44px; }
  .jg-hero-content::before { display: none; }
  .jg-hero-title { font-size: clamp(3.6rem,13vw,6rem); }
  .jg-hero-title::after { display: none; }
  .jg-breadcrumb { margin-bottom: 18px; }
  .jg-hero-bg::after { inset: 10px; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; --section-gap: 60px; }
  .jg-sidebar { grid-template-columns: minmax(0, 1fr); }
  .jg-highlights-grid, .jg-dest-grid, .jg-book-grid { grid-template-columns: 1fr; }
  .jg-highlight-card { border-right: none !important; }
  .jg-closing-inner { grid-template-columns: 1fr; gap: 30px; }
  .jg-closing-cta { flex-direction: row; flex-wrap: wrap; min-width: 0; }
  .jg-quicknav { overflow: hidden; }
  .jg-quicknav-inner { overflow-x: auto; justify-content: flex-start; }
}
@media (max-width: 520px) {
  .jg-hero-title { font-size: clamp(3rem,16vw,4.6rem); }
  .jg-section-title { font-size: 1.85rem; }
  .jg-rating-item { grid-template-columns: 120px 1fr 56px; }
}

/* ── Ad slots (kept for parity with other pages) ── */
.ag-ad-slot { display: block; width: 100%; min-width: 300px; min-height: 90px; margin: 30px 0; text-align: center; box-sizing: border-box; }
.ag-ad-sidebar { min-height: 100px; }
.ag-ad-slot:empty, .ag-ad-sidebar:empty { display: none; min-height: 0; margin: 0; padding: 0; }