/* ─── CSS Variables ─────────────────────────────────────── */
    :root {
      --bg:          #0a0a0b;
      --bg2:         #0f0f11;
      --bg3:         #131315;
      --surface:     #171719;
      --border:      #25252a;
      --text:        #e1ddd7;
      --text-muted:  #9a9490;
      --text-dim:    #68635f;
      --accent:      #b5382a;
      --accent-dim:  #7a2219;
      --accent-glow: rgba(181,56,42,0.18);
      --gold:        #c8a96e;
      --gold-dim:    #7a6640;
      --font-serif:  'Crimson Pro', Georgia, serif;
      --font-sans:   'DM Sans', sans-serif;
      --radius:      3px;
      --skull-pattern: linear-gradient(rgba(18,18,20,.68), rgba(18,18,20,.68)), url('/themes/residuoscuro/assets/img/skull-watermark-pattern.jpg');
    }

    /* ─── Reset & Base ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.6;
      min-height: 100vh;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ─── Noise Texture Overlay ─────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ─── Header / Nav ──────────────────────────────────────── */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10,10,11,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
    }
    .logo {
      font-family: var(--font-serif);
      font-size: 1.55rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .logo-dot {
      width: 8px; height: 8px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2.4s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:0.5; transform:scale(0.7); }
    }
    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 6px 12px;
      border-radius: var(--radius);
      transition: color .2s, background .2s;
    }
    nav a:hover { color: var(--text); background: var(--surface); }
    nav a.active { color: var(--accent); }
    .nav-search {
      background: none;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--text-muted);
      padding: 5px 10px;
      font-size: 0.82rem;
      font-family: var(--font-sans);
      cursor: pointer;
      transition: border-color .2s, color .2s;
    }
    .nav-search:hover { border-color: var(--accent); color: var(--text); }
    .hamburger {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      width: 34px;
      height: 34px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      appearance: none;
      -webkit-appearance: none;
    }
    .hamburger:hover,
    .hamburger:focus,
    .hamburger:active {
      background: transparent;
      box-shadow: none;
      outline: none;
    }
    .hamburger:focus-visible { outline: 1px solid rgba(181,56,42,.72); outline-offset: 4px; }
    .hamburger span {
      display: block;
      width: 26px; height: 2px;
      background: var(--accent);
      border-radius: 999px;
      transition: all .3s;
    }
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      padding: 12px 24px 20px;
    }
    .mobile-menu a {
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      transition: color .2s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover, .mobile-menu a.active { color: var(--accent); }
    .mobile-menu.open { display: flex; }

    /* ─── Hero ──────────────────────────────────────────────── */
    .hero {
      position: relative;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(181,56,42,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(181,56,42,0.04) 0%, transparent 60%);
    }
    .hero-inner {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 24px 24px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 24px;
      align-items: stretch;
    }
    .hero-featured {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color .3s;
    }
    .hero-featured:hover { border-color: var(--accent-dim); }
    .hero-slider { min-height: 500px; }
    .hero-slide {
      position: absolute;
      inset: 0;
      display: block;
      min-height: 500px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .45s ease;
    }
    .hero-slide.active {
      opacity: 1;
      pointer-events: auto;
      z-index: 2;
    }
    .hero-featured-img {
      width: 100%;
      height: 100%;
      min-height: 500px;
      background: var(--bg3);
      position: absolute;
      inset: 0;
      overflow: hidden;
      display: block;
    }
    .hero-featured-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(10,10,11,.95) 0%, rgba(10,10,11,.66) 42%, rgba(10,10,11,.15) 76%, transparent 100%),
        linear-gradient(to right, rgba(10,10,11,.55), transparent 54%);
    }
    .placeholder-img {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 4rem; opacity: 0.15;
    }
    .hero-featured-body {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 3;
      padding: 50px 32px 32px;
      display: block;
      background: linear-gradient(to top, rgba(10,10,11,.42), transparent);
    }
    .category-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .category-tag::before {
      content: '';
      display: block;
      width: 16px; height: 1px;
      background: var(--accent);
    }
    .hero-featured h1 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 600;
      line-height: 1.12;
      color: #fff;
      margin-bottom: 12px;
      max-width: 720px;
    }
    .hero-featured p {
      font-size: 0.95rem;
      color: rgba(255,255,255,.74);
      line-height: 1.65;
      margin-bottom: 18px;
      max-width: 660px;
    }
    .read-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 10px 20px;
      border-radius: var(--radius);
      align-self: flex-start;
      transition: background .2s, transform .15s;
    }
    .read-btn:hover { background: #c94030; transform: translateY(-1px); }
    .read-btn svg { width: 14px; height: 14px; }

    /* Hero sidebar */
    .hero-sidebar { display: flex; flex-direction: column; justify-content: space-between; gap: 14px; min-height: 500px; }
    .hero-sidebar-post {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      display: grid;
      grid-template-columns: 116px 1fr;
      overflow: hidden;
      transition: border-color .25s, background .2s, padding .2s;
      flex: 1;
      min-height: 0;
    }
    .hero-thumb { cursor: pointer; }
    .hero-sidebar-post:hover { border-color: var(--accent-dim); }
    .hero-sidebar-post.active {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(181,56,42,.22), 0 0 24px rgba(181,56,42,.12);
      background: var(--bg3);
    }
    .sidebar-thumb {
      background: linear-gradient(135deg, #1a1012, #0d0808);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; opacity: 0.5;
    }
    .sidebar-post-body { padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
    .sidebar-cat {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
      margin-bottom: 5px;
    }
    .sidebar-post-body h3 {
      font-family: var(--font-serif);
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.3;
      color: var(--text);
      margin-bottom: 6px;
    }
    .sidebar-post-body h3 a:hover { color: #fff; }
    .post-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      color: var(--text-dim);
    }
    .post-meta span { display: flex; align-items: center; gap: 3px; }

    /* ─── ADV Banner ────────────────────────────────────────── */
    .adv-banner {
      max-width: 1400px;
      margin: 28px auto;
      padding: 0 24px;
    }
    .adv-slot {
      background: var(--surface);
      border: 1px dashed var(--border);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-dim);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
    }
    .adv-slot::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(181,56,42,0.03), transparent);
    }
    .adv-slot-leaderboard { height: 90px; }
    .adv-slot-rectangle { height: 250px; }
    .adv-label {
      position: absolute;
      top: 6px; left: 8px;
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      color: var(--text-dim);
      opacity: 0.6;
    }

    /* Temporarily hide advertising placements. */
    .adv-banner,
    .adv-slot,
    .adv-slot-banner,
    .sidebar-adv,
    .sidebar-adv-mid {
      display: none !important;
    }

    /* ─── Main Layout ───────────────────────────────────────── */
    .main-wrap {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px 60px;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 44px;
      align-items: start;
    }

    .home-main {
      position: relative;
      margin-top: 44px;
      padding-top: 44px;
      border-top: 1px solid rgba(181,56,42,.22);
    }
    .home-main::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 24px;
      width: min(260px, calc(100% - 48px));
      height: 1px;
      background: linear-gradient(90deg, var(--accent), rgba(181,56,42,0));
    }
    .home-main section + section,
    .home-main .adv-slot + section { margin-top: 112px; }

    /* ─── Section Header ────────────────────────────────────── */
    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      font-weight: 600;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-title::before {
      content: '';
      display: block;
      width: 4px; height: 18px;
      background: var(--accent);
      border-radius: 2px;
    }
    .section-link {
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color .2s;
    }
    .section-link:hover { color: var(--accent); }

    /* ─── Post Card Grid ────────────────────────────────────── */
    .post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
    .latest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 36px; }
    .post-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      transition: border-color .25s, transform .2s, background .2s;
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 0;
    }
    .post-card:hover { border-color: var(--accent-dim); background-color: #141213; transform: translateY(-2px); }
    .card-thumb {
      aspect-ratio: 16 / 9;
      background: var(--bg3);
      border-bottom: 1px solid var(--border);
      display: block;
      position: relative;
      overflow: hidden;
      flex: 0 0 auto;
    }
    .card-thumb img { transition: transform .35s ease, filter .35s ease; }
    .post-card:hover .card-thumb img { transform: scale(1.015); filter: contrast(1.04) saturate(1.04); }

    .post-card,
    .hero-featured,
    .hero-slider,
    .hero-sidebar-post.active,
    .widget,
    .article-content,
    .author-bio,
    .rel-card,
    .featured-post,
    .newsletter-box,
    .legal-inner,
    .page-btn,
    .nl-box,
    .stat-card,
    .subcat-pill,
    .share-btn {
      background-image: var(--skull-pattern);
      background-size: auto, 420px 240px;
      background-repeat: repeat, repeat;
      background-blend-mode: normal;
    }
    .post-card,
    .hero-featured,
    .hero-slider,
    .hero-sidebar-post.active,
    .widget,
    .article-content,
    .author-bio,
    .rel-card,
    .featured-post,
    .newsletter-box,
    .legal-inner,
    .nl-box,
    .stat-card,
    .subcat-pill,
    .share-btn { background-color: var(--surface); }
    .card-body,
    .rel-body,
    .featured-body,
    .widget-head,
    .newsletter-box > *,
    .legal-inner > * { position: relative; z-index: 1; }
    .card-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; min-height: 246px; }
    .card-body .category-tag { margin-bottom: 8px; }
    .card-body h2 {
      font-family: var(--font-serif);
      font-size: 1.18rem;
      font-weight: 600;
      line-height: 1.28;
      color: var(--text);
      margin-bottom: 12px;
      min-height: 3.05em;
    }
    .card-body h2 a:hover { color: #fff; }
    .card-body p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.62;
      margin-bottom: 18px;
      min-height: 2.9em;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
    }
    .card-footer .post-meta { color: var(--text-dim); }
    .card-read {
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      color: var(--accent);
      text-transform: uppercase;
      font-weight: 500;
    }
    .card-read:hover { color: #d44a3a; }

    /* ─── Sidebar ───────────────────────────────────────────── */
    .sidebar { display: flex; flex-direction: column; gap: 32px; }

    /* Categories widget */
    .widget {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
    }
    .widget-head {
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
      font-family: var(--font-serif);
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .widget-head::before {
      content: '';
      display: block;
      width: 3px; height: 14px;
      background: var(--accent);
      border-radius: 1px;
    }
    .cat-list { list-style: none; }
    .cat-list li {
      border-bottom: 1px solid var(--border);
    }
    .cat-list li:last-child { border-bottom: none; }
    .cat-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 18px;
      font-size: 0.85rem;
      color: var(--text-muted);
      transition: color .2s, background .2s;
    }
    .cat-list a:hover { color: var(--text); background: rgba(255,255,255,0.03); }
    .cat-count {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 2px;
      font-size: 0.68rem;
      padding: 1px 6px;
      color: var(--text-dim);
    }

    /* Popular widget */
    .popular-list { list-style: none; }
    .popular-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 12px;
      padding: 13px 18px;
      border-bottom: 1px solid var(--border);
      align-items: start;
    }
    .popular-list li:last-child { border-bottom: none; }
    .popular-num {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      color: var(--text-dim);
      line-height: 1;
      padding-top: 2px;
    }
    .popular-list li:first-child .popular-num { color: var(--accent); }
    .popular-title {
      font-size: 0.85rem;
      line-height: 1.35;
      color: var(--text-muted);
      font-weight: 400;
    }
    .popular-title a:hover { color: var(--text); }
    .popular-meta {
      font-size: 0.7rem;
      color: var(--text-dim);
      margin-top: 3px;
    }

    /* Newsletter widget */
    .newsletter-widget { padding: 20px 18px; }
    .newsletter-widget p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .nl-form { display: flex; flex-direction: column; gap: 8px; }
    .nl-input {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--text);
      font-family: var(--font-sans);
      font-size: 0.85rem;
      padding: 9px 12px;
      width: 100%;
      transition: border-color .2s;
    }
    .nl-input:focus { outline: none; border-color: var(--accent); }
    .nl-input::placeholder { color: var(--text-dim); }
    .nl-btn {
      background: var(--accent);
      border: none;
      border-radius: var(--radius);
      color: #fff;
      font-family: var(--font-sans);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 9px;
      cursor: pointer;
      transition: background .2s;
    }
    .nl-btn:hover { background: #c94030; }
    .nl-note {
      font-size: 0.68rem;
      color: var(--text-dim);
      text-align: center;
    }

    /* Tags cloud */
    .tags-cloud { padding: 16px 18px; display: flex; flex-wrap: wrap; gap: 6px; }
    .tag {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 2px;
      font-size: 0.72rem;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      padding: 4px 9px;
      transition: border-color .2s, color .2s;
    }
    .tag:hover { border-color: var(--accent-dim); color: var(--accent); }

    /* ─── Divider Line Posts ────────────────────────────────── */
    .list-posts { display: flex; flex-direction: column; gap: 14px; }
    .list-post-item {
      display: grid;
      grid-template-columns: 124px 1fr;
      gap: 18px;
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: 4px;
      align-items: center;
      background: rgba(255,255,255,.015);
    }
    .list-post-item:first-child { border-top: 1px solid var(--border); }
    .list-thumb {
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, #1a1012, #0d0808);
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      overflow: hidden;
    }
    .list-body h3 {
      font-family: var(--font-serif);
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
      margin-bottom: 5px;
    }
    .list-body h3 a:hover { color: #fff; }
    .list-body .post-meta { color: var(--text-dim); }

    /* ─── Pagination ────────────────────────────────────────── */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 36px;
    }
    .page-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 36px;
      padding: 0 12px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-size: 0.78rem;
      line-height: 1;
      letter-spacing: 0.04em;
      white-space: nowrap;
      color: var(--text-muted);
      transition: all .2s;
    }
    .page-btn:not(.page-prev):not(.page-next) {
      width: 36px;
      padding: 0;
    }
    .page-prev,
    .page-next {
      min-width: 104px;
      text-transform: uppercase;
    }
    .page-gap {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 36px;
      min-width: 24px;
      color: var(--text-dim);
    }
    .page-btn:hover { border-color: var(--accent-dim); color: var(--text); }
    .page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
    .page-btn.disabled { opacity: 0.3; pointer-events: none; }

    /* ─── Footer ────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      background: var(--bg2);
      padding: 48px 24px 24px;
    }
    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 44px;
      margin-bottom: 40px;
    }
    .footer-brand .logo { margin-bottom: 12px; }
    .footer-brand p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.65;
      max-width: 260px;
    }
    .footer-col h4 {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul li a {
      font-size: 0.85rem;
      color: var(--text-muted);
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--accent); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
    .footer-bottom a { color: var(--text-dim); transition: color .2s; }
    .footer-bottom a:hover { color: var(--accent); }

    /* ─── Breadcrumb ────────────────────────────────────────── */
    .breadcrumb {
      max-width: 1400px;
      margin: 0 auto;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      color: var(--text-dim);
    }
    .breadcrumb a { color: var(--text-muted); transition: color .2s; }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb span { color: var(--text-dim); }

    /* ─── Responsive ────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-sidebar { flex-direction: row; flex-wrap: wrap; }
      .hero-sidebar-post { flex: 1 1 calc(50% - 8px); }
      .main-wrap { grid-template-columns: 1fr; }
      .sidebar { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .nav-inner nav, .nav-search { display: none; }
      .hamburger { display: flex; }
      .hero-inner { padding: 16px; gap: 20px; }
      .hero-featured h1 { font-size: 1.5rem; }
      .hero-sidebar { flex-direction: column; }
      .hero-sidebar-post { flex: 1 1 100%; }
      .post-grid,
      .latest-grid { grid-template-columns: 1fr; }
      .home-main { margin-top: 32px; padding-top: 32px; }
      .home-main section + section,
      .home-main .adv-slot + section { margin-top: 112px; }
      .main-wrap { padding: 0 16px 40px; gap: 28px; }
      .adv-banner { padding: 0 16px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    .hero-featured-img img,
    .sidebar-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .card-thumb img,
    .list-thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Wider magazine layout refinements */
    .content-col { min-width: 0; display: flex; flex-direction: column; gap: 32px; }
    .cat-header,
    .post-hero {
      position: relative;
      overflow: hidden;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
    }
    .cat-header-bg,
    .post-hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 56% 48% at 76% 44%, rgba(181,56,42,.08), transparent 70%),
        radial-gradient(ellipse 44% 54% at 18% 90%, rgba(181,56,42,.04), transparent 64%);
    }
    .cat-header-inner,
    .post-hero-inner {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 44px 24px 52px;
    }
    .cat-header-inner {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
    }
    .cat-eyebrow,
    .post-hero-cat {
      color: var(--accent);
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .cat-header h1,
    .post-hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.3rem, 4vw, 4.4rem);
      line-height: 1.05;
      color: #fff;
      margin-bottom: 14px;
      max-width: 920px;
    }
    .cat-desc,
    .post-hero-excerpt {
      max-width: 760px;
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
    }
    .cat-stats {
      display: flex;
      align-items: center;
      gap: 20px;
      min-width: 260px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 18px 22px;
    }
    .stat-num { font-family: var(--font-serif); font-size: 2rem; color: #fff; line-height: 1; }
    .stat-label { color: var(--text-dim); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 5px; }
    .stat-sep { width: 1px; align-self: stretch; background: var(--border); }
    .subcat-bar {
      max-width: 1400px;
      margin: 22px auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .subcat-label { color: var(--text-dim); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
    .subcat-pill,
    .share-btn {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--text-muted);
      background: var(--surface);
      padding: 7px 11px;
      font-size: .78rem;
      transition: color .2s, border-color .2s, background .2s;
    }
    .subcat-pill:hover,
    .subcat-pill.active,
    .share-btn:hover { color: #fff; border-color: var(--accent-dim); background: var(--bg3); }
    .review-category-guide {
      max-width: 1400px;
      margin: 0 auto 26px;
      padding: 0 24px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: stretch;
    }
    .review-guide-copy,
    .review-guide-metrics {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 22px 24px;
    }
    .review-guide-copy span {
      display: block;
      color: var(--accent);
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .review-guide-copy p {
      max-width: 760px;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .review-guide-metrics {
      min-width: 330px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      align-items: center;
    }
    .review-guide-metrics div { border-left: 1px solid rgba(255,255,255,.08); padding-left: 14px; }
    .review-guide-metrics div:first-child { border-left: 0; padding-left: 0; }
    .review-guide-metrics strong {
      display: block;
      font-family: var(--font-serif);
      color: #fff;
      font-size: 1.7rem;
      line-height: 1;
      margin-bottom: 6px;
    }
    .review-guide-metrics span {
      color: var(--text-dim);
      font-size: .68rem;
      letter-spacing: .09em;
      text-transform: uppercase;
    }
    .review-poster-rail {
      max-width: 1400px;
      margin: 0 auto 34px;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 14px;
    }
    .review-poster-tile {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 4px;
      background: #080809;
      aspect-ratio: 2 / 3;
      transition: transform .2s, border-color .2s;
    }
    .review-poster-tile:hover { transform: translateY(-2px); border-color: var(--accent-dim); }
    .review-poster-tile img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      background: #080809;
    }
    .review-poster-tile span {
      position: absolute;
      left: 8px;
      bottom: 8px;
      background: rgba(10,10,11,.78);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 4px;
      padding: 4px 7px;
      color: #fff;
      font-size: .68rem;
    }
    .featured-post {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      align-items: stretch;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
    }
    .featured-thumb {
      position: relative;
      display: block;
      min-height: 100%;
      overflow: hidden;
      background: var(--bg3);
    }
    .featured-thumb img,
    .post-cover img,
    .rel-thumb img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
    }
    .featured-thumb img {
      height: 100%;
      object-fit: cover;
    }
    .featured-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      background: var(--accent);
      color: #fff;
      border-radius: var(--radius);
      padding: 6px 10px;
      font-size: .7rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .featured-body { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
    .featured-body h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 2.4vw, 2.8rem);
      line-height: 1.1;
      color: #fff;
      margin-bottom: 14px;
    }
    .featured-body p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
    .review-featured-meta {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 16px;
      align-items: center;
      margin: 0 0 22px;
      padding: 16px;
      border: 1px solid rgba(181,56,42,.28);
      background: rgba(181,56,42,.08);
      border-radius: 4px;
    }
    .review-score-large {
      display: flex;
      align-items: baseline;
      gap: 3px;
      color: var(--accent);
    }
    .review-score-large strong {
      font-family: var(--font-serif);
      font-size: 2.1rem;
      color: #fff;
      line-height: 1;
    }
    .review-score-large span { color: var(--text-muted); font-size: .8rem; }
    .review-featured-facts { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
    .review-featured-facts strong { color: #fff; line-height: 1.3; }
    .review-featured-facts span { color: var(--text-muted); font-size: .82rem; line-height: 1.45; }
    .review-card .card-body { gap: 0; }
    .review-card-facts {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 12px;
      color: var(--text-dim);
      font-size: .74rem;
    }
    .review-card-facts span {
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 4px;
      padding: 4px 7px;
      background: rgba(255,255,255,.025);
    }
    .review-card-facts .review-score {
      border-color: rgba(181,56,42,.38);
      color: #fff;
      background: rgba(181,56,42,.16);
    }
    @media (max-width: 900px) {
      .review-category-guide { grid-template-columns: 1fr; }
      .review-guide-metrics { min-width: 0; }
      .review-poster-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .review-category-guide,
      .review-poster-rail { padding: 0 16px; }
      .review-guide-metrics { grid-template-columns: 1fr; gap: 10px; }
      .review-guide-metrics div,
      .review-guide-metrics div:first-child { border-left: 0; padding-left: 0; }
      .review-poster-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .review-featured-meta { grid-template-columns: 1fr; }
    }
    .toolbar {
      border-bottom: 1px solid var(--border);
      padding-bottom: 12px;
      color: var(--text-muted);
      font-size: .85rem;
    }
    .post-cover {
      position: relative;
      margin: 0 0 38px;
      padding: 0;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 4px;
      background: var(--bg3);
      box-shadow: 0 22px 48px rgba(0,0,0,.28);
    }
    .post-cover::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(to top, rgba(10,10,11,.34), transparent 42%);
    }
    .post-cover img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      border: 0;
      border-radius: 0;
    }
    .post-wrap {
      max-width: 1400px;
      margin: 0 auto;
      padding: 44px 24px 70px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px;
      gap: 44px;
      align-items: start;
    }
    .post-wrap .article-content { order: 1; }
    .post-wrap .sidebar { order: 2; }
    .article-content {
      min-width: 0;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 42px;
      box-shadow: 0 26px 70px rgba(0,0,0,.2);
    }
    .adv-slot-banner { height: 90px; margin-bottom: 30px; }
    .prose {
      font-family: var(--font-serif);
      font-size: 1.18rem;
      line-height: 1.86;
      color: #e5ded5;
      max-width: 860px;
      margin: 0 auto;
    }
    .prose p {
      margin-bottom: 1.35em;
      color: #e2dbd2;
      text-wrap: pretty;
    }
    .prose > p:first-child {
      position: relative;
      margin: 0 0 1.55em;
      padding: 20px 24px 20px 28px;
      border-left: 3px solid var(--accent);
      background: linear-gradient(90deg, rgba(181,56,42,.13), rgba(255,255,255,.022));
      color: #f3ece2;
      font-size: 1.28rem;
      line-height: 1.72;
    }
    .prose > p:first-child::first-letter {
      float: left;
      font-size: 4.4rem;
      line-height: .78;
      padding: 10px 10px 0 0;
      color: #f2e7d7;
      text-shadow: 0 0 22px rgba(181,56,42,.28);
    }
    .prose h2,
    .prose h3,
    .prose blockquote { margin-bottom: 1.2em; }
    .prose h2,
    .prose h3 { color: #fff; line-height: 1.16; text-wrap: balance; }
    .prose h2 {
      position: relative;
      margin-top: 2.35em;
      padding: 24px 0 16px 24px;
      border-top: 1px solid rgba(181,56,42,.24);
      border-bottom: 1px solid rgba(255,255,255,.055);
      font-size: clamp(1.65rem, 2vw, 2.15rem);
    }
    .prose h2::before {
      content: '';
      position: absolute;
      left: 0;
      top: 25px;
      width: 4px;
      height: 30px;
      border-radius: 2px;
      background: var(--accent);
      box-shadow: 0 0 18px rgba(181,56,42,.24);
    }
    .prose h3 {
      margin-top: 1.8em;
      font-size: 1.42rem;
    }
    .prose blockquote {
      border-left: 3px solid var(--accent);
      padding: 18px 22px;
      background: var(--bg3);
      color: #fff;
    }
    .prose hr {
      border: 0;
      height: 1px;
      margin: 2.4em 0;
      background: linear-gradient(90deg, transparent, rgba(181,56,42,.55), transparent);
    }
    .prose a {
      color: #f06a59;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 4px;
    }
    .prose a:hover { color: #fff; }
    .post-tags,
    .share-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      border-top: 1px solid var(--border);
      margin: 34px auto 0;
      padding-top: 22px;
      max-width: 860px;
    }
    .post-tags-label,
    .share-label { color: var(--text-dim); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
    .author-bio {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 16px;
      max-width: 860px;
      margin: 34px auto 0;
      padding: 22px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 4px;
    }
    .author-avatar,
    .author-avatar-lg {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--accent-dim);
      color: #fff;
      font-weight: 600;
    }
    .author-avatar { width: 30px; height: 30px; font-size: .75rem; }
    .author-avatar-lg { width: 58px; height: 58px; }
    .author-chip { display: inline-flex; align-items: center; gap: 8px; }
    .post-hero-meta { display: flex; gap: 20px 28px; flex-wrap: wrap; align-items: center; color: var(--text-muted); }
    .post-hero-meta > span { display: inline-flex; align-items: center; min-height: 36px; }
    .related-section { margin-top: 34px; }
    .related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
    .rel-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
    }
    .rel-thumb { background: var(--bg3); }
    .rel-body { padding: 15px; }
    .rel-cat { color: var(--accent); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
    .rel-card h3 { font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.25; }
    @media (max-width: 1200px) {
      .hero-inner { grid-template-columns: 1fr 400px; }
      .main-wrap { grid-template-columns: 1fr 300px; gap: 32px; }
      .post-wrap { grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; }
      .post-grid,
      .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 900px) {
      .cat-header-inner,
      .post-hero-inner { padding: 34px 24px 42px; }
      .cat-header-inner,
      .featured-post,
      .post-wrap { grid-template-columns: 1fr; display: grid; }
      .featured-thumb {
        min-height: 0;
        aspect-ratio: 16 / 9;
      }
      .cat-stats { width: max-content; margin-top: 22px; }
      .post-wrap .sidebar,
      .post-wrap .article-content { order: initial; }
      .article-content { padding: 24px; }
      .prose { font-size: 1.08rem; line-height: 1.78; }
      .prose > p:first-child { padding: 18px 18px 18px 20px; font-size: 1.14rem; }
      .prose > p:first-child::first-letter { font-size: 3.4rem; }
      .prose h2 { padding-left: 18px; }
    }

    /* Compact dark magazine hero */
    .hero {
      max-width: 1400px;
      margin: 34px auto 0;
      padding: 0 24px;
      background: transparent;
      border-bottom: 0;
      overflow: visible;
    }
    .hero-bg { display: none; }
    .hero-inner {
      max-width: none;
      padding: 0;
      grid-template-columns: 1fr 300px;
      gap: 24px;
    }
    .hero-featured,
    .hero-slider {
      position: relative;
      display: block;
      height: 500px;
      min-height: 500px;
      background-color: var(--surface);
      border-radius: 4px;
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      display: block;
      height: 100%;
      min-height: 0;
    }
    .hero-featured-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      min-height: 0;
      aspect-ratio: auto;
    }
    .hero-featured-img::after {
      z-index: 1;
      background:
        linear-gradient(to top, rgba(10,10,11,.95) 0%, rgba(10,10,11,.58) 48%, rgba(10,10,11,.14) 80%, transparent 100%),
        linear-gradient(to right, rgba(10,10,11,.48), transparent 56%);
    }
    .hero-featured-img img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 48%;
      transition: transform .6s ease;
    }
    .hero-featured-img img[src*="casa-via-gelsi"] { object-position: center 42%; }
    .hero-featured:hover .hero-slide.active .hero-featured-img img { transform: scale(1.03); }
    .hero-slider-nav {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 18px;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      pointer-events: none;
    }
    .hero-slider-btn,
    .hero-slider-dot {
      pointer-events: auto;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(10,10,11,.62);
      color: #fff;
      backdrop-filter: blur(10px);
      transition: background .2s, border-color .2s, transform .15s;
    }
    .hero-slider-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      font-size: 1.35rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .hero-slider-btn:hover,
    .hero-slider-dot:hover { border-color: rgba(181,56,42,.72); background: rgba(181,56,42,.72); transform: translateY(-1px); }
    .hero-slider-dots { display: flex; gap: 7px; align-items: center; }
    .hero-slider-dot {
      width: 8px;
      height: 8px;
      padding: 0;
      border-radius: 50%;
      cursor: pointer;
    }
    .hero-slider-dot.active { width: 22px; border-radius: 999px; background: var(--accent); border-color: var(--accent); }
    .hero-featured-body {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      max-width: 760px;
      padding: 48px 32px 32px;
      background: transparent;
    }
    .hero-featured h1 {
      font-size: 38px;
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .hero-featured p {
      max-width: 560px;
      margin-bottom: 18px;
      color: rgba(255,255,255,.76);
      flex: none;
    }
    .hero-featured .post-meta { color: rgba(255,255,255,.52); }
    .hero-sidebar {
      min-height: 500px;
      gap: 14px;
      justify-content: space-between;
    }
    .hero-sidebar-post {
      grid-template-columns: 116px 1fr;
      min-height: 112px;
      flex: 1 1 0;
      background: transparent;
      border: 0;
      border-bottom: 1px solid var(--border);
      border-radius: 0;
      box-shadow: none;
    }
    .hero-sidebar-post:last-child { border-bottom: 0; }
    .hero-sidebar-post.active {
      padding-left: 8px;
      padding-right: 8px;
      border-left: 3px solid var(--accent);
      border-bottom-color: var(--border);
      background: var(--surface);
      box-shadow: none;
    }
    .sidebar-thumb {
      width: 116px;
      height: 82px;
      align-self: center;
      border-radius: 3px;
      opacity: .95;
      overflow: hidden;
    }
    .sidebar-post-body {
      padding: 14px 8px 14px 14px;
      justify-content: center;
    }

    @media (max-width: 1200px) {
      .hero-inner { grid-template-columns: 1fr 400px; }
    }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-sidebar {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: 0;
      }
      .hero-sidebar-post {
        display: block;
        min-height: 0;
        padding: 0;
        border-left: 0;
      }
      .hero-sidebar-post.active {
        padding: 0;
        border-left: 0;
        border-bottom-color: var(--accent);
      }
      .sidebar-thumb {
        width: 100%;
        height: 96px;
      }
    }
    @media (max-width: 640px) {
      .hero {
        margin-top: 16px;
        padding: 0 16px;
      }
      .hero-featured,
      .hero-slider {
        height: 430px;
        min-height: 430px;
      }
      .hero-featured-body { padding: 38px 20px 62px; }
      .hero-featured h1 { font-size: 26px; }
      .hero-slider-nav { left: 16px; right: 16px; bottom: 16px; justify-content: center; }
      .hero-sidebar { display: none; }
    }

    /* Platform features: newsletter, legal pages, real trending lists */
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .trending-list { list-style: none; }
    .trending-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 13px 18px;
      border-bottom: 1px solid var(--border);
    }
    .trending-item:last-child { border-bottom: 0; }
    .trending-num {
      min-width: 32px;
      font-family: var(--font-serif);
      font-size: 1.45rem;
      line-height: 1;
      color: var(--accent);
    }
    .trending-text .t-cat {
      color: var(--accent);
      font-size: .65rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 5px;
    }
    .trending-text .t-title {
      display: inline-block;
      color: var(--text-muted);
      font-size: .9rem;
      line-height: 1.35;
    }
    .trending-text .t-title:hover { color: #fff; }
    .newsletter-box {
      padding: 20px 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
    }
    .newsletter-box h3 {
      font-family: var(--font-serif);
      color: #fff;
      font-size: 1.25rem;
      margin-bottom: 8px;
    }
    .newsletter-box p {
      color: var(--text-muted);
      font-size: .86rem;
      line-height: 1.55;
      margin-bottom: 14px;
    }
    .newsletter-form { display: grid; gap: 10px; }
    .newsletter-input {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--bg);
      color: var(--text);
      font: inherit;
    }
    .newsletter-input:focus { outline: none; border-color: var(--accent); }
    .newsletter-consent {
      display: grid;
      grid-template-columns: 16px 1fr;
      gap: 8px;
      align-items: start;
      color: var(--text-muted);
      font-size: .72rem;
      line-height: 1.45;
    }
    .newsletter-consent input {
      width: 14px;
      height: 14px;
      margin-top: 2px;
      accent-color: var(--accent);
    }
    .newsletter-consent a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
    .newsletter-btn {
      width: 100%;
      border: 0;
      border-radius: var(--radius);
      background: var(--accent);
      color: #fff;
      cursor: pointer;
      font-size: .78rem;
      letter-spacing: .08em;
      padding: 10px 12px;
      text-transform: uppercase;
    }
    .newsletter-btn:hover { background: #c94030; }
    .legal-page {
      max-width: 920px;
      margin: 0 auto;
      padding: 52px 24px 76px;
    }
    .legal-inner {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 34px;
    }
    .legal-inner h1,
    .legal-inner h2 {
      font-family: var(--font-serif);
      color: #fff;
      line-height: 1.15;
    }
    .legal-inner h1 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 16px; }
    .legal-inner h2 { font-size: 1.45rem; margin: 30px 0 10px; }
    .legal-inner p,
    .legal-inner li {
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 12px;
    }
    .legal-lead {
      color: var(--text);
      font-size: 1.05rem;
    }



@media (max-width: 640px) {
  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .section-title {
    max-width: 100%;
    line-height: 1.15;
  }
  .section-link {
    align-self: flex-start;
    line-height: 1.3;
  }
}

@media (max-width: 640px) {
  .home-main .section-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .home-main .section-title {
    min-width: 0;
    font-size: 1.18rem;
    line-height: 1.12;
  }
  .home-main .section-link {
    align-self: center;
    flex: 0 0 auto;
    white-space: nowrap;
    margin-left: auto;
    text-align: right;
  }
  .latest-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
  }
  .latest-grid .post-card {
    width: 100%;
    min-width: 0;
    height: auto;
  }
  .latest-grid .card-body {
    min-height: 0;
    padding: 20px 18px 22px;
  }
  .latest-grid .card-body h2 {
    min-height: 0;
    font-size: 1.12rem;
  }
  .latest-grid .card-body p {
    min-height: 0;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }
  .latest-grid .card-footer {
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
  }
  .latest-grid .card-read {
    margin-left: auto;
  }
  .hero,
  .hero-inner,
  .hero-featured,
  .hero-slider,
  .hero-slide,
  .post-card,
  .card-body {
    min-width: 0;
  }
  .hero-featured-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-featured h1,
  .card-body h2,
  .section-title {
    overflow-wrap: anywhere;
  }
  .post-hero-meta {
    justify-content: flex-start;
    gap: 4px 14px;
    margin-top: 30px;
    font-size: .82rem;
    color: var(--accent);
    text-align: left;
  }
  .post-hero-meta > span {
    justify-content: flex-start;
    min-height: 0;
    line-height: 1.35;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
  }
  .nav-inner form {
    display: none;
  }
  .hamburger {
    display: flex !important;
    flex: 0 0 34px;
    margin-left: auto;
  }
  html,
  body {
    overflow-x: hidden;
  }
  .hero,
  .main-wrap {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    margin-left: 16px;
    margin-right: 16px;
    padding-left: 0;
    padding-right: 0;
  }
  .main-wrap {
    grid-template-columns: minmax(0, 1fr);
    overflow-x: hidden;
  }
  .home-main,
  .home-main > div {
    min-width: 0;
  }
  .home-main {
    padding-top: 54px;
  }
  .home-main > div,
  .home-main section,
  .latest-grid {
    width: 100%;
    max-width: none;
  }
  .home-main .section-header {
    margin-bottom: 48px;
    padding-right: 56px;
  }
  .hero-featured-body {
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    padding: 38px 0 62px;
  }
  .hero-featured h1,
  .hero-featured h1 a {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .hero-featured h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.62rem);
    line-height: 1.14;
  }
  .hero-featured p {
    max-width: 100%;
  }
  .latest-grid .post-card,
  .latest-grid .card-body,
  .latest-grid .card-body p {
    overflow-wrap: break-word;
  }
  .latest-grid .card-body {
    padding-right: 52px;
  }
  .latest-grid .card-read {
    margin-right: 40px;
  }
}


/* Horror Reviews */
.review-cat-header .cat-header-bg,
.review-post-hero .post-hero-bg {
  background:
    radial-gradient(ellipse 50% 40% at 18% 20%, rgba(200,169,110,.10), transparent 62%),
    radial-gradient(ellipse 60% 55% at 80% 35%, rgba(181,56,42,.12), transparent 68%);
}
.review-filter .subcat-pill.active { border-color: rgba(200,169,110,.48); color: var(--gold); }
.review-featured-post { border-color: rgba(200,169,110,.28); }
.review-grid .post-card,
.review-home-grid .post-card { border-color: rgba(200,169,110,.18); }
.review-score-card {
  margin-top: 22px;
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(200,169,110,.30);
  background: linear-gradient(rgba(16,16,18,.78), rgba(16,16,18,.78)), var(--skull-pattern);
}
.review-score-main {
  min-height: 86px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  border: 1px solid rgba(181,56,42,.42);
  background: rgba(10,10,11,.72);
  color: #fff;
  font-family: var(--font-serif);
}
.review-score-main span { font-size: 3rem; line-height: 1; }
.review-score-main small { color: var(--gold); font-family: var(--font-sans); margin-left: 3px; }
.review-score-copy strong { display:block; color: var(--gold); font-size: .82rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:6px; }
.review-score-copy p { color: var(--text-muted); font-size: .96rem; line-height:1.5; }
.review-poster-widget {
  overflow: hidden;
}
.review-poster-card {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(200,169,110,.24);
  background: linear-gradient(rgba(15,15,17,.86), rgba(15,15,17,.86)), var(--skull-pattern);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
.review-poster-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  aspect-ratio: auto;
  border: 1px solid rgba(255,255,255,.12);
  background: #080809;
}
.review-article .prose > .review-facts,
.review-article .prose > .review-verdict {
  border: 1px solid rgba(200,169,110,.24);
  background: linear-gradient(rgba(18,18,20,.84), rgba(18,18,20,.84)), var(--skull-pattern);
  padding: 18px 20px;
  margin: 26px 0;
}
.review-article .prose > .review-facts ul { margin: 0; padding-left: 18px; }
.review-article .prose > .review-facts li { margin: 6px 0; }
.review-article .prose > .review-verdict strong { color: var(--gold); }
.home-reviews { margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--border); }
.review-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.review-mini-card { border: 1px solid rgba(200,169,110,.22); background: var(--surface); }
.review-mini-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--bg3); }
.review-mini-thumb img { width:100%; height:100%; object-fit:cover; }
.review-mini-body { padding: 15px; background: var(--skull-pattern); }
.review-mini-body span { display:block; color: var(--gold); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; margin-bottom:6px; }
.review-mini-body h3 { font-family: var(--font-serif); font-size:1.25rem; line-height:1.1; margin-bottom:8px; }
.review-mini-body p { color: var(--text-muted); font-size:.92rem; line-height:1.45; }
@media (max-width: 800px) {
  .review-score-card { grid-template-columns: 1fr; }
  .review-strip { grid-template-columns: 1fr; }
}


.review-facts-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  margin: 0 0 24px;
  border: 1px solid rgba(200,169,110,.24);
  background: rgba(200,169,110,.20);
}
.review-facts-panel div {
  min-width: 0;
  padding: 14px 15px;
  background: linear-gradient(rgba(18,18,20,.88), rgba(18,18,20,.88)), var(--skull-pattern);
}
.review-facts-panel span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.review-facts-panel strong {
  display: block;
  color: var(--text);
  font-size: .94rem;
  font-weight: 500;
  line-height: 1.25;
}
@media (max-width: 900px) { .review-facts-panel { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .review-facts-panel { grid-template-columns: 1fr; } }

.article-content.review-article .prose em,
.article-content.review-article .prose em strong,
.article-content.review-article .prose strong em {
  color: var(--accent);
  font-style: italic;
}
