/*
Theme Name: Media Inak
Theme URI: https://www.mediainak.sk
Author: Media Inak
Author URI: https://www.mediainak.sk
Description: Moderný 3D interaktívny spravodajský theme pre Media Inak — nezávislý slovenský spravodajský portál. Verzia 2.2.0 prináša úplný redizajn so 3D priestorom, magnetic kurzorom, parallax vrstvami a tilt-kartami.
Version: 2.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mediainak
Tags: news, blog, custom-colors, custom-logo, featured-images, translation-ready, two-columns
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4

Changelog:
2.2.0 (2026-05) — UPLNY REDIZAJN: 3D priestor + magnetic interactions
  Visual:
  - Custom magnetic cursor (biela bodka + spotlight glow + ring)
  - 3D perspective scene s parallax vrstvami (mouse-tracked)
  - Tilt karty (hero, article-card, featured-card, list-item)
  - Magnetic linky (nav, buttons, share, footer)
  - Reveal animacie on-scroll (translateY + opacity, double-rAF safe)
  - Modernizovana typografia (Space Grotesk display + Inter body + Playfair serif)
  - Enlarged scale (hero clamps, section spacing, card padding)
  Tech:
  - prefers-reduced-motion respekt v theme.js (vsetky 3D efekty sa vypnu)
  - Touch device fallback (no cursor, no tilt, jemne fade-in only)
  - GPU-accelerated transforms (translate3d + will-change)
  - CSS @scope pre 3D priestor (no leak na admin bar)
  - oklch() podpora s hex fallbackom pre starsie prehliadace
  Compat:
  - Pln\u00e1 spatna kompatibilita s Customizer settings z 2.1.x
  - Pln\u00e1 kompatibilita s breaking-news, dark-mode, search-overlay, reading-progress, comments, sidebar widgets
  - Vsetky WP hooks zachovane (wp_head, wp_footer, body_class, post_class)
  - AIOSEO + EWWW + Redirection plugin compat zachovany
2.1.7 (2026-04-23) — SEO + A11Y + Performance fixes (vid commit history)
*/

/* ═══════════════════════════════════════════
   MEDIA INAK — WordPress Theme v2.2.0
   3D priestor + magnetic interactions
   ═══════════════════════════════════════════ */

:root {
  /* ── BRAND ── */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #2563eb;       /* zjednotene s primary — logo modra */
  --primary-glow: rgba(37, 99, 235, 0.45);
  --accent: #ef4444;
  --accent-orange: #f97316;

  /* ── SURFACES ── */
  --bg: #fafafa;
  --bg-alt: #f3f4f6;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-dark: #0a0a0f;
  --bg-glass: rgba(255, 255, 255, 0.72);
  --bg-glass-strong: rgba(255, 255, 255, 0.92);

  /* ── INK ── */
  --text: #0a0a0f;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --border-strong: #d1d5db;

  /* ── ELEVATION (layered like real depth) ── */
  --shadow-sm: 0 1px 2px rgba(10, 10, 15, 0.04);
  --shadow: 0 2px 4px rgba(10, 10, 15, 0.04), 0 4px 12px rgba(10, 10, 15, 0.04);
  --shadow-md: 0 4px 8px rgba(10, 10, 15, 0.05), 0 12px 32px rgba(10, 10, 15, 0.08);
  --shadow-lg: 0 8px 16px rgba(10, 10, 15, 0.06), 0 24px 64px rgba(10, 10, 15, 0.12);
  --shadow-xl: 0 16px 32px rgba(10, 10, 15, 0.08), 0 48px 96px rgba(10, 10, 15, 0.18);
  --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.08), 0 8px 32px rgba(37, 99, 235, 0.12);

  /* ── GEOMETRY ── */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* ── LAYOUT ── */
  --max-width: 1320px;
  --max-width-narrow: 780px;
  --header-height: 72px;
  --container-pad: 32px;

  /* ── TYPE ── */
  --font-display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* ── MOTION ── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: 220ms var(--ease-out);
  --transition-slow: 480ms var(--ease-out);

  /* ── 3D ── */
  --perspective: 1400px;
  --tilt-max: 6deg;

  /* ── CATEGORY COLORS (zachované z 2.1.x) ── */
  --cat-slovensko: #2563eb;
  --cat-ekonomika: #059669;
  --cat-technologie: #7c3aed;
  --cat-lifestyle: #ec4899;
  --cat-testy: #f59e0b;
  --cat-nazory: #6366f1;
}

/* ── DARK MODE — charcoal + cobalt ── */
[data-theme="dark"] {
  --bg: #0a0a0f;
  --bg-alt: #14141c;
  --bg-elevated: #1a1a24;
  --bg-card: #15151e;
  --bg-glass: rgba(20, 20, 28, 0.72);
  --bg-glass-strong: rgba(20, 20, 28, 0.92);
  --text: #f5f5f7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: #27272f;
  --border-light: #1c1c24;
  --border-strong: #3f3f47;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4), 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5), 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.6), 0 48px 96px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 8px 32px rgba(37, 99, 235, 0.3);
}

[data-theme="dark"] .logo img { filter: brightness(0) invert(1); }
[data-theme="dark"] .footer-logo-invert { filter: brightness(0) invert(1); }

/* Theme toggle icons */
.theme-toggle .icon-sun,
.dark-mode-fab .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon,
[data-theme="dark"] .dark-mode-fab .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun,
[data-theme="dark"] .dark-mode-fab .icon-sun { display: block; }

/* ═══════════════════════════════════════════
   RESET + BASE
   ═══════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--primary); color: #fff; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  /* 3D scene root */
  perspective: var(--perspective);
  perspective-origin: 50% 35%;
}

/* ═══ Mobile: zrus perspective na body — sposobuje horror layout na malych
       screenoch (z-fighting, gridy sa prekryvaju, sticky header poskakuje) ═══ */
@media (max-width: 920px) {
  body { perspective: none; }
  main, #main-content { transform-style: flat !important; perspective: none !important; }
  html, body { overflow-x: hidden; }
}

body.nav-open { overflow: hidden; }
/* ═══════════════════════════════════════════
   CUSTOM KURZOR (iPad-style) — v2.2.8
   Vonkajsi ring + vnutorna bodka, s lag follow,
   expands on hover. Iba pre desktop, hover-capable.
   ═══════════════════════════════════════════ */
.mi-cursor-dot,
.mi-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 100000;
  opacity: 0;
  transition: opacity 240ms var(--ease-out);
  will-change: transform;
}
.mi-cursor-dot.is-visible,
.mi-cursor-ring.is-visible { opacity: 1; }

.mi-cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.45);
  transition: opacity 240ms var(--ease-out),
              width 260ms var(--ease-spring),
              height 260ms var(--ease-spring),
              background 240ms var(--ease-out);
}
.mi-cursor-dot.is-hover {
  width: 4px;
  height: 4px;
  background: #fff;
  box-shadow: 0 0 0 transparent;
}

.mi-cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  transition: opacity 240ms var(--ease-out),
              width 320ms var(--ease-spring),
              height 320ms var(--ease-spring),
              background 240ms var(--ease-out),
              border-color 240ms var(--ease-out),
              border-width 240ms var(--ease-out);
}
.mi-cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.16);
  border-width: 2px;
}

[data-theme="dark"] .mi-cursor-ring { border-color: #fff; background: rgba(255,255,255,0.06); }
[data-theme="dark"] .mi-cursor-ring.is-hover { background: rgba(255,255,255,0.12); }
[data-theme="dark"] .mi-cursor-dot { background: #fff; box-shadow: 0 0 12px rgba(255,255,255,0.5); }
[data-theme="dark"] .mi-cursor-dot.is-hover { background: var(--primary); }

/* Schovaj systemovy kurzor iba na desktop hover-capable, nikdy na touch */
@media (hover: hover) and (pointer: fine) {
  html.has-mi-cursor,
  html.has-mi-cursor body { cursor: none; }
  html.has-mi-cursor a,
  html.has-mi-cursor button,
  html.has-mi-cursor input,
  html.has-mi-cursor textarea,
  html.has-mi-cursor [role="button"] { cursor: none; }
}
@media (hover: none), (pointer: coarse) {
  .mi-cursor-dot, .mi-cursor-ring { display: none !important; }
}

/* ═══════════════════════════════════════════
   MAGNETIC CURSOR — ODSTRANENE v2.2.1
   ═══════════════════════════════════════════ */
.mi-cursor, .mi-cursor-ring, .mi-cursor-glow { display: none !important; }
body, body.has-cursor { cursor: auto !important; }
body a, body button { cursor: pointer; }
body input[type="text"], body input[type="email"], body textarea { cursor: text; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

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

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  word-wrap: normal !important;
}

/* ═══════════════════════════════════════════
   MAGNETIC CURSOR
   ═══════════════════════════════════════════ */

.mi-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  transition: width 240ms var(--ease-out), height 240ms var(--ease-out),
              background 240ms var(--ease-out), opacity 240ms var(--ease-out);
  mix-blend-mode: difference;
  will-change: transform;
}
.mi-cursor.is-link { width: 32px; height: 32px; background: var(--primary); }
.mi-cursor.is-text { width: 4px; height: 24px; border-radius: 2px; }
.mi-cursor.is-hidden,
.mi-cursor-ring.is-hidden,
.mi-cursor-glow.is-hidden { opacity: 0 !important; }

.mi-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.4;
  transition: width 380ms var(--ease-spring), height 380ms var(--ease-spring),
              opacity 240ms var(--ease-out), border-color 240ms var(--ease-out);
  will-change: transform;
}
.mi-cursor-ring.is-link { width: 64px; height: 64px; opacity: 0.3; border-color: var(--primary); }

.mi-cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--primary-glow), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.55;
  filter: blur(40px);
  will-change: transform;
  mix-blend-mode: screen;
}
[data-theme="dark"] .mi-cursor-glow { opacity: 0.7; }

@media (hover: none), (pointer: coarse) {
  .mi-cursor, .mi-cursor-ring, .mi-cursor-glow { display: none !important; }
  body.has-cursor { cursor: auto; }
}

/* ═══════════════════════════════════════════
   BREAKING NEWS BAR
   ═══════════════════════════════════════════ */

.breaking-bar {
  position: relative;
  background: var(--accent);
  background-image: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  z-index: 50;
}

.breaking-label {
  background: rgba(0, 0, 0, 0.25);
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  position: relative;
}
.breaking-label::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  width: 0; height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 10px solid rgba(0, 0, 0, 0.25);
  transform: translateY(-50%);
}
.breaking-label svg { flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.breaking-ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-left: 16px;
  mask-image: linear-gradient(to right, transparent, #000 32px, #000 calc(100% - 32px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 32px, #000 calc(100% - 32px), transparent);
}
.breaking-ticker-track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  align-items: center;
  animation: ticker-scroll var(--ticker-duration, 30s) linear infinite;
  will-change: transform;
}
.breaking-ticker-track:hover,
.breaking-ticker-track.dragging { animation-play-state: paused; }
.breaking-dot { margin: 0 24px; opacity: 0.5; flex-shrink: 0; user-select: none; }
.breaking-ticker-track a {
  color: #fff;
  flex-shrink: 0;
  display: inline-block;
  transition: opacity var(--transition);
}
.breaking-ticker-track a:hover { opacity: 0.75; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   HEADER (sticky, glass blur)
   ═══════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--bg-glass-strong);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(10, 10, 15, 0.02), 0 8px 24px rgba(10, 10, 15, 0.04);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  font-family: var(--font-display);
  transition: transform var(--transition);
  transform-origin: left center;
}
.logo:hover { transform: scale(1.02); }
.logo img,
.logo svg {
  width: 44px;
  height: 44px;
}
.logo .media { color: var(--text); }
.logo .inak {
  color: var(--primary);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 800;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-toggle,
.mobile-nav-toggle {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  position: relative;
  z-index: 1;
}
.search-toggle:hover,
.mobile-nav-toggle:hover {
  background: var(--bg-alt);
  color: var(--text);
  transform: scale(1.05);
}
.mobile-nav-toggle { display: none; }
.mobile-nav-toggle .icon-close { display: none; }
.mobile-nav-toggle.active .icon-menu { display: none; }
.mobile-nav-toggle.active .icon-close { display: block; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.site-nav {
  background: transparent;
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.site-nav .container { overflow: visible; }

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 0;
  /* overflow: visible — aby sa dropdown mohol vykreslit mimo nav */
}

.nav-list a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: background var(--transition), color var(--transition);
}
.nav-list a:hover {
  background: var(--bg-alt);
  color: var(--text);
}
/* Aktivna / current kategoria — pouzi farbu kategorie cez data-cat atribut + CSS var --cat-color */
.nav-list .current-menu-item > a,
.nav-list a.active {
  background: var(--cat-color, var(--primary));
  color: #fff;
}
/* Hover — jemny tint farby kategorie */
.nav-list a[data-cat]:hover {
  background: color-mix(in srgb, var(--cat-color, var(--primary)) 12%, transparent);
  color: var(--cat-color, var(--text));
}

/* ═══════════════════════════════════════════
   ARCHIVE / CATEGORY HERO
   ═══════════════════════════════════════════ */

.archive-hero {
  position: relative;
  padding: 80px 0 56px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--border);
}
.archive-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, color-mix(in srgb, var(--cat-color, var(--primary)) 18%, transparent), transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 100%, color-mix(in srgb, var(--cat-color, var(--primary)) 12%, transparent), transparent 70%),
    linear-gradient(180deg, var(--bg-alt), var(--bg) 70%);
}
[data-theme="dark"] .archive-hero-bg {
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, color-mix(in srgb, var(--cat-color, var(--primary)) 25%, transparent), transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 100%, color-mix(in srgb, var(--cat-color, var(--primary)) 18%, transparent), transparent 70%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg) 70%);
}
.archive-hero-inner {
  max-width: 820px;
}
.archive-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cat-color, var(--primary));
  margin-bottom: 18px;
}
.archive-hero-dot {
  width: 8px;
  height: 8px;
  background: var(--cat-color, var(--primary));
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--cat-color, var(--primary)) 20%, transparent);
}
.archive-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 20px;
  text-wrap: balance;
}
.archive-hero-desc {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 60ch;
  text-wrap: pretty;
}
.archive-hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 14px;
  flex-wrap: wrap;
}
.archive-hero-stat strong {
  color: var(--cat-color, var(--primary));
  font-size: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  margin-right: 6px;
  letter-spacing: -0.02em;
}

.archive-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.archive-subcat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.archive-subcat-pill:hover {
  border-color: var(--cat-color, var(--primary));
  background: color-mix(in srgb, var(--cat-color, var(--primary)) 10%, transparent);
  transform: translateY(-1px);
}
.archive-subcat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.archive-subcat-count {
  margin-left: 4px;
  padding: 2px 8px;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
}

/* ═══ ARCHIVE FEATURED ═══ */
.archive-featured { padding: 48px 0 32px; }
.archive-featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}
.archive-big-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  transition: transform var(--transition);
}
.archive-big-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.archive-big-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.archive-big-card:hover .archive-big-img img { transform: scale(1.04); }
.archive-big-overlay {
  position: absolute;
  inset: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(to top,
    rgba(10,10,15,0.92) 0%,
    rgba(10,10,15,0.55) 40%,
    rgba(10,10,15,0.1) 70%,
    transparent 100%);
}
.archive-pill {
  align-self: flex-start;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.archive-big-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
  text-wrap: balance;
}
.archive-big-excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 14px;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.archive-big-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 8px;
}

.archive-side-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.archive-side-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: stretch;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.archive-side-card:hover {
  border-color: var(--cat-color, var(--primary));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.archive-side-img {
  position: relative;
  overflow: hidden;
}
.archive-side-img img,
.archive-side-img > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.archive-side-card:hover .archive-side-img img { transform: scale(1.06); }
.archive-side-body {
  padding: 16px 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.archive-side-body .card-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.archive-side-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 8px;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.archive-side-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══ ARCHIVE REST ═══ */
.archive-rest { padding: 32px 0 80px; }
.archive-rest-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.archive-rest-layout .sidebar { position: sticky; top: calc(var(--header-height) + 24px); }

@media (max-width: 1100px) {
  .archive-rest-layout { grid-template-columns: 1fr; }
  .archive-rest-layout .sidebar { position: static; }
}
@media (max-width: 920px) {
  .archive-hero { padding: 48px 0 32px; }
  .archive-featured-grid { grid-template-columns: 1fr; }
  .archive-big-card { aspect-ratio: 16/10; }
  .archive-big-overlay { padding: 24px; }
  .archive-side-stack { gap: 16px; }
}
@media (max-width: 640px) {
  .archive-hero-stats { gap: 18px; }
  .archive-hero-stat strong { font-size: 20px; }
  .archive-side-card { grid-template-columns: 110px 1fr; }
  .archive-side-card { gap: 12px; }
  .archive-side-body { padding: 12px 12px 12px 0; }
}

/* ═══════════════════════════════════════════
   ARCHIVE / CATEGORY HERO — END
   ═══════════════════════════════════════════ */

.mobile-nav-extras { display: none; }

/* ═══════════════════════════════════════════
   DROPDOWN (sub-menu) — plynuly hover
   ═══════════════════════════════════════════ */

.nav-list { position: relative; }
.nav-list > li {
  position: relative;
}
.nav-list li.has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-list li.has-children .nav-caret {
  transition: transform 240ms var(--ease-out);
  margin-left: 2px;
}
.nav-list li.has-children:hover .nav-caret {
  transform: rotate(-180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none;
  padding: 8px;
  margin: 0;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out), transform 280ms var(--ease-spring);
  z-index: 110;
}
.nav-list li.has-children:hover > .sub-menu,
.nav-list li.has-children:focus-within > .sub-menu,
.nav-list li.has-children.is-open > .sub-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
/* Bridge medzi parent a sub-menu aby hover neprerusil pri pohybe myšou */
.nav-list li.has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}
.nav-list li.has-children:hover::after { display: block; }

.sub-menu li { margin: 0; }
.sub-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  border-left: 3px solid transparent;
}
.sub-menu a:hover {
  background: color-mix(in srgb, var(--cat-color, var(--primary)) 10%, transparent);
  color: var(--cat-color, var(--text));
  border-left-color: var(--cat-color, var(--primary));
}

/* ═══════════════════════════════════════════
   SEARCH OVERLAY
   ═══════════════════════════════════════════ */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 24px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-out);
}
.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.search-box {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 12px;
  width: 100%;
  max-width: 640px;
  box-shadow: var(--shadow-xl);
  transform: translateY(-32px) scale(0.96);
  transition: transform 480ms var(--ease-spring);
}
.search-overlay.active .search-box { transform: translateY(0) scale(1); }
.search-box input[type="search"],
.search-box input[type="text"] {
  width: 100%;
  padding: 18px 24px;
  font-size: 18px;
  border: none;
  background: transparent;
  font-family: inherit;
  color: var(--text);
  outline: none;
  letter-spacing: -0.01em;
}
.search-box input::placeholder { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   3D SCENE WRAPPER
   ═══════════════════════════════════════════ */

main, #main-content {
  position: relative;
  transform-style: preserve-3d;
}

/* ═══════════════════════════════════════════
   HERO SECTION (3D, parallax, tilt)
   ═══════════════════════════════════════════ */

.hero-section {
  padding: 56px 0 40px;
  position: relative;
  perspective: var(--perspective);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 620px;
  transform-style: preserve-3d;
}

.hero-main {
  grid-row: 1 / -1;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform 480ms var(--ease-out), box-shadow 480ms var(--ease-out);
  will-change: transform;
}
.hero-main:hover { box-shadow: var(--shadow-xl); }
.hero-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) translateZ(0);
  transition: transform 800ms var(--ease-out);
  will-change: transform;
}
.hero-main:hover img { transform: scale(1.08) translateZ(0); }

.hero-main .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  background: linear-gradient(to top,
    rgba(10, 10, 15, 0.92) 0%,
    rgba(10, 10, 15, 0.65) 35%,
    rgba(10, 10, 15, 0.15) 65%,
    transparent 100%);
  color: #fff;
  transform: translateZ(40px);
}

.hero-main .hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.hero-main .hero-excerpt {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.hero-main .hero-meta,
.hero-side-card .hero-meta {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-sidebar {
  grid-row: 1 / -1;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.hero-side-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
  transition: transform 480ms var(--ease-out), box-shadow 480ms var(--ease-out);
  will-change: transform;
}
.hero-side-card:hover { box-shadow: var(--shadow-lg); }
.hero-side-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.hero-side-card:hover img { transform: scale(1.06); }
.hero-side-card .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top,
    rgba(10, 10, 15, 0.88) 0%,
    rgba(10, 10, 15, 0.4) 50%,
    transparent 100%);
  color: #fff;
  transform: translateZ(24px);
}
.hero-side-card .hero-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  text-wrap: balance;
}
.hero-side-card .hero-meta { font-size: 12px; }

/* ═══════════════════════════════════════════
   CATEGORY BADGE
   ═══════════════════════════════════════════ */

.category-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */

.category-section { padding: 64px 0; }
.category-section + .category-section { padding-top: 0; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-title::before {
  content: '';
  width: 6px;
  height: 28px;
  background: var(--primary);
  border-radius: 999px;
  display: inline-block;
}
.section-title[data-color="green"]::before { background: var(--cat-ekonomika); }
.section-title[data-color="purple"]::before { background: var(--cat-technologie); }
.section-title[data-color="pink"]::before { background: var(--cat-lifestyle); }
.section-title[data-color="orange"]::before { background: var(--cat-testy); }

.section-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: gap var(--transition), background var(--transition), transform var(--transition), border-color var(--transition);
}
.section-more:hover {
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   ARTICLE CARDS GRID (tilt 3D)
   ═══════════════════════════════════════════ */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  perspective: var(--perspective);
}

.article-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transform-style: preserve-3d;
  transition: transform 480ms var(--ease-out), box-shadow 480ms var(--ease-out), border-color 240ms var(--ease-out);
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.article-card .card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
}
.article-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.article-card:hover .card-image img { transform: scale(1.06); }

.article-card .card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  transform: translateZ(20px);
}

.card-category,
.article-card .card-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-category::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.article-card .card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 12px;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .card-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 500;
}
.card-meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FEATURED + LIST LAYOUT
   ═══════════════════════════════════════════ */

.featured-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.featured-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transform-style: preserve-3d;
  transition: transform 480ms var(--ease-out), box-shadow 480ms var(--ease-out), border-color 240ms var(--ease-out);
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.featured-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.featured-card .card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-alt);
}
.featured-card .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.featured-card:hover .card-image img { transform: scale(1.05); }

.featured-card .card-body {
  padding: 32px;
  transform: translateZ(20px);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-card .card-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.featured-card .card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
  text-wrap: balance;
}
.featured-card .card-excerpt {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  text-wrap: pretty;
}

.article-list {
  display: flex;
  flex-direction: column;
}
.article-list-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition), background var(--transition);
  border-radius: var(--radius-sm);
  position: relative;
}
.article-list-item:first-child { padding-top: 0; }
.article-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.article-list-item:hover { transform: translateX(6px); }

.article-list-item .list-image {
  flex-shrink: 0;
  width: 132px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}
.article-list-item .list-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.article-list-item:hover .list-image img { transform: scale(1.06); }

.article-list-item .list-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.list-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.list-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   CONTENT WITH SIDEBAR
   ═══════════════════════════════════════════ */

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding-bottom: 64px;
}
.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sidebar-widget:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.sidebar-widget h3,
.sidebar-widget .widget-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-widget h3::before,
.sidebar-widget .widget-title::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--primary);
  border-radius: 999px;
}

.trending-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: trend;
}
.trending-list li {
  counter-increment: trend;
  display: flex;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}
.trending-list li:last-child { padding-bottom: 0; border-bottom: none; }
.trending-list li::before {
  content: counter(trend, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--border-strong);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1;
}
.trending-list a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.005em;
  transition: color var(--transition);
}
.trending-list a:hover { color: var(--primary); }

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.tag-cloud a:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-1px);
}

.sidebar-newsletter {
  background: var(--text);
  color: var(--bg);
  border: none;
}
.sidebar-newsletter h3,
.sidebar-newsletter .widget-title {
  color: var(--bg);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.sidebar-newsletter p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.sidebar-newsletter input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--bg);
  font-family: inherit;
  margin-bottom: 10px;
  outline: none;
}
.sidebar-newsletter input::placeholder { color: rgba(255, 255, 255, 0.5); }
.sidebar-newsletter button {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), background var(--transition);
}
.sidebar-newsletter button:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   NEWSLETTER CTA (full)
   ═══════════════════════════════════════════ */

.newsletter-section {
  position: relative;
  margin: 48px 0;
  padding: 64px 48px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
  transform-style: preserve-3d;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, var(--primary-glow), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.3), transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}
.newsletter-section > * { position: relative; z-index: 1; }
.newsletter-section h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--bg);
  text-wrap: balance;
}
.newsletter-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 28px;
  text-wrap: pretty;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 6px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  font-size: 15px;
  background: transparent;
  border: none;
  color: var(--bg);
  font-family: inherit;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form button {
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
}
.newsletter-form button:hover {
  background: var(--primary-light);
  transform: translateX(2px);
}

/* ═══════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════ */

.single-post-header {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 64px 0 32px;
  text-align: center;
}
.single-post-header .card-category {
  display: inline-block;
  margin-bottom: 16px;
}
.single-post-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
  text-wrap: balance;
}
.post-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary);
}
.post-meta-avatar img {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: block;
}
.post-meta-author { font-weight: 600; color: var(--text); }

.single-post-featured {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  padding: 0 var(--container-pad);
}
.single-post-featured img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
}

.single-post-content {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}
.single-post-content > * + * { margin-top: 1.4em; }
.single-post-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 2em;
  margin-bottom: 0.5em;
  text-wrap: balance;
}
.single-post-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-top: 1.6em;
}
.single-post-content p { text-wrap: pretty; }
.single-post-content blockquote {
  margin: 2em 0;
  padding: 0 0 0 32px;
  border-left: 4px solid var(--primary);
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
}
.single-post-content a {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  transition: background var(--transition);
}
.single-post-content a:hover { background: rgba(37, 99, 235, 0.08); }
.single-post-content img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.single-post-content figure { margin: 2em 0; }
.single-post-content figcaption {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}
.single-post-content ul,
.single-post-content ol {
  padding-left: 1.5em;
}
.single-post-content li + li { margin-top: 0.5em; }
.single-post-content code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: var(--radius-xs);
}
.single-post-content pre {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 14px;
}

.single-post-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}
.share-widget h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}
.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.share-btn {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.share-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: var(--shadow);
}
.share-facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-twitter:hover { background: #000; color: #fff; border-color: #000; }
.share-whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-copy:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.single-post-footer {
  max-width: 920px;
  margin: 64px auto 0;
}
.single-post-footer .tag-cloud { margin-bottom: 48px; }

.author-box {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}
.author-avatar img {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: block;
}
.author-info { flex: 1; }
.author-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.author-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 4px 0 8px;
}
.author-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 64px;
}
.post-nav-link {
  padding: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition);
}
.post-nav-link:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.post-nav-next { text-align: right; align-items: flex-end; }
.post-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-nav-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-articles {
  margin-bottom: 64px;
}
.related-articles .section-title { margin-bottom: 24px; }

.comments-section {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.comments-section h2,
.comments-section .comments-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.comment-list {
  list-style: none;
  margin-bottom: 32px;
}
.comment-list li { margin-bottom: 24px; }
.comment-body {
  padding: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.comment-author .avatar { border-radius: 50%; }
.comment-author cite {
  font-style: normal;
  font-weight: 600;
}
.comment-meta { font-size: 12px; color: var(--text-muted); }
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  outline: none;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--primary); }
.comment-form .submit,
.comment-form button[type="submit"] {
  padding: 12px 28px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: transform var(--transition);
}
.comment-form .submit:hover { transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   404
   ═══════════════════════════════════════════ */

.error-404 {
  text-align: center;
  padding: 80px 0;
  max-width: 720px;
  margin: 0 auto;
}
.error-404-icon {
  margin: 0 auto 24px;
  width: 120px; height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.error-404 h1 {
  font-family: var(--font-serif);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.error-404-text {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.error-404-search { max-width: 480px; margin: 0 auto 24px; }
.error-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--text);
  color: var(--bg);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition);
}
.error-404-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.error-404-recent { margin-top: 80px; text-align: left; }

/* ═══════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════ */

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.pagination .nav-links,
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pagination .page-numbers,
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.pagination .page-numbers:hover,
.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}
.pagination .current {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
  position: relative;
  margin-top: 96px;
  padding: 72px 0 32px;
  background: var(--bg-dark);
  color: #d1d5db;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.15), transparent 60%),
              radial-gradient(circle at 80% 100%, rgba(236, 72, 153, 0.1), transparent 60%);
  pointer-events: none;
}
.site-footer > * { position: relative; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo .media { color: #fff; }
.footer-brand .logo .inak { color: var(--primary-light); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 20px;
  max-width: 36ch;
  text-wrap: pretty;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #9ca3af;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: #9ca3af;
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}
.footer-col a:hover { color: #fff; transform: translateX(3px); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #6b7280;
}

/* ═══════════════════════════════════════════
   FAB BUTTONS (dark mode + back to top)
   ═══════════════════════════════════════════ */

.dark-mode-fab,
.back-to-top {
  position: fixed !important;
  right: 24px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35), 0 2px 6px rgba(0,0,0,0.12);
  z-index: 9990;
  transition: all var(--transition);
}
.dark-mode-fab { bottom: 24px; }
.back-to-top {
  bottom: 88px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dark-mode-fab:hover,
.back-to-top:hover {
  transform: translateY(-3px) scale(1.06);
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5), 0 4px 8px rgba(0,0,0,0.15);
}
.back-to-top:hover { transform: translateY(-5px) scale(1.06); }

/* WordPress admin bar adjustment — posun FAB nizsie ak je admin bar prilepeny dole */
.admin-bar .dark-mode-fab { bottom: 24px; }
@media (max-width: 782px) {
  .admin-bar .dark-mode-fab,
  .admin-bar .back-to-top { right: 16px; }
}

/* ═══════════════════════════════════════════
   READING PROGRESS
   ═══════════════════════════════════════════ */

.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 999;
  transition: width 100ms linear;
  box-shadow: 0 0 12px var(--primary-glow);
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1100px) {
  .articles-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  :root { --container-pad: 20px; }

  /* ═══ Vypnutie 3D na mobile/tablete — perspective + preserve-3d sposobuje
     prekryvanie kariet a divne transformy. Plne flat layout. ═══ */
  .hero-section,
  .article-card,
  .featured-card,
  .post-nav-link,
  .sidebar-widget,
  .author-box { perspective: none !important; }

  .hero-grid,
  .hero-main,
  .hero-sidebar,
  .hero-side-card,
  .article-card,
  .featured-card,
  .hero-main .hero-overlay,
  .hero-side-card .hero-overlay {
    transform-style: flat !important;
    transform: none !important;
  }

  .mobile-nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    height: calc(100vh - var(--header-height));
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 320ms var(--ease-out);
    z-index: 99;
    border-bottom: none;
    overflow-y: auto;
  }
  .site-nav.mobile-open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    padding: 24px;
    gap: 8px;
  }
  .nav-list a {
    padding: 14px 18px;
    font-size: 16px;
  }
  /* ═══ Mobile: dropdown ako vnorene polozky (nie absolute) ═══ */
  .sub-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 4px 0 4px 16px;
    margin-top: 4px;
    border-left: 2px solid var(--border);
  }
  .sub-menu a {
    padding: 10px 14px;
    font-size: 14px;
  }
  .nav-list li.has-children .nav-caret {
    margin-left: auto;
  }
  .nav-list li.has-children::after { display: none !important; }

  /* ═══ HERO — single column, no grid-row span ═══ */
  .hero-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    gap: 16px;
  }
  .hero-main,
  .hero-sidebar {
    grid-row: auto !important;
    grid-column: auto !important;
    width: 100%;
  }
  .hero-main {
    aspect-ratio: 16/10;
    min-height: 320px;
    height: auto;
  }
  .hero-main .hero-overlay { padding: 24px; }
  .hero-main .hero-title { font-size: clamp(22px, 5.5vw, 32px); }
  .hero-main .hero-excerpt { font-size: 15px; }

  .hero-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .hero-side-card {
    aspect-ratio: 4/5;
    min-height: 220px;
  }
  .hero-side-card .hero-overlay { padding: 16px; }
  .hero-side-card .hero-title { font-size: 16px; line-height: 1.2; }

  .featured-layout { grid-template-columns: 1fr; gap: 24px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .content-with-sidebar { grid-template-columns: 1fr; gap: 32px; }
  .sidebar { position: static; }
  .single-post-layout { grid-template-columns: 1fr; gap: 32px; }
  .single-post-sidebar { position: static; }
  .share-buttons { flex-direction: row; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .post-navigation { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --container-pad: 16px; --header-height: 64px; }

  /* ═══ Hero — single column aj sidebar ═══ */
  .hero-sidebar { grid-template-columns: 1fr; gap: 12px; }
  .hero-side-card { aspect-ratio: 16/10; min-height: 200px; }
  .hero-main { min-height: 280px; aspect-ratio: 4/3; }
  .hero-main .hero-overlay { padding: 20px; }
  .hero-main .hero-title { font-size: clamp(20px, 6vw, 28px); }
  .hero-main .hero-excerpt { display: none; }

  .articles-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .newsletter-section { padding: 48px 20px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); gap: 8px; padding: 8px; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; }
  .breaking-label { padding: 0 10px; font-size: 10px; letter-spacing: 0.06em; }
  .breaking-label::after { display: none; }
  .single-post-content { font-size: 17px; }
  .article-list-item { gap: 12px; }
  .article-list-item .list-image { width: 96px; height: 96px; flex-shrink: 0; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-title { font-size: clamp(22px, 5vw, 28px); }

  /* Header — kompaktnejsi */
  .site-header .container { padding: 0 var(--container-pad); }
  .logo { font-size: 18px; gap: 8px; }
  .logo svg { width: 36px; height: 36px; }
  .search-toggle, .mobile-nav-toggle { width: 40px; height: 40px; }

  /* Single post — typografia */
  .single-post-title { font-size: clamp(28px, 7vw, 40px) !important; }
  .single-post-header { padding: 32px 0 20px; }
  .single-post-meta { flex-wrap: wrap; gap: 8px; font-size: 13px; }
}

/* ═══════════════════════════════════════════
   PREFERS REDUCED MOTION
   ═══════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .mi-cursor, .mi-cursor-ring, .mi-cursor-glow { display: none !important; }
  body.has-cursor { cursor: auto; }
  .fade-in { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════ */

@media print {
  .site-header, .site-footer, .breaking-bar,
  .dark-mode-fab, .back-to-top, .reading-progress,
  .mi-cursor, .mi-cursor-ring, .mi-cursor-glow,
  .single-post-sidebar, .post-navigation, .related-articles,
  .comments-section, .newsletter-section { display: none !important; }
  body { background: #fff; color: #000; }
  .single-post-content { font-size: 12pt; }
}
