/* =====================================================================
   POPOLLIS — Frontend stylesheet
   Branje javnega mnenja · uredniški minimalizem · Popollis brand voice
   ===================================================================== */

/* ------------------------------------------------------------------- */
/* Tokens                                                              */
/* ------------------------------------------------------------------- */
:root {
  --ink:    #0E0E0C;  /* Črnilo */
  --paper:  #F4F1EA;  /* Pergament */
  --bone:   #D9D4C7;  /* Kost */
  --ash:    #6B6B6B;
  --red:    #1B3A6B;  /* Odsev (Tell Blue) — legacy variable name kept so existing markup using --red still renders correctly with the new accent */
  --blue:   #1B3A6B;  /* alias */

  --serif:  "EB Garamond", "Tiempos Headline", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:   "JetBrains Mono", "IBM Plex Mono", "SF Mono", Menlo, Monaco, Consolas, monospace;

  --max:    1180px;
  --gutter: clamp(20px, 4vw, 48px);

  --rule:   1px solid var(--bone);
}

/* ------------------------------------------------------------------- */
/* Reset                                                               */
/* ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

/* ------------------------------------------------------------------- */
/* Brand mark — popollis wordmark (inline SVG)                         */
/*                                                                     */
/* The wordmark is an inline <svg> using the dotless "ı" + a navy      */
/* circle as the custom tittle. Rendered as SVG so the dot lines up    */
/* pixel-perfectly regardless of which fonts have loaded.              */
/*                                                                     */
/* On the dark footer, the text uses currentColor so it switches to    */
/* Pergament against the Črnilo background; the navy circle stays      */
/* hard-coded.                                                         */
/* ------------------------------------------------------------------- */
.wordmark {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
  color: var(--ink);
  vertical-align: middle;
}
.wordmark svg {
  display: block;
  height: 1em;
  width: auto;
}
.wordmark svg .wordmark-text { fill: currentColor; }
.wordmark svg .wordmark-dot  { fill: var(--blue); }

.wordmark--lg { font-size: 44px; }
.wordmark--md { font-size: 32px; }
.wordmark--sm { font-size: 22px; }

.site-footer .wordmark { color: var(--paper); }

/* ------------------------------------------------------------------- */
/* Header                                                              */
/* ------------------------------------------------------------------- */
.site-header {
  border-bottom: var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(8px);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-nav {
  display: flex;
  gap: 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--blue); }
.site-nav a.is-active { color: var(--blue); }

/* Hamburger toggle — hidden on desktop */
.site-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.site-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
body.nav-open .site-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .site-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
body.nav-open .site-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer close button — hidden on desktop */
.site-nav__close {
  display: none;
  background: transparent;
  border: none;
  font-size: 36px;
  font-family: var(--serif);
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 18px;
  right: 22px;
  width: 36px;
  height: 36px;
}

/* Backdrop — hidden by default */
.site-nav__backdrop {
  display: none;
}

/* ============== Mobile drawer ============== */
@media (max-width: 700px) {
  .site-header__inner { padding: 14px var(--gutter); }

  .site-nav-toggle { display: flex; }

  /* Drawer comes from right */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(320px, 80vw);
    background: var(--paper);
    border-left: 1px solid var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 32px rgba(14, 14, 12, 0.08);
  }
  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--bone);
    width: 100%;
    color: var(--ink);
  }
  .site-nav a:last-of-type {
    border-bottom: none;
  }
  .site-nav a.is-active {
    color: var(--blue);
  }

  .site-nav__close {
    display: block;
  }

  /* Backdrop visible when nav is open */
  .site-nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(14, 14, 12, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 99;
  }
  body.nav-open .site-nav__backdrop {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }

  /* Lock body scroll when drawer is open */
  body.nav-open {
    overflow: hidden;
  }
}

/* ------------------------------------------------------------------- */
/* Hero                                                                */
/* ------------------------------------------------------------------- */
.hero {
  padding: clamp(60px, 10vw, 140px) var(--gutter) clamp(60px, 8vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: var(--rule);
}

/* Two-column layout when hero_image block is set */
.hero--with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 900px) {
  .hero--with-image {
    grid-template-columns: 1.2fr 1fr;
  }
}
.hero--with-image .hero__text { min-width: 0; }
.hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image img {
  max-width: 100%;
  width: 100%;
  max-height: 720px;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 900px) {
  .hero__image img {
    max-width: 480px;
  }
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 0 24px 0;
}
.hero__eyebrow .dot {
  /* In eyebrow context the dot is a small inline navy circle (not the wordmark dot) */
  position: static;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  transform: none;
  margin: 0 6px;
  vertical-align: middle;
}
.hero__headline {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 32px 0;
  max-width: 14ch;
}
.hero__headline .dot {
  /* Decorative period after headline — navy circle, inline */
  position: static;
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-0.05em);
  margin-left: 0.04em;
  vertical-align: baseline;
}
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 40px 0;
  max-width: 38ch;
}
.hero__form { max-width: 520px; }
.hero__microcopy {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ash);
  margin-top: 14px;
  line-height: 1.5;
}

/* ------------------------------------------------------------------- */
/* Forms                                                               */
/* ------------------------------------------------------------------- */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row--inline {
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 600px) {
  .form-row--inline { flex-direction: column; }
}

.input {
  font-family: var(--sans);
  font-size: 16px;
  padding: 16px 18px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  outline: none;
  width: 100%;
  transition: border-color 0.15s ease;
}
.input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.15);
}
.input::placeholder { color: var(--ash); }

.btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  line-height: 1.3;
}
.btn:hover { background: var(--blue); border-color: var(--blue); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--block { width: 100%; }
.btn--sm {
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* On narrow screens, allow long button copy to wrap to 2 lines instead of overflowing */
@media (max-width: 540px) {
  .btn {
    white-space: normal;
    max-width: 100%;
  }
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ash);
  line-height: 1.5;
}
.checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.checkbox-row a { color: var(--ink); text-decoration: underline; }

.tier-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
  margin-bottom: 16px;
}
.tier-toggle label {
  padding: 14px 18px;
  cursor: pointer;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-right: 1px solid var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
  background: var(--paper);
  color: var(--ink);
}
.tier-toggle label:last-child { border-right: 0; }
.tier-toggle input[type="radio"] { display: none; }
.tier-toggle input[type="radio"]:checked + span {
  background: var(--ink);
  color: var(--paper);
  margin: -14px -18px;
  padding: 14px 18px;
  display: block;
}
.tier-toggle .price {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-top: 4px;
  color: var(--ash);
  font-weight: 400;
}
.tier-toggle input[type="radio"]:checked + span .price { color: var(--bone); }

/* ------------------------------------------------------------------- */
/* Manifesto                                                           */
/* ------------------------------------------------------------------- */
.manifesto {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  max-width: 720px;
  margin: 0 auto;
  border-bottom: var(--rule);
}
.manifesto__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 40px 0;
}
.manifesto__body {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink);
}
.manifesto__body p { margin: 0 0 24px 0; }
.manifesto__body p.red-line { color: var(--blue); font-style: italic; }
.manifesto__body p.blue-line { color: var(--blue); font-style: italic; }
.manifesto__signature {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 40px;
  color: var(--ink);
}
.manifesto__signature .dot {
  position: static;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  transform: none;
  vertical-align: middle;
  margin-left: 2px;
}

/* ------------------------------------------------------------------- */
/* Section heading                                                     */
/* ------------------------------------------------------------------- */
.section {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: var(--rule);
}
.section__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 0 16px 0;
}
.section__eyebrow .dot {
  position: static;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  transform: none;
  margin: 0 8px;
  vertical-align: middle;
}
.section__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 48px 0;
  max-width: 24ch;
}

/* ------------------------------------------------------------------- */
/* Product grid                                                        */
/* ------------------------------------------------------------------- */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: var(--rule);
  border-left: var(--rule);
}
.products__item {
  padding: 32px;
  border-right: var(--rule);
  border-bottom: var(--rule);
}
.products__tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ash);
  margin-bottom: 14px;
  display: inline-block;
}
.products__name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.products__premium-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--paper);
  padding: 3px 8px;
}
.products__desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 700px) {
  .products { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------- */
/* Sample issue (Odsev)                                                */
/* ------------------------------------------------------------------- */
.sample {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: clamp(28px, 5vw, 56px);
  max-width: 720px;
  margin: 0 auto;
}
.sample__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 24px;
  border-bottom: var(--rule);
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.sample__subject {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 28px 0;
}
.sample__body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
}
.sample__body p { margin: 0 0 18px 0; }
.sample__body strong { font-weight: 700; }

/* "Vzorec" callout — navy left rule, kost background */
.sample__callout {
  border-left: 4px solid var(--blue);
  padding: 18px 22px;
  margin: 28px 0;
  background: var(--bone);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}
.sample__callout-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
}

/* "Vprašanje brez odgovora" — italic serif, top rule */
.sample__question {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  margin: 28px 0 0 0;
  padding-top: 24px;
  border-top: var(--rule);
}
.sample__question-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
  font-style: normal;
}
.sample__nums {
  font-family: var(--mono);
  font-size: 0.95em;
}

/* ------------------------------------------------------------------- */
/* Pricing                                                             */
/* ------------------------------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
}
.pricing__col {
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
}
.pricing__col:last-child { border-right: 0; }
.pricing__tier {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}
.pricing__col--premium .pricing__tier { color: var(--blue); }
.pricing__name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0 0 8px 0;
}
.pricing__price {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 24px 0;
}
.pricing__sub {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 0 28px 0;
}
.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}
.pricing__features li {
  padding: 8px 0;
  border-bottom: var(--rule);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.pricing__features li:last-child { border-bottom: 0; }
.pricing__features li::before {
  content: "+";
  font-family: var(--mono);
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 700px) {
  .pricing { grid-template-columns: 1fr; }
  .pricing__col { border-right: 0; border-bottom: 1px solid var(--ink); }
  .pricing__col:last-child { border-bottom: 0; }
}

/* ------------------------------------------------------------------- */
/* Closing                                                             */
/* ------------------------------------------------------------------- */
.closing {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  border-bottom: var(--rule);
}
.closing__question {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
  margin: 0 0 24px 0;
  color: var(--ink);
}
.closing__sub {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ash);
  margin: 0 0 36px 0;
}

/* ------------------------------------------------------------------- */
/* Footer                                                              */
/* ------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px var(--gutter) 40px;
  font-family: var(--sans);
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.site-footer .wordmark { color: var(--paper); }
.site-footer__nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.site-footer__nav a {
  color: var(--paper);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}
.site-footer__nav a:hover { opacity: 1; color: var(--paper); }
.site-footer__legal {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 241, 234, 0.15);
  font-size: 12px;
  color: rgba(244, 241, 234, 0.55);
  line-height: 1.6;
  max-width: 70ch;
}
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-footer__social a {
  color: var(--paper);
  opacity: 0.7;
  transition: opacity 0.15s ease;
  display: inline-flex;
  width: 18px;
  height: 18px;
}
.site-footer__social a:hover { opacity: 1; }

@media (max-width: 700px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__nav { flex-direction: column; gap: 14px; }
}

/* ------------------------------------------------------------------- */
/* Flash messages                                                      */
/* ------------------------------------------------------------------- */
.flash {
  padding: 14px 18px;
  margin: 0 0 24px 0;
  font-family: var(--sans);
  font-size: 14px;
  border: 1px solid;
}
.flash--success { background: #f0f4f9; border-color: var(--blue); color: var(--blue); }
.flash--error   { background: #fdf2f2; border-color: #b53d2e; color: #b53d2e; }

/* ------------------------------------------------------------------- */
/* Static pages (legal, privacy, contact)                              */
/* ------------------------------------------------------------------- */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
}
.page__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 12px 0;
}
.page__updated {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ash);
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}
.page__content {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
}
.page__content h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 48px 0 16px 0;
}
.page__content h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  margin: 32px 0 12px 0;
}
.page__content p { margin: 0 0 18px 0; }
.page__content ul, .page__content ol {
  margin: 0 0 18px 0;
  padding-left: 22px;
}
.page__content li { margin-bottom: 8px; }
.page__content a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 3px; }

/* ------------------------------------------------------------------- */
/* Archive                                                             */
/* ------------------------------------------------------------------- */
.archive-list { list-style: none; padding: 0; margin: 0; }
.archive-list__item {
  padding: 28px 0;
  border-bottom: var(--rule);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: baseline;
}
.archive-list__date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ash);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.archive-list__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 6px 0;
}
.archive-list__title a { color: var(--ink); text-decoration: none; }
.archive-list__title a:hover { color: var(--blue); }
.archive-list__excerpt {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ash);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 600px) {
  .archive-list__item { grid-template-columns: 1fr; gap: 8px; }
}

/* ------------------------------------------------------------------- */
/* Popollomer — three-segment Za / Neopredeljeni / Proti bar           */
/* (Signature visual element of the Popollis brand)                    */
/* ------------------------------------------------------------------- */
.popollomer {
  margin: 28px 0;
}
.popollomer__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 10px;
  display: block;
}
.popollomer__bar {
  display: flex;
  width: 100%;
  height: 18px;
  border: 1px solid var(--ink);
  overflow: hidden;
}
.popollomer__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--paper);
  white-space: nowrap;
}
.popollomer__seg--za       { background: var(--blue); }
.popollomer__seg--neutral  { background: var(--ash); }
.popollomer__seg--proti    { background: var(--ink); }
.popollomer__legend {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ------------------------------------------------------------------- */
/* Selection                                                           */
/* ------------------------------------------------------------------- */
::selection { background: var(--blue); color: var(--paper); }

/* ------------------------------------------------------------------- */
/* Print                                                               */
/* ------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer { display: none; }
  body { background: white; color: black; }
}
