/* =====================================================
   SEWERYN ON THE MAP — main.css
   Design: "Cartographic Editorial"
   Child theme: blocksy-child
   ===================================================== */

/* ─────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────────────────── */
:root {
  /* Accent */
  --amber:      #D4A03A;
  --amber-soft: #FAF3E0;
  --amber-deep: #B8872E;
  --cyan:       #1E7A8C;
  --cyan-deep:  #165E6E;
  --cyan-soft:  #D6EEF2;

  /* Neutrals */
  --ink:        #141613;
  --ink-2:      #3A3A3C;
  --ink-3:      #636366;
  --ink-4:      #8E8E93;
  --ink-5:      #AEAEB2;
  --warm-gray:  #8A8370;
  --paper:      #F1EADB;
  --white:      #FFFFFF;
  --cream:      #FAF6EE;
  --rule:       #E5E5E0;

  /* Dark sections */
  --dark:      #141613;
  --dark-2:    #1E1E1A;
  --dark-card: #222220;

  /* Typography */
  --serif:         'Fraunces', Georgia, serif;
  --sans:          'Outfit', system-ui, sans-serif;
  --mono:          'Space Mono', 'Courier New', monospace;

  /* Border Radius — asymmetric by design */
  --r-xs:   8px;
  --r-sm:   12px;
  --r-md:   16px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* Easing */
  --ease:        cubic-bezier(.25, 1, .5, 1);
  --ease-out:    cubic-bezier(.0, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  /* Layout */
  --max-w:     1400px;
  --gutter:    48px;
  --hdr-h:     72px;
}

/* ─────────────────────────────────────────────────────
   2. RESET + BASE
   ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Override Blocksy body background */
.site { background: var(--paper); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }
ul, ol { list-style: none; }
svg { overflow: visible; }

/* ─────────────────────────────────────────────────────
   3. GRAIN OVERLAY (physical paper texture)
   ───────────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────────────────────
   4. LAYOUT UTILITIES
   ───────────────────────────────────────────────────── */
.sotm-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sotm-section { padding: 96px 0; }

/* Section header system */
.sotm-sh {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}

.sotm-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--cyan-deep);
  margin-bottom: 8px;
}

.sotm-section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.5px;
}
.sotm-section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.sotm-section-desc {
  font-size: 15px;
  color: var(--ink-4);
  line-height: 1.7;
  max-width: 420px;
  margin-top: 8px;
}

.sotm-view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.sotm-view-all:hover { border-color: var(--cyan); color: var(--cyan-deep); }

/* ─────────────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: none;
  transition: all .35s var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.btn-amber {
  color: var(--dark);
  background: var(--amber);
  box-shadow: 0 2px 16px rgba(212,160,58,.25);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,160,58,.35);
  color: var(--dark);
}

.btn-outline {
  color: var(--ink-2);
  background: transparent;
  border: 1.5px solid var(--rule);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

/* Hero variant: white text on dark/photo background */
.btn-outline--hero {
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-outline--hero:hover {
  color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 0 20px rgba(30,122,140,.22);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}
.btn-dark:hover { background: var(--cyan); color: #fff; }

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────
   6. TAG / BADGE PILLS
   ───────────────────────────────────────────────────── */
.tg {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  display: inline-block;
  white-space: nowrap;
}
.tg-c { color: var(--cyan-deep); background: var(--cyan-soft); }
.tg-a { color: var(--amber-deep); background: var(--amber-soft); }
.tg-n { color: var(--ink-3); background: var(--rule); }

/* Flag images from flagcdn.com */
.sotm-flag-img {
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}
.sotm-flag-wrap { display: inline-flex; align-items: center; }

/* ─────────────────────────────────────────────────────
   7. HEADER
   ───────────────────────────────────────────────────── */
.sotm-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hdr-h);
  transition: all .4s var(--ease);
}

.sotm-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245,244,240,.9);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(0,0,0,.05);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.sotm-header.is-scrolled::before { opacity: 1; }

/* Transparent on homepage hero */
.is-home .sotm-header { background: transparent; }
.is-home .sotm-header.is-scrolled { background: transparent; }

.sotm-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hdr-h);
  position: relative;
  z-index: 2;
}

/* Logo */
.sotm-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

/* Standalone logo image (header + footer) */
.sotm-logo-img {
  display: block;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Header logo: fixed height matching header */
.sotm-header .sotm-logo-img {
  height: 63px !important;
  width: auto !important;
  max-height: none !important;
}

/* Footer logo */
.sotm-footer .sotm-logo-img {
  height: 63px;
  width: auto;
}

/* Dual logo swap — higher specificity (.sotm-header + class) to beat base .sotm-logo-img */
.sotm-header .sotm-logo-img--dark-header  { display: block; }
.sotm-header .sotm-logo-img--light-header { display: none; }

.sotm-header.is-scrolled .sotm-logo-img--dark-header  { display: none; }
.sotm-header.is-scrolled .sotm-logo-img--light-header { display: block; }


/* Legacy pin + name (zachowane dla wstecznej kompatybilności) */
.sotm-logo-pin {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.sotm-logo-name { line-height: 1; }
.sotm-logo-name strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  display: block;
  letter-spacing: -.3px;
  color: var(--ink);
}
.sotm-logo-name span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}
.is-home .sotm-logo-name strong { color: #fff; }
.is-home .sotm-header.is-scrolled .sotm-logo-name strong { color: var(--ink); }

/* Nav */
.sotm-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.sotm-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  transition: all .2s;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  white-space: nowrap;
}
.sotm-nav-link:hover { background: rgba(0,0,0,.04); color: var(--ink); }

.is-home .sotm-nav-link { color: rgba(255,255,255,.85); }
.is-home .sotm-nav-link:hover { background: rgba(255,255,255,.12); color: #fff; }
.is-home .sotm-header.is-scrolled .sotm-nav-link { color: var(--ink-2); }
.is-home .sotm-header.is-scrolled .sotm-nav-link:hover { color: var(--ink); background: rgba(0,0,0,.04); }

.sotm-nav-link .chevron {
  width: 11px;
  height: 11px;
  opacity: .4;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.sotm-nav-item.is-open .chevron { transform: rotate(180deg); }

/* Active nav state */
.sotm-nav-link.is-active {
  color: var(--ink) !important;
  background: rgba(0,0,0,.06) !important;
  font-weight: 600;
}
.is-home .sotm-nav-link.is-active {
  color: #fff !important;
  background: rgba(255,255,255,.16) !important;
}
.is-home .sotm-header.is-scrolled .sotm-nav-link.is-active {
  color: var(--ink) !important;
  background: rgba(0,0,0,.06) !important;
}
/* Mobile active */
.sotm-mobile-link.is-active {
  color: var(--cyan-deep);
  font-weight: 600;
}

.sotm-nav-cta {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: var(--ink) !important;
  padding: 9px 22px !important;
  margin-left: 10px !important;
  border-radius: var(--r-pill);
  transition: background .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.sotm-nav-cta:hover { background: var(--cyan) !important; color: #fff !important; }

/* Hamburger (mobile) */
.sotm-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1002;
}
.sotm-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}
.is-home .sotm-hamburger span { background: #fff; }
.sotm-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sotm-hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sotm-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.sotm-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 1001;
  padding: 100px var(--gutter) 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.sotm-mobile-menu.is-open {
  display: flex;
  transform: translateX(0);
}
.sotm-mobile-link {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--serif);
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  display: block;
  text-decoration: none;
}
.sotm-mobile-link:last-child { border-bottom: none; }
.sotm-mobile-cta {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  margin-top: 20px;
  text-decoration: none;
  align-self: flex-start;
}

/* ─────────────────────────────────────────────────────
   8. MEGA MENU
   ───────────────────────────────────────────────────── */
.sotm-mega {
  position: absolute;
  top: var(--hdr-h);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: min(1140px, calc(100vw - 96px));
  background: var(--white);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.04);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 500;
}
.sotm-nav-item.is-open .sotm-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sotm-mega-inner { padding: 32px 40px 36px; }

.sotm-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 260px;
  gap: 32px;
}

.sotm-mega-label {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-5);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

.sotm-mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: var(--r-xs);
  transition: all .2s;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.sotm-mega-item:hover { background: var(--paper); transform: translateX(2px); }
.sotm-mega-flag {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
  width: 26px;
  height: 19px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.sotm-mega-flag img { object-fit: cover; width: 100%; height: 100%; }
.sotm-mega-name { flex: 1; }

.pill-badge {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  letter-spacing: .3px;
  margin-left: auto;
}
.pill-live { background: var(--cyan-soft); color: var(--cyan-deep); }
.pill-soon { background: var(--amber-soft); color: var(--amber-deep); }
.pill-wip  { background: rgba(120,80,220,.12); color: #7850dc; }

/* Featured card in mega menu */
.sotm-mega-feat {
  background: var(--dark);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 260px;
  height: 200px;
  flex-shrink: 0;
  align-self: start;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.sotm-mega-feat::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(30,122,140,.12), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(212,160,58,.08), transparent 60%);
}
.sotm-mega-feat > * { position: relative; z-index: 1; }
.sotm-mega-feat .tiny {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 8px;
  display: block;
}
.sotm-mega-feat h4 {
  font-family: var(--serif);
  font-size: 19px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
.sotm-mega-feat .go {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
}

/* ─────────────────────────────────────────────────────
   9. HERO — HOMEPAGE (fullscreen)
   ───────────────────────────────────────────────────── */
.sotm-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
}

.sotm-hero-bg {
  position: absolute;
  inset: 0;
}
.sotm-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sotm-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 0% 100%, rgba(20,20,22,.92) 0%, rgba(20,20,22,.5) 45%, transparent 75%),
    linear-gradient(to right, rgba(20,20,22,.3) 0%, transparent 60%);
}

.sotm-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sotm-hero-left {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px 0;
  max-width: 600px;
}

.sotm-hero-kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: sotmFadeIn .7s var(--ease) .3s forwards;
}
.sotm-hero-kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.sotm-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: sotmSlideUp .8s var(--ease) .4s forwards;
  transform: translateY(16px);
}
.sotm-hero h1 em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--amber), #F0B429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sotm-hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 400px;
  margin-bottom: 36px;
  font-weight: 400;
  opacity: 0;
  animation: sotmFadeIn .7s var(--ease) .55s forwards;
}

.sotm-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: sotmFadeIn .7s var(--ease) .65s forwards;
}

/* Stats sidebar (right side, on photo) */
.sotm-hero-aside {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: sotmFadeIn .7s var(--ease) .8s forwards;
}
/* Feature labels (right aside) */
.sotm-hero-feat { text-align: center; }
.sotm-hero-feat-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.88);
  line-height: 1;
}
.sotm-hero-feat-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  white-space: nowrap;
  letter-spacing: .2px;
}
/* Stronger vr separators in aside */
.sotm-hero-aside .vr {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.22);
}

/* Scroll cue */
.sotm-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: sotmFadeIn .7s var(--ease) 1.1s forwards;
}
.sotm-scroll-cue span {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.3);
}
.sotm-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: sotmScrollPulse 2s ease-in-out infinite;
}

@keyframes sotmFadeIn { to { opacity: 1; } }
@keyframes sotmSlideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes sotmScrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─────────────────────────────────────────────────────
   10. BENTO GRID — FEATURED POSTS
   ───────────────────────────────────────────────────── */
.sotm-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 300px 260px;
  gap: 16px;
}
.sotm-bento-hero { grid-row: 1 / 3; }

.sotm-bento-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s var(--ease);
  display: block;
  text-decoration: none;
}
.sotm-bento-card:hover { transform: scale(.98); }
.sotm-bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.sotm-bento-card:hover img { transform: scale(1.05); }
.sotm-bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,20,22,.78) 0%, rgba(20,20,22,.05) 55%);
}

.sotm-bento-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px;
}
.sotm-bento-hero .sotm-bento-body { padding: 40px; }

.sotm-bento-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cyan);
  background: rgba(30,122,140,.15);
  backdrop-filter: blur(8px);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}

.sotm-bento-card h3 {
  font-family: var(--serif);
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
}
.sotm-bento-hero h3 { font-size: clamp(22px, 2.5vw, 30px); }
.sotm-bento-side h3 { font-size: 19px; }

.sotm-bento-card p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
  line-height: 1.6;
  font-weight: 300;
}

/* ─────────────────────────────────────────────────────
   11. DESTINATIONS — DARK SECTION
   ───────────────────────────────────────────────────── */
.sotm-dest {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.sotm-dest::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 20%, rgba(30,122,140,.05) 0%, transparent 100%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(212,160,58,.04) 0%, transparent 100%);
  pointer-events: none;
}
.sotm-dest .sotm-container { position: relative; z-index: 1; }
.sotm-dest .sotm-section-title { color: #fff; }
.sotm-dest .sotm-section-desc { color: rgba(255,255,255,.45); line-height: 1.8; }
.sotm-dest .sotm-eyebrow { color: var(--amber); }
.sotm-dest .sotm-view-all { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.4); }
.sotm-dest .sotm-view-all:hover { border-color: var(--cyan); color: var(--cyan); }

.sotm-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 0;
}

.sotm-dest-label {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,.2);
  padding: 20px 0 4px;
}
.sotm-dest-label:first-child { padding-top: 0; }

.sotm-dest-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .35s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.sotm-dest-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(30,122,140,.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.sotm-dest-flag { display: inline-flex; align-items: center; line-height: 1; flex-shrink: 0; }
.sotm-dest-info { flex: 1; min-width: 0; }
.sotm-dest-name { font-size: 15px; font-weight: 600; color: #fff; }
.sotm-dest-sub { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 1px; font-weight: 400; }

.sotm-dest-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.sotm-dest-card:hover .sotm-dest-arrow { background: var(--cyan); transform: translateX(2px); }
.sotm-dest-arrow svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,.3);
  fill: none;
}
.sotm-dest-card:hover .sotm-dest-arrow svg { stroke: #fff; }

/* ─────────────────────────────────────────────────────
   12. POST CARDS GRID
   ───────────────────────────────────────────────────── */
.sotm-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sotm-post-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: all .4s var(--ease);
  text-decoration: none;
  color: inherit;
}
.sotm-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.05);
  border-color: transparent;
}

.sotm-post-card-img {
  overflow: hidden;
  aspect-ratio: 5/3;
  background: var(--rule);
}
.sotm-post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.sotm-post-card:hover .sotm-post-card-img img { transform: scale(1.05); }

.sotm-post-card-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sotm-post-card-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.sotm-post-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  flex: 1;
  transition: color .25s;
  color: var(--ink);
}
.sotm-post-card:hover h3 { color: var(--cyan-deep); }

.sotm-post-card-excerpt {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-4);
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sotm-post-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-5);
  letter-spacing: .5px;
}
.sotm-post-card-meta .dot {
  width: 3px;
  height: 3px;
  background: var(--rule);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────
   13. NEWSLETTER SECTION
   ───────────────────────────────────────────────────── */
.sotm-newsletter { background: var(--cream); }

.sotm-newsletter-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.sotm-newsletter-box h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--ink);
}
.sotm-newsletter-box h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.sotm-newsletter-desc {
  font-size: 15px;
  color: var(--ink-4);
  margin-bottom: 28px;
  line-height: 1.6;
}

.sotm-newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}
.sotm-newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--rule);
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  background: var(--white);
  transition: border-color .3s;
  color: var(--ink);
}
.sotm-newsletter-form input:focus { border-color: var(--cyan); }
.sotm-newsletter-form button {
  padding: 13px 24px;
  border: none;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s var(--ease);
  white-space: nowrap;
}
.sotm-newsletter-form button:hover { background: var(--cyan); }
.sotm-newsletter-notice {
  font-size: 12px;
  color: var(--ink-5);
  margin-top: 14px;
  font-family: var(--mono);
}

/* ─────────────────────────────────────────────────────
   14. FOOTER
   ───────────────────────────────────────────────────── */
.sotm-footer {
  background: var(--dark);
  padding: 64px 0 28px;
}

.sotm-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 20px;
}

.sotm-footer-about-text {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: 8px;
  max-width: 260px;
}

/* Footer logo */
.sotm-footer .sotm-logo-name strong { color: #fff; }
.sotm-footer .sotm-logo-name span { color: rgba(255,255,255,.3); }

.sotm-footer-col h6 {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 16px;
}

.sotm-footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
  transition: all .2s;
  text-decoration: none;
}
.sotm-footer-col a:hover { color: var(--cyan); transform: translateX(3px); }

.sotm-footer-col a.sotm-footer-all-dest {
  margin-top: 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
}
.sotm-footer-col a.sotm-footer-all-dest:hover { color: var(--amber-deep); }

.sotm-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 11px;
  color: rgba(255,255,255,.15);
  font-family: var(--mono);
  letter-spacing: .5px;
}

/* ─────────────────────────────────────────────────────
   15. COUNTRY LANDING PAGE
   ───────────────────────────────────────────────────── */
.sotm-country-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-top: var(--hdr-h);
}

.sotm-country-hero-bg {
  position: absolute;
  inset: 0;
}
.sotm-country-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.sotm-country-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--dark) 0%, rgba(20,20,22,.5) 40%, rgba(20,20,22,.15) 100%);
}

.sotm-country-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px var(--gutter);
  width: 100%;
}

.sotm-country-flag { display: block; margin-bottom: 12px; line-height: 1; }

.sotm-country-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: .95;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sotm-country-sub {
  font-size: 16px;
  color: rgba(255,255,255,.45);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
}

.sotm-country-stats {
  display: flex;
  gap: 36px;
  margin-top: 24px;
}
.sotm-country-stat-n {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--amber);
}
.sotm-country-stat-l {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* Pillar navigation */
.sotm-pillar-nav {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: var(--hdr-h);
  z-index: 100;
}
.sotm-pillar-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sotm-pillar-nav-inner::-webkit-scrollbar { display: none; }

.sotm-pillar-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-4);
  padding: 16px 14px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sotm-pillar-item:hover { color: var(--ink); }
.sotm-pillar-item.is-active { color: var(--cyan-deep); border-color: var(--cyan); font-weight: 600; }

/* Breadcrumbs on dark hero overlay */
.sotm-breadcrumbs--onhero {
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.sotm-breadcrumbs--onhero a {
  color: rgba(255,255,255,.65);
  font-weight: 600;
}
.sotm-breadcrumbs--onhero a:hover { color: #fff; }
.sotm-breadcrumbs--onhero .sep { opacity: .2; }

/* Eyebrow-as-link (back navigation) */
a.sotm-eyebrow {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity .15s;
}
a.sotm-eyebrow:hover { opacity: .7; }

/* ─────────────────────────────────────────────────────
   16. SINGLE POST
   ───────────────────────────────────────────────────── */
.sotm-post-header {
  padding: 104px 0 36px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.sotm-post-header-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Breadcrumbs */
.sotm-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-5);
  margin-bottom: 20px;
  font-family: var(--mono);
  letter-spacing: .3px;
  flex-wrap: wrap;
}
.sotm-breadcrumbs a { color: var(--cyan-deep); font-weight: 700; text-decoration: none; }
.sotm-breadcrumbs a:hover { color: var(--cyan); }
.sotm-breadcrumbs .sep { opacity: .3; }

.sotm-post-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sotm-post-header-inner h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 20px;
  color: var(--ink);
}

.sotm-author-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-4);
}
.sotm-author-bar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan-soft);
}
.sotm-author-bar strong { color: var(--ink); }
.sotm-author-bar .dot {
  width: 3px;
  height: 3px;
  background: var(--rule);
  border-radius: 50%;
}

/* Post cover image */
.sotm-post-cover {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.sotm-post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article content */
.sotm-article {
  max-width: 700px;
  margin: 52px auto;
  padding: 0 var(--gutter);
}

.sotm-article p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-2);
  margin-bottom: 22px;
}

/* Lead — first paragraph stands out */
.sotm-article > p:first-of-type {
  font-size: 18.5px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 28px;
}

.sotm-article h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  margin: 52px 0 14px;
  position: relative;
  padding-left: 18px;
  color: var(--ink);
}
.sotm-article h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: calc(100% - 12px);
  background: var(--amber);
  border-radius: 2px;
}

.sotm-article h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 10px;
  color: var(--ink);
}

.sotm-article ul, .sotm-article ol {
  margin-bottom: 22px;
  padding-left: 24px;
}
.sotm-article ul { list-style: disc; }
.sotm-article ol { list-style: decimal; }
.sotm-article li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.sotm-article a {
  color: var(--cyan-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sotm-article a:hover { color: var(--cyan); }

/* "Przyda Ci się też" — internal link block in article body */
.sotm-also-block {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 18px 22px;
  margin: 36px 0;
}
.sotm-also-block > p:first-child {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-5);
  margin-bottom: 10px;
}
.sotm-also-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.sotm-also-block li {
  position: relative;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  padding-left: 18px;
  margin-bottom: 8px;
}
.sotm-also-block li:last-child { margin-bottom: 0; }
.sotm-also-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--cyan-deep);
  font-size: 12px;
}
.sotm-also-block a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
  transition: color .15s, border-color .15s;
}
.sotm-also-block a:hover {
  color: var(--cyan-deep);
  border-color: var(--cyan);
}

/* Images in article */
.sotm-article img, .sotm-article .wp-image {
  width: 100%;
  border-radius: var(--r-md);
  margin: 28px 0;
}

/* Callout box */
.sotm-callout {
  background: var(--cyan-soft);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* YouTube embed */
.sotm-article .wp-block-embed-youtube,
.sotm-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  margin: 28px 0;
}
.sotm-article .wp-block-embed-youtube iframe,
.sotm-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ section */
.sotm-faq-section h2.sotm-faq-title {
  margin-bottom: 24px;
}
.sotm-faq-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.sotm-faq-question {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.sotm-faq-question::before { display: none; }
.sotm-faq-answer {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-3);
}

/* Related posts */
.sotm-related {
  background: var(--paper);
  padding: 64px 0;
  border-top: 1px solid var(--rule);
}
.sotm-related-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-5);
  margin-bottom: 6px;
}
.sotm-related h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 32px;
  color: var(--ink);
}

/* Blockquote */
.sotm-article blockquote {
  border-left: 3px solid var(--amber);
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.7;
}
.sotm-article blockquote p {
  margin-bottom: 0;
  font-size: inherit;
  color: inherit;
  font-style: inherit;
  line-height: inherit;
}

/* Figcaption */
.sotm-article figcaption {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-5);
  text-align: center;
  margin-top: -16px;
  margin-bottom: 28px;
  letter-spacing: .3px;
}

/* HR */
.sotm-article hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 44px 0;
}

/* Inline code */
.sotm-article code {
  font-family: var(--mono);
  font-size: 13.5px;
  background: var(--paper);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink-2);
  word-break: break-word;
}

/* Strong / em in article */
.sotm-article strong { color: var(--ink); font-weight: 700; }
.sotm-article em { font-style: italic; color: var(--ink-2); }

/* FAQ section — override article h2 left-bar for FAQ title */
.sotm-article .sotm-faq-section { margin: 48px 0 0; }
.sotm-article .sotm-faq-section h2.sotm-faq-title {
  padding-left: 0;
  margin-bottom: 24px;
}
.sotm-article .sotm-faq-section h2.sotm-faq-title::before { display: none; }

/* Pillar archive — subtitle under h1 */
.sotm-archive-subtitle {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-5);
  letter-spacing: .5px;
  margin-top: 8px;
  text-transform: uppercase;
}

/* Pillar nav — count badge on each item */
.sotm-pillar-count-badge {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  background: var(--rule);
  color: var(--ink-4);
  padding: 1px 5px;
  border-radius: var(--r-pill);
  margin-left: 4px;
  vertical-align: middle;
}
.sotm-pillar-item.is-active .sotm-pillar-count-badge {
  background: var(--cyan-soft);
  color: var(--cyan-deep);
}

/* Newsletter placeholder in single post */
.sotm-newsletter-placeholder {
  background: var(--cream);
  border: 1px dashed var(--rule);
  border-radius: var(--r-md);
  padding: 40px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 48px auto;
  max-width: 700px;
}

/* Cluster navigation block */
.sotm-cluster-nav {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.sotm-cluster-nav-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-5);
  margin: 0 auto 12px;
  max-width: 700px;
  padding: 0 var(--gutter);
}
.sotm-cluster-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sotm-cluster-link {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.sotm-cluster-link:hover {
  border-color: var(--amber);
  background: var(--amber-soft);
}
.sotm-cluster-link-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--ink-5);
  line-height: 1;
}
.sotm-cluster-link-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.35;
}
.sotm-cluster-link--section {
  background: var(--white);
}
.sotm-cluster-link--section:hover {
  border-color: var(--cyan);
  background: var(--cyan-soft);
}
.sotm-cluster-link--section .sotm-cluster-link-title {
  color: var(--ink);
  font-weight: 700;
}
.sotm-cluster-link--post {
  border-style: dashed;
}
.sotm-cluster-link--post .sotm-cluster-link-title {
  font-weight: 400;
  font-size: 12.5px;
  color: var(--ink-3);
}

/* ─────────────────────────────────────────────────────
   17. BLOG / ARCHIVE PAGE
   ───────────────────────────────────────────────────── */

/* Blog hero — home.php + archive.php else branch */
.sotm-blog-hero {
  background: var(--white);
  padding: calc(var(--hdr-h) + 52px) 0 52px;
  border-bottom: 1px solid var(--rule);
}
.sotm-blog-hero .sotm-eyebrow {
  margin-bottom: 12px;
}
.sotm-blog-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 14px;
}
.sotm-blog-hero-desc {
  font-size: 16px;
  color: var(--ink-4);
  max-width: 500px;
  line-height: 1.7;
}

/* Blog hero with photo background */
.sotm-blog-hero--photo {
  position: relative;
  background-image: var(--blog-hero-bg);
  background-size: cover;
  background-position: center;
  border-bottom: none;
  padding: calc(var(--hdr-h) + 80px) 0 80px;
}
.sotm-blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,16,.55) 0%, rgba(14,14,16,.7) 100%);
}
.sotm-blog-hero--photo .sotm-container { position: relative; z-index: 1; }
.sotm-blog-hero--photo .sotm-eyebrow  { color: var(--cyan); }
.sotm-blog-hero--photo h1             { color: #fff; }
.sotm-blog-hero--photo .sotm-blog-hero-desc { color: rgba(255,255,255,.7); }

/* Georgia section — reduced top padding to bridge from blog hero */
.sotm-georgia-section {
  padding-top: 48px;
  padding-bottom: 0;
}

/* Georgia card — full-width card z overlay */
.sotm-georgia-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 340px;
  text-decoration: none;
  cursor: pointer;
  background: var(--dark);
}
.sotm-georgia-card:hover .sotm-georgia-card-bg img {
  transform: scale(1.04);
}

/* Tło zdjęcie */
.sotm-georgia-card-bg {
  position: absolute;
  inset: 0;
}
.sotm-georgia-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .9s var(--ease);
}
.sotm-georgia-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 0% 100%, rgba(20,20,22,.96) 0%, rgba(20,20,22,.65) 38%, transparent 68%),
    linear-gradient(to right, rgba(20,20,22,.35) 0%, transparent 55%);
}

/* Ciemna karta bez zdjęcia */
.sotm-georgia-card--dark {
  background: var(--dark);
}
.sotm-georgia-card--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 5% 95%, rgba(212,160,58,.13) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 85% 15%, rgba(30,122,140,.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Treść karty */
.sotm-georgia-card-body {
  position: relative;
  z-index: 2;
  padding: 52px 56px;
  max-width: 60%;
}
.sotm-georgia-eyebrow {
  color: var(--amber) !important;
  margin-bottom: 14px;
}
.sotm-georgia-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}
.sotm-georgia-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 400px;
  margin-bottom: 28px;
}
.sotm-georgia-cta {
  /* span działający wizualnie jak przycisk */
  pointer-events: none;
}

/* Blog posts section — wyrównany spacing po karcie Gruzji */
.sotm-blog-posts-section {
  padding-top: 80px;
}

/* Breadcrumbs on archive pages */
.sotm-breadcrumbs--archive {
  padding-top: calc(var(--hdr-h) + 20px);
  padding-bottom: 0;
  font-size: 13px;
  color: var(--ink-5);
}

/* Empty state */
.sotm-empty-state {
  text-align: center;
  padding: 64px 24px;
}
.sotm-empty-state-text {
  font-size: 16px;
  color: var(--ink-4);
  margin-bottom: 20px;
}
.sotm-empty-state-back {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--ink-3);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.sotm-empty-state-back:hover {
  color: var(--ink);
  border-color: var(--amber);
}

/* Komunikat o braku wpisów */
.sotm-no-posts {
  text-align: center;
  color: var(--ink-4);
  font-family: var(--mono);
  font-size: 13px;
  padding: 64px 0;
}

/* Pillar archive header */
.sotm-archive-header {
  background: var(--white);
  padding: calc(var(--hdr-h) + 52px) 0 52px;
  border-bottom: 1px solid var(--rule);
}
.sotm-archive-header .sotm-eyebrow { margin-bottom: 14px; }
.sotm-archive-header h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 4px;
}
.sotm-archive-header p {
  font-size: 15px;
  color: var(--ink-4);
  max-width: 460px;
}

/* Pillar archive — contextual country line under H1 */
.sotm-archive-country-line {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--ink-5);
  margin-bottom: 14px;
}

/* Archive section count */
.sotm-archive-subtitle { margin-top: 10px; }

/* ── Responsive */
@media (max-width: 1024px) {
  .sotm-georgia-card-body { max-width: 72%; padding: 44px 44px; }
}
@media (max-width: 768px) {
  .sotm-georgia-section { padding-top: 32px; }
  .sotm-georgia-card { min-height: 400px; align-items: flex-end; }
  .sotm-georgia-card-body {
    max-width: 100%;
    padding: 36px 24px;
  }
  .sotm-blog-posts-section { padding-top: 56px; }
}

/* ─────────────────────────────────────────────────────
   18. STATIC PAGES (O mnie, Sprzęt, Zacznij, Współpraca)
   ───────────────────────────────────────────────────── */
.sotm-page-hero {
  padding: calc(var(--hdr-h) + 64px) 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.sotm-page-hero .sotm-eyebrow { margin-bottom: 12px; }
.sotm-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 16px;
}
.sotm-page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}
.sotm-page-hero p {
  font-size: 17px;
  color: var(--ink-3);
  max-width: 520px;
  line-height: 1.7;
}

.sotm-page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--gutter);
}
.sotm-page-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.sotm-page-content h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  margin: 48px 0 14px;
  color: var(--ink);
}

/* Gear cards */
.sotm-gear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.sotm-gear-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .3s var(--ease);
}
.sotm-gear-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
  transform: translateY(-2px);
}
.sotm-gear-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.sotm-gear-card p { font-size: 13.5px; color: var(--ink-4); line-height: 1.6; margin: 0; }
.sotm-gear-card .sotm-affiliate-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber-deep);
  background: var(--amber-soft);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: all .25s;
}
.sotm-gear-card .sotm-affiliate-btn:hover { background: var(--amber); color: var(--dark); }

/* ─────────────────────────────────────────────────────
   19. PAGINATION
   ───────────────────────────────────────────────────── */
.sotm-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 48px 0;
}
.sotm-pagination a,
.sotm-pagination span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-xs);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  border: 1px solid var(--rule);
  transition: all .25s;
  text-decoration: none;
}
.sotm-pagination a:hover { border-color: var(--cyan); color: var(--cyan-deep); }
.sotm-pagination .current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ─────────────────────────────────────────────────────
   20. BLOCKSY OVERRIDES
   ───────────────────────────────────────────────────── */

/* Hide Blocksy default header when our custom header.php is active */
#header { display: none; }

/* Reset Blocksy container constraints */
.ct-container, .ct-container-lg { max-width: none; padding: 0; }

/* Content area should start below our fixed header */
.site-content, #content { padding-top: 0; }

/* ─────────────────────────────────────────────────────
   21. RESPONSIVE — TABLET (≤ 1024px)
   ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --gutter: 32px;
  }

  .sotm-mega-grid { grid-template-columns: 1fr 1fr; }
  .sotm-mega-feat { display: none; } /* hide featured card on tablet */

  .sotm-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px;
  }
  .sotm-bento-hero { grid-column: 1 / -1; grid-row: 1; }

  .sotm-posts-grid { grid-template-columns: repeat(2, 1fr); }

  .sotm-dest-grid { grid-template-columns: repeat(2, 1fr); }

  .sotm-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ─────────────────────────────────────────────────────
   22. RESPONSIVE — MOBILE (≤ 768px)
   ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --hdr-h:  64px;
  }

  /* Header */
  .sotm-nav { display: none; }
  .sotm-hamburger { display: flex; }

  /* Hero */
  .sotm-hero-left { flex: none; width: 100%; padding: 100px 0 80px; }
  .sotm-hero-aside { display: none; }
  .sotm-hero h1 { font-size: clamp(38px, 9vw, 54px); }

  /* Bento */
  .sotm-bento {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 220px 220px;
  }
  .sotm-bento-hero { grid-column: 1; grid-row: 1; }

  /* Sections */
  .sotm-section { padding: 64px 0; }
  .sotm-sh { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Posts grid */
  .sotm-posts-grid { grid-template-columns: 1fr; }

  /* Destinations */
  .sotm-dest-grid { grid-template-columns: 1fr; }

  /* Footer */
  .sotm-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sotm-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Country hero */
  .sotm-country-stats { gap: 20px; flex-wrap: wrap; }

  /* Newsletter */
  .sotm-newsletter-form { flex-direction: column; }

  /* Mega menu — hide on mobile, use mobile drawer instead */
  .sotm-mega { display: none; }

  /* Gear grid */
  .sotm-gear-grid { grid-template-columns: 1fr; }

  /* Article */
  .sotm-article { padding: 0 var(--gutter); }
  .sotm-post-header-inner { padding: 0 var(--gutter); }
}

/* ─────────────────────────────────────────────────────
   23. FOCUS / ACCESSIBILITY
   ───────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--gutter);
  z-index: 9999;
  background: var(--cyan);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--r-xs) var(--r-xs);
  font-weight: 700;
  font-size: 13px;
  transition: top .2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ─────────────────────────────────────────────────────
   23b. SCROLL ANIMATION CLASSES (via IntersectionObserver)
   ───────────────────────────────────────────────────── */
.sotm-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.sotm-animate.sotm-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile section label in drawer */
.sotm-mobile-section { margin: 8px 0; }
.sotm-mobile-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-5);
  padding: 16px 0 4px;
  display: block;
}
.sotm-mobile-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
  border: none;
  padding: 12px 0;
  cursor: pointer;
  color: var(--ink-2);
  width: 100%;
}
.sotm-mobile-close svg { width: 24px; height: 24px; }

.sotm-mobile-link--sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: none;
  color: var(--ink-3);
}
.sotm-mobile-link--sub:hover { color: var(--cyan-deep); }

/* Start page cat hover */
.sotm-start-cat:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

/* ─────────────────────────────────────────────────────
   24. PRINT
   ───────────────────────────────────────────────────── */
@media print {
  .sotm-header, .sotm-footer, .sotm-newsletter, body::after { display: none !important; }
  .sotm-article { max-width: 100%; margin: 0; }
}

/* ─────────────────────────────────────────────────────
   25. PAGE: O MNIE
   ───────────────────────────────────────────────────── */

/* 1 — Intro (dark, split) */
.sotm-about-intro {
  min-height: 72vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--hdr-h);
}

/* Background radial glow (identical language to destinations section) */
.sotm-about-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 5% 95%, rgba(212,160,58,.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 10%, rgba(30,122,140,.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Right-side photo panel */
.sotm-about-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  z-index: 0;
}
.sotm-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
/* Gradient blending left edge into dark bg */
.sotm-about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--dark) 0%,
    rgba(20,20,22,.55) 28%,
    rgba(20,20,22,.1) 60%,
    transparent 100%
  );
}
/* Amber vertical accent line at blend boundary */
.sotm-about-photo::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 2px;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--amber) 35%,
    var(--amber) 65%,
    transparent 100%
  );
}
/* Empty state — subtle placeholder atmosphere */
.sotm-about-photo--empty {
  background: linear-gradient(
    135deg,
    rgba(212,160,58,.06) 0%,
    transparent 60%
  );
  border-left: 1px solid rgba(212,160,58,.08);
}

/* ─────────────────────────────────────────────────────
   26. BLOG HUB — /blog/ (home.php)
   ───────────────────────────────────────────────────── */

/* ── A. Hero dark variant ── */
.sotm-blog-hero--dark {
  background-color: var(--dark);
  border-bottom-color: transparent;
}
.sotm-blog-hero--dark .sotm-eyebrow { color: var(--amber); }
.sotm-blog-hero--dark h1             { color: #fff; }
.sotm-blog-hero--dark .sotm-blog-hero-desc { color: rgba(255,255,255,.65); }

/* Hero CTA row */
.sotm-blog-hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── B. Featured country section ── */
.sotm-featured-section {
  background: var(--paper);
  padding-top: 72px;
  padding-bottom: 72px;
}

.sotm-featured-country-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}
.sotm-featured-country-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 90% 50%, rgba(30,122,140,.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(212,160,58,.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Left column: transparent on dark card — override conflicting rule from page-destynacje.php */
.sotm-featured-section .sotm-featured-country {
  position: relative;
  z-index: 1;
  background: transparent;
}

.sotm-featured-country-eyebrow {
  color: var(--amber) !important;
  margin-bottom: 14px;
}

.sotm-featured-country-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 18px;
}

.sotm-featured-country-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 440px;
  margin-bottom: 28px;
}

.sotm-featured-country-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.sotm-featured-country-flag {
  border-radius: var(--r-xs);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  line-height: 0;
}
.sotm-featured-country-flag img {
  display: block;
  width: 80px;
  height: 60px;
  object-fit: cover;
}

.sotm-featured-country-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.2px;
}

.sotm-featured-country-stats {
  display: flex;
  gap: 28px;
}

.sotm-featured-country-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.sotm-featured-country-stat-value {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.sotm-featured-country-stat-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.35);
}

/* ── C. Countries section ── */
.sotm-countries-section {
  background: var(--white);
}

.sotm-countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Light variant of .sotm-dest-card — overrides dark defaults */
.sotm-dest-card--light {
  background: var(--cream);
  border-color: var(--rule);
}
.sotm-dest-card--light:hover {
  background: var(--white);
  border-color: rgba(30,122,140,.35);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.sotm-dest-card--light .sotm-dest-name  { color: var(--ink); }
.sotm-dest-card--light .sotm-dest-sub   { color: var(--ink-4); }
.sotm-dest-card--light .sotm-dest-arrow {
  background: rgba(0,0,0,.05);
}
.sotm-dest-card--light .sotm-dest-arrow svg { stroke: var(--ink-4); }
.sotm-dest-card--light:hover .sotm-dest-arrow {
  background: var(--cyan);
  transform: translateX(2px);
}
.sotm-dest-card--light:hover .sotm-dest-arrow svg { stroke: #fff; }

/* ── D. Topics section ── */
.sotm-topic-section {
  background: var(--paper);
}

.sotm-topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sotm-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--rule);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  transition: all .22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.sotm-topic-pill:hover {
  border-color: var(--cyan);
  color: var(--cyan-deep);
  background: var(--cyan-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(30,122,140,.12);
}

.sotm-topic-pill-icon { font-size: 15px; line-height: 1; }

/* ── F. Empty hub state ── */
.sotm-empty-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 72px 20px;
}

.sotm-empty-hub-icon {
  width: 48px;
  height: 48px;
  color: var(--ink-5);
}

.sotm-empty-hub-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -.3px;
}

.sotm-empty-hub-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-4);
  max-width: 300px;
}

/* ── Responsive — Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  .sotm-featured-country-grid {
    grid-template-columns: 1fr 260px;
    gap: 40px;
    padding: 44px 44px;
  }
  .sotm-countries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive — Mobile ≤ 768px ── */
@media (max-width: 768px) {
  .sotm-blog-hero-btns { flex-direction: column; align-items: flex-start; gap: 10px; }

  .sotm-featured-section { padding-top: 48px; padding-bottom: 48px; }
  .sotm-featured-country-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px;
  }
  .sotm-featured-country-meta { flex-direction: row; justify-content: flex-start; gap: 24px; text-align: left; }
  .sotm-featured-country-stats { gap: 20px; }

  .sotm-countries-grid { grid-template-columns: 1fr; }

  .sotm-topic-pills { gap: 8px; }
  .sotm-topic-pill  { padding: 10px 16px; font-size: 13px; }
}

/* Text block */
.sotm-about-intro-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 88px var(--gutter) 88px;
}
.sotm-about-intro-text {
  max-width: 560px;
}

/* Eyebrow — amber variant, like destinations */
.sotm-about-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--amber);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sotm-about-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

/* H1 — 3 lines, last in italic amber */
.sotm-about-h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6.5vw, 84px);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 32px;
}
.sotm-about-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
  /* Remove gradient text (plain amber, more intimate than homepage) */
  background: none;
  -webkit-text-fill-color: var(--amber);
}

/* Lead paragraph */
.sotm-about-intro-lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  max-width: 500px;
  font-weight: 400;
}

/* 2 — Body: prose + sidebar */
.sotm-about-body {
  background: var(--paper);
}

.sotm-about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: start;
}

/* Prose */
.sotm-about-prose {
  max-width: 660px;
}

.sotm-about-para-eyebrow {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan-deep);
  display: block;
  margin-bottom: 18px;
}

.sotm-about-prose p {
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.sotm-about-prose p:last-child { margin-bottom: 0; }

/* Pull quote — amber border accent */
.sotm-about-pull {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  border: none;
  border-left: 3px solid var(--amber);
  padding: 2px 0 2px 24px;
  margin: 36px 0;
  letter-spacing: -.3px;
}

/* Sidebar pillars */
.sotm-about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: calc(var(--hdr-h) + 40px);
}

.sotm-about-pillar {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 22px 22px 20px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.sotm-about-pillar:hover {
  border-color: rgba(212,160,58,.5);
  box-shadow: 0 4px 20px rgba(212,160,58,.07);
}

.sotm-about-pillar-label {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber-deep);
  margin-bottom: 9px;
}

.sotm-about-pillar-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0;
}

/* 3 — CTA close */
.sotm-about-cta {
  background: var(--cream);
  text-align: center;
}

.sotm-about-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.sotm-about-cta .sotm-eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}

.sotm-about-cta-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.5px;
  color: var(--ink);
  margin-bottom: 12px;
}
.sotm-about-cta-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.sotm-about-cta-sub {
  font-size: 15px;
  color: var(--ink-4);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── Responsive: tablet */
@media (max-width: 1024px) {
  .sotm-about-photo { width: 42%; }

  .sotm-about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sotm-about-pillars {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    gap: 12px;
  }
  .sotm-about-pillar {
    flex: 1 1 180px;
  }
}

/* ── Responsive: mobile */
@media (max-width: 768px) {
  .sotm-about-photo { display: none; }
  .sotm-about-intro {
    min-height: auto;
  }
  .sotm-about-intro-inner {
    padding: 72px var(--gutter) 64px;
  }
  .sotm-about-h1 {
    font-size: clamp(46px, 12vw, 62px);
  }
  .sotm-about-intro-lead {
    font-size: 15.5px;
  }
  .sotm-about-grid { grid-template-columns: 1fr; }
  .sotm-about-pillars {
    flex-direction: column;
    position: static;
  }
  .sotm-about-prose p { font-size: 16px; }
  .sotm-about-cta-title { line-height: 1.2; }
}

/* ─────────────────────────────────────────────────────
   26. SINGLE POST v2 — mockup-aligned layout
   Uses ONLY global theme tokens: var(--serif), var(--sans), var(--mono)
   ───────────────────────────────────────────────────── */

/* Layout/color tokens for article v2 (no new fonts) */
.sotm-post-v2 {
  --text:        var(--ink);
  --text-soft:   var(--ink-3);
  --text-faint:  var(--ink-5);
  --bg-article:  var(--paper);
  --line:        var(--rule);
  --card-shadow: 0 12px 34px rgba(16,24,40,.05);
  --card-radius: var(--r-xl);
}

/* ── HERO ─────────────────────────────────────────────── */
.sotm-article-hero {
  padding: calc(var(--hdr-h) + 32px) 0 36px;
  background: var(--bg-article);
}
.sotm-article-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: stretch;
}

/* Left card */
.sotm-hero-copy {
  background: linear-gradient(180deg, #fff 0%, #FCFCFB 100%);
  border: 1px solid rgba(15,17,22,.05);
  border-radius: var(--card-radius);
  padding: 40px;
  box-shadow: 0 22px 60px rgba(16,24,40,.08);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sotm-hero-copy-top { flex: 1; }

/* Eyebrow */
.sotm-article-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  margin-bottom: 4px;
}
.sotm-article-eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--amber);
  border-radius: 999px;
  flex-shrink: 0;
}
.sotm-article-eyebrow:hover { color: var(--amber); }

/* Breadcrumbs */
.sotm-article-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--text-faint);
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--sans);
}
.sotm-article-crumbs a { color: var(--text-soft); text-decoration: none; }
.sotm-article-crumbs a:hover { color: var(--text); }
.sotm-article-crumbs .sep { opacity: .4; }

/* H1 */
.sotm-post-v2 h1 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.03em;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: .97;
  margin: 18px 0 20px;
  color: var(--text);
}

/* Lead */
.sotm-article-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 0 24px;
  font-family: var(--sans);
}

/* Meta bar */
.sotm-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
}
.sotm-article-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--line);
  border-radius: 50%;
}

/* Right side */
.sotm-hero-side {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 20px;
}

/* Cover image panel */
.sotm-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  min-height: 320px;
  box-shadow: 0 22px 60px rgba(16,24,40,.08);
  background: var(--dark);
}
.sotm-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sotm-hero-image-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(15,17,22,.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.sotm-hero-image-badge strong { color: var(--amber); }
.sotm-hero-image-badge span { color: var(--text-soft); font-weight: 500; }

/* Quick answer card */
.sotm-quick-answer {
  background: linear-gradient(135deg, var(--cyan-soft) 0%, var(--amber-soft) 100%);
  border: 1px solid var(--rule);
  border-radius: var(--card-radius);
  padding: 24px 24px 20px;
  box-shadow: var(--card-shadow);
}
.sotm-qa-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--cyan-deep);
  margin-bottom: 10px;
}
.sotm-quick-answer h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.08;
  margin: 0 0 10px;
  font-weight: 400;
  color: var(--ink);
}
.sotm-quick-answer > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 480px;
}

/* Quick stats — only rendered when >= 2 items (enforced in PHP) */
.sotm-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,17,22,.08);
}
.sotm-quick-stat {
  background: rgba(255,255,255,.78);
  border-radius: var(--r-md);
  padding: 13px 14px;
  border: 1px solid rgba(15,17,22,.05);
}
.sotm-quick-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--sans);
}
.sotm-quick-stat span {
  color: var(--text-soft);
  font-size: 13px;
  font-family: var(--sans);
  line-height: 1.3;
}

/* ── CURRENCY HINT ───────────────────────────────────── */
.sotm-currency-hint {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fdf8ef;
  border: 1px solid rgba(190, 150, 70, .20);
  border-radius: 16px;
  padding: 14px 20px;
}
/* Row 1: label */
.sotm-ch-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
/* Row 2: currency pairs */
.sotm-ch-values {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: wrap;
}
.sotm-ch-pair {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-1);
  white-space: nowrap;
}
.sotm-ch-approx {
  color: var(--ink-3);
  margin: 0 3px;
  font-weight: 400;
}
.sotm-ch-sep {
  color: var(--ink-3);
  opacity: .30;
  font-size: 18px;
  line-height: 1;
  padding: 0 10px;
  align-self: center;
}
/* Row 3: note */
.sotm-ch-note {
  font-size: 10px;
  color: var(--ink-3);
}
@media (max-width: 640px) {
  .sotm-ch-values { gap: 0; }
  .sotm-ch-sep { padding: 0 7px; }
}

/* ── SUMMARY BAR ─────────────────────────────────────── */
.sotm-summary-bar {
  padding: 0 0 0;
  background: var(--bg-article);
}
.sotm-summary-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.sotm-summary-inner[data-count="2"] { grid-template-columns: repeat(2, minmax(0,1fr)); }
.sotm-summary-inner[data-count="3"] { grid-template-columns: repeat(3, minmax(0,1fr)); }
.sotm-summary-card {
  background: var(--white);
  border: 1px solid rgba(15,17,22,.06);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}
.sotm-sc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.sotm-sc-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--sans);
}
.sotm-sc-pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  background: var(--cyan-soft);
  color: var(--cyan-deep);
  font-family: var(--mono);
  white-space: nowrap;
}
.sotm-summary-card p {
  margin: 0 0 12px;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 13.5px;
  font-family: var(--sans);
}
.sotm-sc-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 6px;
  font-size: 13px;
  color: var(--text-soft);
  font-family: var(--sans);
}
.sotm-sc-meta-row strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 2px;
}

/* ── ARTICLE SHELL ───────────────────────────────────── */
.sotm-article-shell {
  padding: 36px 0 80px;
  background: var(--bg-article);
}
.sotm-article-grid {
  display: grid;
  grid-template-columns: 280px minmax(0,1fr);
  gap: 36px;
  align-items: start;
}
.sotm-article-grid--nosidebar {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

/* Override max-width inherited from .sotm-article class on the body wrapper */
.sotm-post-v2 .sotm-article-body {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* ── SIDEBAR ─────────────────────────────────────────── */
.sotm-article-sidebar {
  min-width: 0;
  position: static;
  display: grid;
  gap: 18px;
}

/* Mobile TOC — hidden on desktop (sidebar shows TOC instead) */
.sotm-toc-mobile {
  display: none;
  margin-bottom: 24px;
}

/* TOC card */
.sotm-toc-card,
.sotm-fact-card {
  background: var(--white);
  border: 1px solid rgba(15,17,22,.06);
  border-radius: 22px;
  box-shadow: var(--card-shadow);
  padding: 22px;
}
.sotm-toc-card h4,
.sotm-fact-card h4 {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--mono);
  font-weight: 700;
}
.sotm-toc-card a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
  font-family: var(--sans);
}
.sotm-toc-card a:last-child { border-bottom: 0; padding-bottom: 0; }
.sotm-toc-card a:hover,
.sotm-toc-card a.is-active { color: var(--cyan); }

/* Fact card */
.sotm-fact-list { display: grid; gap: 10px; }
.sotm-fact-item {
  padding: 12px;
  border-radius: 14px;
  background: var(--bg-article);
}
.sotm-fact-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
  color: var(--text);
  font-family: var(--sans);
}
.sotm-fact-item span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--sans);
}

/* ── ARTICLE MAIN CONTENT ───────────────────────────── */
.sotm-article-main { min-width: 0; }

/* Article body container */
.sotm-article-body { font-family: var(--sans); }

/* Section cards — JS wraps H2-delimited blocks */
.sotm-article-section {
  background: var(--white);
  border: 1px solid rgba(15,17,22,.06);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 34px;
  margin-bottom: 20px;
}

/* H2 inside section cards */
.sotm-article-section h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  font-weight: 400;
  margin: 0 0 18px;
  letter-spacing: -.02em;
  color: var(--text);
  /* remove left-bar decoration from legacy .sotm-article h2 */
  padding-left: 0 !important;
}
.sotm-article-section h2::before { display: none !important; }

/* H3 inside section cards */
.sotm-article-section h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 26px 0 10px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--sans);
}

/* Body paragraphs */
.sotm-article-section p {
  margin: 0 0 16px;
  font-size: 17.5px;
  line-height: 1.85;
  color: #434A5B;
  font-family: var(--sans);
}
.sotm-article-section p:last-child { margin-bottom: 0; }

/* Lists */
.sotm-article-section ul,
.sotm-article-section ol {
  margin-bottom: 16px;
  padding-left: 22px;
}
.sotm-article-section ul { list-style: disc; }
.sotm-article-section ol { list-style: decimal; }
.sotm-article-section li {
  font-size: 17px;
  line-height: 1.8;
  color: #434A5B;
  margin-bottom: 5px;
  font-family: var(--sans);
}

/* Inline links */
.sotm-article-section a {
  color: var(--cyan-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sotm-article-section a:hover { color: var(--cyan); }

/* Recommendation (dark) section */
.sotm-article-section--dark {
  background: linear-gradient(135deg, rgba(15,17,22,1), rgba(24,29,39,.96));
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.sotm-article-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(30,122,140,.14), transparent 36%),
    radial-gradient(circle at bottom right, rgba(212,160,58,.15), transparent 36%);
  pointer-events: none;
}
.sotm-article-section--dark > * { position: relative; z-index: 1; }
.sotm-article-section--dark h2,
.sotm-article-section--dark h3 { color: #fff; }
.sotm-article-section--dark p { color: rgba(255,255,255,.8); }

/* ── FAQ CARD (standalone, below article body) ───────── */
.sotm-faq-card {
  margin-top: 0;
}
.sotm-faq-card h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  margin: 0 0 22px;
  color: var(--text);
  letter-spacing: -.02em;
}
.sotm-faq-list { display: grid; gap: 8px; }

/* Accordion item */
.sotm-faq-entry {
  border-radius: 16px;
  background: var(--bg-article);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: border-color .2s;
}
.sotm-faq-entry[open] {
  border-color: rgba(190, 150, 70, .35);
}

/* Question row (clickable summary) */
.sotm-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .18s;
}
/* Hide native triangle in all browsers */
.sotm-faq-question::-webkit-details-marker { display: none; }
.sotm-faq-question::marker { display: none; }


.sotm-faq-question:hover { color: var(--amber-deep); }
.sotm-faq-entry[open] .sotm-faq-question { color: var(--amber-deep); }

/* Chevron icon — right side, outline circle */
.sotm-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rule);
  transition: background .2s, transform .25s;
}
.sotm-faq-icon::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-2);
  border-bottom: 2px solid var(--ink-2);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
}
.sotm-faq-entry[open] .sotm-faq-icon {
  background: rgba(212, 139, 0, .12);
}
.sotm-faq-entry[open] .sotm-faq-icon::after {
  border-color: var(--amber-deep);
  transform: rotate(-135deg) translateY(-2px);
}
.sotm-faq-question:hover .sotm-faq-icon {
  background: rgba(212, 139, 0, .10);
}
.sotm-faq-question:hover .sotm-faq-icon::after {
  border-color: var(--amber-deep);
}

/* Answer panel */
.sotm-faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid var(--rule);
}
.sotm-faq-answer p {
  margin: 16px 0 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-soft);
  font-family: var(--sans);
}

/* ── INTERNAL LINKS CARD ─────────────────────────────── */
.sotm-int-links-card {
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
}
.sotm-int-links-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--cyan-deep);
  margin-bottom: 14px;
}
.sotm-int-links-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.sotm-int-links-card li {
  font-size: 15px;
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
  font-family: var(--sans);
}
.sotm-int-links-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan-deep);
  font-size: 13px;
}
.sotm-int-links-card a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  transition: color .15s, border-color .15s;
}
.sotm-int-links-card a:hover {
  color: var(--cyan-deep);
  border-color: var(--cyan);
}

/* ── TAGS FOOTER ─────────────────────────────────────── */
.sotm-article-tags-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 20px;
}
.sotm-tags-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-faint);
}

/* ── NEWSLETTER SECTION ──────────────────────────────── */
.sotm-newsletter-section {
  background: linear-gradient(135deg, rgba(30,122,140,.07), rgba(212,160,58,.07));
}

/* fact_card in main content column */
.sotm-fact-card--main {
  margin-bottom: 20px;
}

/* ── CALLOUTS ────────────────────────────────────────── */
.sotm-callouts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.sotm-callout {
  border-radius: var(--r-lg);
  padding: 20px 22px;
  border: 1px solid rgba(15,17,22,.06);
}
.sotm-callout--tip  { background: var(--cyan-soft);  }
.sotm-callout--warn { background: var(--amber-soft); }
.sotm-callout-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sotm-callout--tip  .sotm-callout-label { color: var(--cyan-deep); }
.sotm-callout--warn .sotm-callout-label { color: var(--amber-deep); }
.sotm-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

/* ── CHECKLIST ───────────────────────────────────────── */
.sotm-checklist {
  display: grid;
  gap: 10px;
}
.sotm-check-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--cream);
  border: 1px solid var(--line);
}
.sotm-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cyan-soft);
  color: var(--cyan-deep);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--mono);
  flex-shrink: 0;
}
.sotm-check-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  font-family: var(--sans);
}
.sotm-check-item span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  font-family: var(--sans);
}

/* ── COMPARE TABLE ───────────────────────────────────── */
.sotm-compare-wrap { overflow: hidden; }
.sotm-compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sotm-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  font-family: var(--sans);
}
.sotm-compare-table th,
.sotm-compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.sotm-compare-table thead th {
  background: var(--paper);
  color: var(--text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  font-family: var(--mono);
}
.sotm-compare-table tbody tr:last-child td,
.sotm-compare-table tbody tr:last-child th { border-bottom: none; }
.sotm-compare-table tbody th {
  font-weight: 600;
  color: var(--text);
}
.sotm-compare-table tbody td { color: var(--text-soft); }

/* ── RECOMMENDATION ──────────────────────────────────── */
.sotm-recommendation {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
  border: none !important;
  box-shadow: var(--card-shadow);
}
.sotm-recommendation::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(30,122,140,.14), transparent 40%),
    radial-gradient(circle at bottom right, rgba(212,160,58,.14), transparent 40%);
  pointer-events: none;
}
.sotm-rec-body {
  position: relative;
  z-index: 1;
}
.sotm-rec-body h2 {
  color: #fff !important;
  margin-bottom: 12px;
}
.sotm-rec-body p {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  font-family: var(--sans);
  max-width: 72ch;
}
.sotm-recommendation p,
.sotm-recommendation li,
.sotm-recommendation strong,
.sotm-recommendation b {
  color: rgba(255,255,255,.9);
}
.sotm-recommendation ol,
.sotm-recommendation ul {
  color: rgba(255,255,255,.85);
  padding-left: 1.4em;
  margin: 10px 0;
}
.sotm-recommendation ol { list-style: decimal; }
.sotm-recommendation ul { list-style: disc; }
.sotm-recommendation li { margin-bottom: 6px; }
.sotm-recommendation li::marker { color: rgba(255,255,255,.5); }

/* ── RESPONSIVE (article v2) ─────────────────────────── */
@media (max-width: 1180px) {
  .sotm-article-hero-grid {
    grid-template-columns: 1fr;
  }
  .sotm-hero-side {
    grid-template-rows: auto auto auto;
  }
  .sotm-hero-image {
    min-height: 240px;
  }
  .sotm-summary-inner {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  /* Collapse to single column, hide sidebar — show only main content */
  .sotm-article-grid,
  .sotm-article-grid--nosidebar {
    grid-template-columns: minmax(0,1fr);
    max-width: 860px;
    margin: 0 auto;
  }
  .sotm-article-sidebar {
    display: none;
  }
  /* Show mobile TOC in main column when sidebar is hidden */
  .sotm-toc-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .sotm-hero-copy {
    padding: 26px;
    min-height: auto;
  }
  .sotm-post-v2 h1 {
    font-size: clamp(34px, 9vw, 50px);
  }
  .sotm-article-lead { font-size: 17px; }
  .sotm-summary-inner {
    grid-template-columns: 1fr;
  }
  .sotm-quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .sotm-article-section {
    padding: 22px;
    border-radius: 20px;
  }
  .sotm-article-shell {
    padding: 24px 0 56px;
  }
  .sotm-callouts {
    grid-template-columns: 1fr;
  }
  .sotm-rec-inner {
    grid-template-columns: 1fr;
  }
  .sotm-rec-card {
    min-width: 0;
    text-align: left;
  }
}

/* ─────────────────────────────────────────────────────
   26. PAGE: /DESTYNACJE/
   ───────────────────────────────────────────────────── */

/* ── 1. Hero ──────────────────────────────────────────── */
.sotm-dest-page-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding-top: calc( var(--hdr-h) + 72px );
  padding-bottom: 88px;
}

/* Subtle radial glow — amber lewy dół, teal prawy góry */
.sotm-dest-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(212,160,58,.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 90% 5%,  rgba(30,122,140,.06) 0%, transparent 60%);
  pointer-events: none;
}

.sotm-dest-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Override eyebrow color na ciemnym tle */
.sotm-dest-page-hero .sotm-eyebrow {
  color: var(--amber);
  margin-bottom: 20px;
}

.sotm-dest-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: .97;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 24px;
}
.sotm-dest-page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.sotm-dest-page-hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin-bottom: 40px;
}

.sotm-dest-page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* btn-outline na ciemnym tle hero */
.sotm-dest-page-hero .btn-outline,
.sotm-dest-page-cta .btn-outline {
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.2);
}
.sotm-dest-page-hero .btn-outline:hover,
.sotm-dest-page-cta .btn-outline:hover {
  color: #fff;
  border-color: var(--cyan);
}

/* ── 2. Wyróżniony kraj ───────────────────────────────── */
.sotm-featured-country {
  background: var(--paper);
}

/* Statystyki wewnątrz featured — ciemniejszy wariant na jasnym bg karty */
.sotm-featured-country-stats {
  margin-bottom: 28px;
}

/* Dodatkowe rozluźnienie wewnątrz featured na /destynacje/ */
.sotm-featured-country .sotm-georgia-card {
  min-height: 380px;
}
@media (min-width: 1024px) {
  .sotm-featured-country .sotm-georgia-card {
    min-height: 440px;
  }
}

/* ── 3. Regiony i kraje ───────────────────────────────── */

/* Sekcja regionów używa .sotm-dest (dark) bez override */
.sotm-dest-region-section {}

/* Nagłówek regionu — odróżnienie od zwykłego dest-label */
.sotm-dest-region-head {
  font-size: 11px;
  letter-spacing: 3px;
}

/* Wariant karty: kraj planowany / bez wpisów */
.sotm-dest-card--planned {
  opacity: .72;
}
.sotm-dest-card--planned .sotm-dest-name {
  color: rgba(255,255,255,.6);
}
.sotm-dest-card--planned .sotm-dest-arrow {
  background: rgba(255,255,255,.04);
}
.sotm-dest-card--planned:hover {
  opacity: 1;
}

/* Fallback gdy brak danych */
.sotm-dest-grid-fallback {
  padding: 40px 0;
}
.sotm-dest-fallback-link {
  color: var(--amber);
  font-weight: 600;
  margin-left: 4px;
}
.sotm-dest-fallback-link:hover {
  text-decoration: underline;
}

/* ── 4. Jak korzystać z przewodników ─────────────────── */
.sotm-guide-categories {
  background: var(--cream);
}

.sotm-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sotm-guide-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
  position: relative;
}
.sotm-guide-item:hover {
  border-color: rgba(212,160,58,.45);
  box-shadow: 0 8px 28px rgba(212,160,58,.08);
  transform: translateY(-2px);
}

.sotm-guide-item-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.sotm-guide-item-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.sotm-guide-item-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-4);
  flex: 1;
}

.sotm-guide-item-arrow {
  font-size: 14px;
  color: var(--amber);
  font-weight: 700;
  margin-top: 4px;
  display: block;
  transition: transform .2s var(--ease);
}
.sotm-guide-item:hover .sotm-guide-item-arrow {
  transform: translateX(4px);
}

/* ── 5. CTA końcowe ──────────────────────────────────── */
.sotm-dest-page-cta {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.sotm-dest-page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 110%, rgba(212,160,58,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 10%,  rgba(30,122,140,.05) 0%, transparent 55%);
  pointer-events: none;
}

.sotm-dest-page-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.sotm-dest-page-cta .sotm-eyebrow {
  color: var(--amber);
  margin-bottom: 20px;
  justify-content: center;
}

.sotm-dest-page-cta-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.5px;
  color: #fff;
  margin-bottom: 16px;
}
.sotm-dest-page-cta-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.sotm-dest-page-cta-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 36px;
}

.sotm-dest-page-cta .sotm-dest-page-actions {
  justify-content: center;
}

/* ── Responsive: tablet ──────────────────────────────── */
@media (max-width: 1024px) {
  .sotm-guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sotm-dest-page-hero {
    padding-top: calc( var(--hdr-h) + 56px );
    padding-bottom: 72px;
  }
}

/* ── Responsive: mobile ──────────────────────────────── */
@media (max-width: 768px) {
  .sotm-dest-page-hero {
    padding-top: calc( var(--hdr-h) + 40px );
    padding-bottom: 56px;
  }
  .sotm-dest-page-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }
  .sotm-dest-page-hero-desc {
    font-size: 15.5px;
  }
  .sotm-guide-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .sotm-guide-item {
    padding: 22px 18px 20px;
  }
  .sotm-guide-item-icon { font-size: 24px; }
  .sotm-guide-item-title { font-size: 16px; }
  .sotm-guide-item-desc  { font-size: 13px; }
  .sotm-dest-page-cta-inner { max-width: 100%; }
  .sotm-featured-country .sotm-georgia-card { min-height: 320px; }
}

@media (max-width: 480px) {
  .sotm-guide-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sotm-dest-page-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .sotm-dest-page-cta .sotm-dest-page-actions {
    align-items: center;
  }
}

/* ─────────────────────────────────────────────────────
   27. COUNTRY LANDING V2
   ───────────────────────────────────────────────────── */

/* Hero subtitle — czytelniejszy kontrast */
.sotm-country-sub {
  color: rgba(255,255,255,.72);
  font-weight: 400;
}

/* Hero CTA row */
.sotm-country-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.sotm-country-hero-actions .btn-outline {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.25);
}
.sotm-country-hero-actions .btn-outline:hover {
  color: #fff;
  border-color: var(--cyan);
}

/* ── Na start ────────────────────────────────────────── */
.sotm-country-start {
  background: var(--cream);
}

.sotm-country-start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.sotm-country-start-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.sotm-country-start-card:hover {
  border-color: rgba(212,160,58,.4);
  box-shadow: 0 8px 28px rgba(212,160,58,.07);
  transform: translateY(-2px);
}

.sotm-country-start-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.sotm-country-start-label {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

.sotm-country-start-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-4);
  flex: 1;
  display: block;
}

.sotm-country-start-arrow {
  font-size: 14px;
  color: var(--amber);
  font-weight: 700;
  margin-top: 8px;
  display: block;
  transition: transform .2s var(--ease);
}
.sotm-country-start-card:hover .sotm-country-start-arrow {
  transform: translateX(4px);
}

/* ── Posts head ──────────────────────────────────────── */
.sotm-country-posts-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.sotm-country-posts-head h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.3px;
  margin: 0;
}
.sotm-country-posts-count {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-5);
  white-space: nowrap;
}

/* ── Empty state ─────────────────────────────────────── */
.sotm-country-empty {
  text-align: center;
  padding: 72px 24px;
}
.sotm-country-empty p {
  font-size: 16px;
  color: var(--ink-4);
  margin-bottom: 28px;
  font-family: var(--sans);
}
.sotm-country-empty-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .sotm-country-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .sotm-country-start-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .sotm-country-start-label { font-size: 16px; }
  .sotm-country-start-desc  { font-size: 13px; }
  .sotm-country-posts-head  { flex-direction: column; gap: 4px; }
  .sotm-country-empty-actions { flex-direction: column; align-items: center; }
}

/* ─────────────────────────────────────────────────────
   28. PAGE: 404
   ───────────────────────────────────────────────────── */

.sotm-404 {
  min-height: calc(100vh - var(--hdr-h));
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--hdr-h) + 72px) 0 88px;
}

/* Ambient glow — taki sam język jak hero na /destynacje/ */
.sotm-404::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(212,160,58,.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 90% 10%,  rgba(30,122,140,.05) 0%, transparent 55%);
  pointer-events: none;
}

.sotm-404-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

/* ── Eyebrow ──────────────────────────────────────── */
.sotm-404-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--amber);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sotm-404-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ── Title + copy ─────────────────────────────────── */
.sotm-404-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 28px;
}

.sotm-404-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin-bottom: 14px;
  font-family: var(--sans);
}

.sotm-404-subdesc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.32);
  max-width: 460px;
  margin-bottom: 44px;
  font-family: var(--sans);
}

/* ── CTA row ──────────────────────────────────────── */
.sotm-404-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.sotm-404-actions .btn-outline {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
}
.sotm-404-actions .btn-outline:hover {
  color: #fff;
  border-color: var(--cyan);
}

/* ── Right side ───────────────────────────────────── */
.sotm-404-side {
  display: flex;
  flex-direction: column;
}

/* Panel label */
.sotm-404-panel-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.28);
  margin-bottom: 16px;
}

/* ── Link cards grid ──────────────────────────────── */
.sotm-404-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sotm-404-link-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .2s var(--ease);
}
.sotm-404-link-card:hover {
  border-color: rgba(212,160,58,.4);
  background: rgba(212,160,58,.06);
  transform: translateY(-2px);
}

.sotm-404-link-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.sotm-404-link-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  display: block;
}

.sotm-404-link-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,.38);
  line-height: 1.5;
  font-family: var(--sans);
  display: block;
}

.sotm-404-link-arrow {
  font-size: 18px;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform .2s var(--ease);
  line-height: 1;
}
.sotm-404-link-card:hover .sotm-404-link-arrow {
  transform: translateX(4px);
}

/* ── Responsive: tablet ──────────────────────────── */
@media (max-width: 1024px) {
  .sotm-404-inner {
    grid-template-columns: 1fr 420px;
    gap: 56px;
  }
}

/* ── Responsive: mobile ──────────────────────────── */
@media (max-width: 768px) {
  .sotm-404 {
    padding: calc(var(--hdr-h) + 48px) 0 64px;
    align-items: flex-start;
  }
  .sotm-404-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .sotm-404-title {
    font-size: clamp(30px, 9vw, 46px);
  }
  .sotm-404-desc    { font-size: 15px; max-width: none; }
  .sotm-404-subdesc { max-width: none; }
  .sotm-404-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .sotm-404-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .sotm-404-links-grid {
    grid-template-columns: 1fr;
  }
  .sotm-404-link-card {
    padding: 22px 20px 20px;
  }
}

/* ─────────────────────────────────────────────────────
   29. PILLAR LANDING
   ───────────────────────────────────────────────────── */

/* ── Hero ────────────────────────────────────────────── */
.sotm-pillar-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
}

/* Gradient-only variant — gdy brak hero image */
.sotm-pillar-hero:not(.sotm-pillar-hero--photo)::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 100%, rgba(212,160,58,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 0%,  rgba(30,122,140,.07) 0%, transparent 55%);
  pointer-events: none;
}

.sotm-pillar-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sotm-pillar-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.sotm-pillar-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,22,19,.95) 0%, rgba(20,22,19,.55) 45%, rgba(20,22,19,.2) 100%);
}

.sotm-pillar-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--hdr-h) + 64px) var(--gutter) 72px;
  width: 100%;
}

/* ── Breadcrumbs ─────────────────────────────────────── */
.sotm-pillar-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
}
.sotm-pillar-breadcrumbs a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.sotm-pillar-breadcrumbs a:hover { color: #fff; }
.sotm-pillar-breadcrumbs .sep { opacity: .2; }

/* ── Eyebrow (link do kraju) ─────────────────────────── */
.sotm-pillar-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: opacity .2s;
}
.sotm-pillar-eyebrow:hover { opacity: .75; }
.sotm-pillar-eyebrow img { border-radius: 2px; }

/* ── Title H1 ────────────────────────────────────────── */
.sotm-pillar-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}

/* ── Desc ────────────────────────────────────────────── */
.sotm-pillar-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 480px;
  margin-bottom: 12px;
  font-family: var(--sans);
}

/* ── Stat (post count) ───────────────────────────────── */
.sotm-pillar-stat {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.3);
  margin-bottom: 36px;
}

/* ── CTA row ─────────────────────────────────────────── */
.sotm-pillar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.sotm-pillar-actions .btn-outline {
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.2);
}
.sotm-pillar-actions .btn-outline:hover {
  color: #fff;
  border-color: var(--cyan);
}

/* ── Featured post ───────────────────────────────────── */
.sotm-pillar-featured {
  display: grid;
  grid-template-columns: 420px 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule);
  text-decoration: none;
  margin-bottom: 48px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.sotm-pillar-featured:hover {
  box-shadow: 0 12px 48px rgba(20,22,19,.1);
  transform: translateY(-2px);
}

.sotm-pillar-featured-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.sotm-pillar-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.sotm-pillar-featured:hover .sotm-pillar-featured-img img {
  transform: scale(1.03);
}

.sotm-pillar-featured-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.sotm-pillar-featured-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.3px;
  margin: 0;
}

.sotm-pillar-featured-exc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-4);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sotm-pillar-featured-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  display: block;
  margin-top: 4px;
  transition: color .2s;
}
.sotm-pillar-featured:hover .sotm-pillar-featured-cta {
  color: var(--cyan-deep);
}

/* ── Posts section ───────────────────────────────────── */
.sotm-pillar-posts-section {
  background: var(--paper);
}

.sotm-pillar-posts-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.sotm-pillar-posts-head h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.3px;
  margin: 4px 0 0;
}
.sotm-pillar-posts-desc {
  font-size: 14px;
  color: var(--ink-5);
  margin-top: 4px;
}

/* ── Empty state ─────────────────────────────────────── */
.sotm-pillar-empty {
  text-align: center;
  padding: 88px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sotm-pillar-empty-icon {
  font-size: 48px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.sotm-pillar-empty-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.sotm-pillar-empty-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-4);
  max-width: 480px;
  margin: 0;
}

.sotm-pillar-empty-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.sotm-pillar-empty-actions .btn-outline {
  border-color: var(--rule);
  color: var(--ink-4);
}
.sotm-pillar-empty-actions .btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan-deep);
}

/* ── Related pillars ─────────────────────────────────── */
.sotm-pillar-related {
  margin-top: 24px;
  width: 100%;
  max-width: 560px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.sotm-pillar-related-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-5);
  margin-bottom: 14px;
}

.sotm-pillar-related-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.sotm-pillar-related-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-4);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--rule);
  background: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color .2s, color .2s, background .2s;
}
.sotm-pillar-related-pill:hover {
  border-color: var(--cyan);
  color: var(--cyan-deep);
  background: var(--cyan-soft);
}

/* ── Responsive: tablet ──────────────────────────────── */
@media (max-width: 1024px) {
  .sotm-pillar-featured {
    grid-template-columns: 340px 1fr;
  }
  .sotm-pillar-featured-body {
    padding: 32px 36px;
  }
}

/* ── Responsive: mobile ──────────────────────────────── */
@media (max-width: 768px) {
  .sotm-pillar-hero        { min-height: 45vh; align-items: flex-end; }
  .sotm-pillar-hero-inner  { padding-bottom: 52px; }
  .sotm-pillar-title       { letter-spacing: -1px; }
  .sotm-pillar-actions     { flex-direction: column; align-items: flex-start; }

  .sotm-pillar-featured              { grid-template-columns: 1fr; }
  .sotm-pillar-featured-img          { aspect-ratio: 16 / 9; }
  .sotm-pillar-featured-body         { padding: 28px 24px; }
  .sotm-pillar-featured-title        { font-size: 22px; }

  .sotm-pillar-posts-head            { flex-direction: column; gap: 4px; }
  .sotm-pillar-empty                 { padding: 64px 16px; }
  .sotm-pillar-empty-actions         { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .sotm-pillar-hero { min-height: 40vh; }
}

/* =====================================================
   30. HAS-DARK-HERO — transparent header on dark pages
   (country landing, blog index, destynacje, 404)
   ===================================================== */

/* Nav links — white on dark background */
.has-dark-hero .sotm-nav-link { color: rgba(255,255,255,.85); }
.has-dark-hero .sotm-nav-link:hover { background: rgba(255,255,255,.12); color: #fff; }
.has-dark-hero .sotm-header.is-scrolled .sotm-nav-link { color: var(--ink-2); }
.has-dark-hero .sotm-header.is-scrolled .sotm-nav-link:hover { color: var(--ink); background: rgba(0,0,0,.04); }

/* Active nav link state */
.has-dark-hero .sotm-nav-link.is-active {
  color: #fff;
  background: rgba(255,255,255,.14);
}
.has-dark-hero .sotm-header.is-scrolled .sotm-nav-link.is-active {
  color: var(--ink);
  background: rgba(0,0,0,.06);
}

/* Hamburger spans — white on dark */
.has-dark-hero .sotm-hamburger span { background: #fff; }
.has-dark-hero .sotm-header.is-scrolled .sotm-hamburger span { background: var(--ink); }

/* Logo swap — same as is-home: show light logo (for dark bg), hide dark logo */
.has-dark-hero .sotm-header .sotm-logo-img--dark-header  { display: block; }
.has-dark-hero .sotm-header .sotm-logo-img--light-header { display: none; }
.has-dark-hero .sotm-header.is-scrolled .sotm-logo-img--dark-header  { display: none; }
.has-dark-hero .sotm-header.is-scrolled .sotm-logo-img--light-header { display: block; }
