﻿:root {
  --ink: #0f0f0d;
  --ink2: #2c2c28;
  --muted: #6b6b62;
  --pale: #f5f3ee;
  --white: #ffffff;
  --accent: #c8382a;
  --accent2: #e8622a;
  --gold: #b8960c;
  --border: #e2dfd6;
  --serif: 'Playfair Display', Georgia, serif;
  --serif2: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --adv-bg: #f0ede6;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.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; }
.hero-img img, .article-card-img img, .feat-card-img img, .article-horiz-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-main:hover .hero-img img { transform: scale(1.03); }
.hero-img img { transition: transform .6s ease; }
.article-card-img img, .feat-card-img img, .article-horiz-img img { transition: transform .5s ease; }
.article-card:hover .article-card-img img, .feat-card:hover .feat-card-img img, .article-horiz:hover .article-horiz-img img { transform: scale(1.05); }
.search-bar button { border: 0; background: transparent; color: var(--muted); display: flex; padding: 0; cursor: pointer; }
.article-card, .feat-card, .article-horiz, .cat-card { display: block; }
.main-wrap > .content-sidebar > section { min-width: 0; }
.site-header { position: static; background: var(--white); }
.site-footer { background: var(--ink); color: var(--white); margin-top: 80px; }
.footer-grid { max-width: 1400px; margin: 0 auto; padding: 60px 24px 40px; display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)); gap: 32px; }
.footer-logo { font-family: var(--serif); font-size: 42px; font-weight: 900; letter-spacing: -2px; line-height: 1; margin-bottom: 16px; }
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 260px; }

/* â”€â”€â”€ ADV UTILITY â”€â”€â”€ */
.adv-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 4px; }
.adv-slot { background: var(--adv-bg); border: 1px dashed #ccc9be; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; border-radius: 2px; }

/* â”€â”€â”€ TOP BAR â”€â”€â”€ */
.topbar { background: var(--ink); color: var(--white); font-size: 11px; letter-spacing: 1px; display: flex; align-items: center; justify-content: space-between; padding: 6px 24px; }
.topbar a { color: #aaa; margin-left: 16px; }
.topbar-left { display: flex; gap: 16px; }
.topbar span { color: #888; }

/* â”€â”€â”€ HEADER â”€â”€â”€ */
.mobile-menu-toggle {
  display: none;
}

header { border-bottom: 1px solid var(--border); }
.site-header { position: sticky; top: 0; z-index: 100; transition: box-shadow .2s ease, border-color .2s ease; }
.site-header.is-compact { box-shadow: 0 10px 24px rgba(15, 15, 13, .08); }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 20px 0 16px; gap: 16px; }
.brand-lockup { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.logo { font-family: var(--serif); font-size: 52px; font-weight: 900; letter-spacing: -2px; line-height: 1; }
.logo span { color: var(--accent); }
.logo-tag { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 0; }
.logo-tag { white-space: nowrap; }

.header-adv { flex-shrink: 0; }
.header-adv .adv-slot { width: 728px; height: 90px; max-width: 100%; }

.search-bar { display: flex; align-items: center; gap: 8px; background: var(--pale); border-radius: 40px; padding: 8px 16px; max-width: 280px; width: 100%; }
.search-bar input { border: none; background: transparent; font-family: var(--sans); font-size: 13px; color: var(--ink); outline: none; width: 100%; }
.search-bar svg { flex-shrink: 0; color: var(--muted); }

/* â”€â”€â”€ NAV â”€â”€â”€ */
nav { border-top: 1px solid var(--border); }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link { font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; padding: 12px 14px; color: var(--ink2); white-space: nowrap; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.nav-link:hover, .nav-link.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-link.hot { color: var(--accent); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero { max-width: 1400px; margin: 34px auto 0; padding: 0 24px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: stretch; min-height: 500px; }
.hero-main { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; height: 500px; min-height: 500px; background: var(--ink); }
.hero-main:hover .hero-slide.active .hero-img { transform: scale(1.03); }
.hero-slide { position: absolute; inset: 0; display: block; opacity: 0; pointer-events: none; transition: opacity .45s ease; }
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-img { width: 100%; height: 100%; object-fit: cover; background: linear-gradient(135deg, #1a1a18 0%, #3a3530 100%); transition: transform .6s ease; display: flex; align-items: center; justify-content: center; color: #555; font-size: 13px; }
.hero-main .hero-img { min-height: 0; height: 100%; }
.hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,10,8,.92) 0%, rgba(10,10,8,.4) 70%, transparent 100%); padding: 48px 32px 32px; }
.hero-cat {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 11px;
  background: var(--accent);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(0,0,0,.26);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero-title { font-family: var(--serif); font-size: 38px; font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 14px; }
.hero-excerpt { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 540px; }
.hero-meta { margin-top: 16px; font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: 0.5px; }
.hero-meta strong { color: rgba(255,255,255,.8); font-weight: 500; }

.hero-controls { position: absolute; left: 32px; right: 32px; bottom: 18px; z-index: 4; display: flex; align-items: center; justify-content: flex-end; gap: 10px; pointer-events: none; }
.hero-control, .hero-dot { pointer-events: auto; border: 0; cursor: pointer; }
.hero-control { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(0,0,0,.22); }
.hero-control:hover { background: var(--accent); color: var(--white); }
.hero-dots { display: flex; align-items: center; gap: 7px; padding: 9px 10px; border-radius: 999px; background: rgba(15,15,13,.46); backdrop-filter: blur(8px); }
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.45); transition: width .2s, background .2s; }
.hero-dot.active { width: 22px; border-radius: 999px; background: var(--white); }

.hero-side { display: flex; flex-direction: column; justify-content: space-between; gap: 14px; min-height: 500px; overflow: visible; padding-right: 0; }
.hero-side-card { display: flex; align-items: center; gap: 14px; width: 100%; height: 112px; min-height: 112px; padding: 14px 0; border: 0; border-bottom: 1px solid var(--border); background: transparent; text-align: left; cursor: pointer; font-family: var(--sans); overflow: hidden; }
.hero-side-card:last-child { border-bottom: none; }
.hero-side-card.active { background: var(--pale); padding-left: 8px; padding-right: 8px; border-left: 3px solid var(--accent); }
.hero-side-img { flex-shrink: 0; width: 116px; height: 82px; border-radius: 3px; background: linear-gradient(135deg, #2a2a28 0%, #4a4540 100%); display: flex; align-items: center; justify-content: center; color: #555; font-size: 10px; overflow: hidden; transition: opacity .2s; }
.hero-side-card:hover .hero-side-img, .hero-side-card.active .hero-side-img { opacity: .85; }
.hero-side-content { flex: 1; min-width: 0; }
.hero-side-cat { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 5px; }
.hero-side-title { font-family: var(--serif2); font-size: 16px; line-height: 1.35; color: var(--ink); font-style: italic; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-side-title:hover { color: var(--accent); }
.hero-side-meta { font-size: 10px; color: var(--muted); margin-top: 6px; }

/* â”€â”€â”€ TICKER â”€â”€â”€ */
.ticker-bar { background: var(--ink); color: var(--white); padding: 10px 0; margin-top: 32px; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; gap: 0; }
.ticker-label { background: var(--accent); color: white; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; padding: 0 20px; height: 100%; display: flex; align-items: center; flex-shrink: 0; white-space: nowrap; margin-right: 24px; }
.ticker-track { display: flex; gap: 48px; animation: ticker 28s linear infinite; white-space: nowrap; }
.ticker-item { font-size: 12px; letter-spacing: 0.3px; color: rgba(255,255,255,.8); }
.ticker-item a { color: rgba(255,255,255,.8); transition: color .2s; }
.ticker-item a:hover { color: var(--white); }
.ticker-sep { color: var(--accent); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* â”€â”€â”€ LAYOUT PRINCIPALE â”€â”€â”€ */
.main-wrap { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.content-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 48px; margin-top: 48px; }

/* â”€â”€â”€ SECTION TITLE â”€â”€â”€ */
.section-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); }
.section-head h2 { font-family: var(--serif); font-size: 24px; font-weight: 900; }
.section-head a { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-left: auto; font-weight: 500; }
.section-head a:hover { text-decoration: underline; }

/* â”€â”€â”€ GRID ARTICOLI â”€â”€â”€ */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card { cursor: pointer; }
.article-card-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, #2a2a28 0%, #4a4540 100%); border-radius: 3px; overflow: hidden; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; color: #777; font-size: 11px; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-cat { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 7px; }
.article-title { font-family: var(--serif2); font-style: italic; font-size: 18px; line-height: 1.35; color: var(--ink); margin-bottom: 8px; transition: color .2s; }
.article-card:hover .article-title { color: var(--accent); }
.article-excerpt { font-size: 13px; line-height: 1.6; color: var(--muted); margin-bottom: 10px; }
.article-meta { font-size: 10px; color: var(--muted); letter-spacing: 0.3px; display: flex; align-items: center; gap: 8px; }
.article-meta-dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }

/* â”€â”€â”€ ARTICOLO FEATURED ORIZZONTALE â”€â”€â”€ */
.article-horiz { display: grid; grid-template-columns: 200px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.article-horiz:first-child { padding-top: 0; }
.article-horiz-img { width: 200px; height: 130px; background: linear-gradient(135deg, #2a2a28 0%, #4a4540 100%); border-radius: 3px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #777; font-size: 11px; overflow: hidden; }
.article-horiz-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.article-horiz:hover .article-horiz-img img { transform: scale(1.05); }
.article-horiz-title { font-family: var(--serif2); font-style: italic; font-size: 19px; line-height: 1.35; margin-bottom: 10px; }
.article-horiz:hover .article-horiz-title { color: var(--accent); }
.article-horiz-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* â”€â”€â”€ SIDEBAR â”€â”€â”€ */
.sidebar { }
.sidebar-widget { margin-bottom: 36px; }
.sidebar-adv .adv-slot { width: 300px; height: 250px; }
.sidebar-adv-mid .adv-slot { width: 300px; height: 600px; margin-top: 8px; }
.sidebar-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--ink); padding-bottom: 10px; border-bottom: 2px solid var(--ink); margin-bottom: 16px; }
.trending-list { list-style: none; }
.trending-item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.trending-num { font-size: 28px; font-weight: 900; font-family: var(--serif); color: var(--border); line-height: 1; flex-shrink: 0; min-width: 32px; }
.trending-text .t-cat { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; font-weight: 600; }
.trending-text .t-title { font-size: 13px; line-height: 1.4; color: var(--ink); transition: color .2s; }
.trending-item:hover .t-title { color: var(--accent); }
.newsletter-box { background: var(--ink); padding: 24px; border-radius: 4px; }
.newsletter-box h3 { font-family: var(--serif); font-size: 22px; color: var(--white); margin-bottom: 8px; }
.newsletter-box p { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 16px; line-height: 1.5; }
.newsletter-input { width: 100%; padding: 11px 14px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); color: white; font-family: var(--sans); font-size: 13px; border-radius: 3px; margin-bottom: 10px; }
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-btn { width: 100%; padding: 11px; background: var(--accent); color: white; border: none; font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; border-radius: 3px; cursor: pointer; transition: background .2s; }
.newsletter-btn:hover { background: #a52d20; }

/* â”€â”€â”€ STRIP FULL WIDTH ADV â”€â”€â”€ */
.adv-strip { background: var(--adv-bg); padding: 20px; display: flex; justify-content: center; margin: 48px 0; }
.adv-strip-inner { max-width: 970px; width: 100%; }
.adv-strip .adv-slot { width: 100%; height: 90px; max-width: 970px; }

/* â”€â”€â”€ TOPIC BANDS â”€â”€â”€ */
.topic-band { padding: 48px 0; border-top: 1px solid var(--border); }
.topic-band.alt-bg { background: var(--pale); margin: 0 -24px; padding: 48px 24px; }

/* â”€â”€â”€ CATEGORY CARDS â”€â”€â”€ */
.categories-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 48px; }
.cat-card { background: var(--pale); border-radius: 4px; padding: 20px 14px; text-align: center; cursor: pointer; transition: background .2s, transform .2s; border: 1px solid var(--border); }
.cat-card:hover { background: var(--ink); transform: translateY(-2px); }
.cat-card:hover .cat-name { color: white; }
.cat-card:hover .cat-count { color: rgba(255,255,255,.5); }
.cat-icon { font-size: 28px; margin-bottom: 8px; }
.cat-name { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; transition: color .2s; }
.cat-count { font-size: 10px; color: var(--muted); transition: color .2s; }

/* Category archive page */
.category-page .cat-hero {
  background: var(--ink);
  color: var(--white);
  padding: 60px 24px 50px;
  position: relative;
  overflow: hidden;
}

.category-page .cat-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}

.category-page .cat-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.category-page .cat-breadcrumb {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
  display: flex;
  gap: 7px;
  align-items: center;
}

.category-page .cat-breadcrumb a {
  color: rgba(255,255,255,.45);
  transition: color .2s;
}

.category-page .cat-breadcrumb a:hover { color: var(--white); }

.category-page .cat-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.category-page .cat-hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.category-page .cat-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.category-page .cat-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.category-page .cat-stat .s-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
}

.category-page .cat-stat .s-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: .5px;
}

.category-page .sub-cats {
  background: var(--pale);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.category-page .sub-cats::-webkit-scrollbar { display: none; }

.category-page .sub-cats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
}

.category-page .sub-cat-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 12px 16px;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.category-page .sub-cat-btn:hover { color: var(--ink); }
.category-page .sub-cat-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

.category-page .adv-top {
  display: flex;
  justify-content: center;
  padding: 16px 24px;
  background: var(--adv-bg);
}

.category-page .adv-top .adv-slot {
  width: 970px;
  height: 90px;
  max-width: 100%;
}

.category-page .content-sidebar {
  gap: 56px;
  margin-top: 48px;
}

.category-page .feat-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.category-page .feat-top-img {
  aspect-ratio: 16/10;
  background: linear-gradient(160deg, #1c2a1c 0%, #3a5030 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.category-page .feat-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.category-page .feat-top-img:hover img { transform: scale(1.04); }

.category-page .feat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  z-index: 2;
}

.category-page .feat-top-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-page .feat-cat {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.category-page .feat-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  transition: color .2s;
}

.category-page .feat-title:hover { color: var(--accent); }

.category-page .feat-sub {
  font-family: var(--serif2);
  font-style: italic;
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.5;
  margin-bottom: 20px;
}

.category-page .feat-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.category-page .read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 2px;
  transition: background .2s;
}

.category-page .read-btn:hover { background: var(--accent); }
.category-page .read-btn::after { content: '->'; }

.category-page .filters-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.category-page .filter-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.category-page .filter-btn {
  font-size: 11px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}

.category-page .filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.category-page .filter-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.category-page .category-results {
  display: flex;
  gap: 12px;
  align-items: center;
}

.category-page .results-info {
  font-size: 12px;
  color: var(--muted);
}

.category-page .sort-select {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
}

.category-page .articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 28px;
}

.category-page .article-card { cursor: pointer; }

.category-page .article-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.category-page .card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2a28 0%, #4a4540 100%);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 11px;
}

.category-page .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.category-page .article-card:hover .card-img img { transform: scale(1.05); }
.category-page .article-card.wide .card-img { aspect-ratio: 16/10; }

.category-page .card-body {
  padding: 2px 0;
  display: flex;
  flex-direction: column;
}

.category-page .card-cat {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.category-page .card-title {
  font-family: var(--serif2);
  font-style: italic;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color .2s;
  flex: 1;
}

.category-page .article-card:hover .card-title { color: var(--accent); }

.category-page .article-card.wide .card-title {
  font-family: var(--serif);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.category-page .card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.category-page .card-meta {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  flex-wrap: wrap;
}

.category-page .card-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--muted);
  border-radius: 50%;
}

.category-page .card-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 6px;
}

.category-page .badge-new { background: #e8f5e9; color: #2e7d32; }

.category-page .in-grid-adv {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4px 0;
}

.category-page .in-grid-adv .adv-slot {
  width: 100%;
  height: 90px;
}

.category-page .load-more-wrap {
  text-align: center;
  margin: 40px 0 56px;
}

.category-page .pagination {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 40px 0 56px;
  flex-wrap: wrap;
}

.category-page .page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  transition: background .2s, color .2s, border-color .2s;
}

.category-page .page-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.category-page .page-btn:hover:not(.active) { background: var(--pale); }

.category-page .empty-state {
  background: var(--pale);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  color: var(--muted);
  text-align: center;
}

/* â”€â”€â”€ FEATURED 2-COL â”€â”€â”€ */
.featured2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.feat-card { cursor: pointer; }
.feat-card-img { aspect-ratio: 16/10; background: linear-gradient(135deg, #1a1a18 0%, #3a3530 100%); border-radius: 3px; overflow: hidden; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; color: #555; font-size: 11px; position: relative; }
.feat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feat-card:hover .feat-card-img img { transform: scale(1.04); }
.feat-tag { position: absolute; top: 14px; left: 14px; background: var(--accent); color: white; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; padding: 4px 10px; border-radius: 2px; }
.feat-title { font-family: var(--serif); font-size: 26px; font-weight: 700; line-height: 1.25; margin-bottom: 10px; transition: color .2s; }
.feat-card:hover .feat-title { color: var(--accent); }
.feat-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.read-more { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.read-more::after { content: none; }
.feat-card:hover .read-more { gap: 10px; color: var(--accent); }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer { background: var(--ink); color: var(--white); margin-top: 80px; }
.footer-top { max-width: 1400px; margin: 0 auto; padding: 60px 24px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { font-size: 42px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 260px; }
.footer-brand .social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,.6); transition: all .2s; cursor: pointer; }
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: white; }
.footer-col h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.9); font-weight: 600; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 24px; max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); margin-left: 16px; transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* â”€â”€â”€ MOBILE â”€â”€â”€ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 0; gap: 16px; }
  .hero-side-card { flex-direction: column; height: auto; min-height: 0; }
  .hero-side-img { width: 100%; height: 100px; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .sidebar-adv-mid { display: none; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .categories-row { grid-template-columns: repeat(3, 1fr); }
  .header-adv { display: none; }
}
@media (max-width: 768px) {
  .logo { font-size: 38px; }
  .hero-title { font-size: 26px; }
  .hero-overlay { padding: 32px 20px 20px; }
  .hero-side { grid-template-columns: 1fr; }
  .hero-side-card { flex-direction: row; height: 96px; min-height: 96px; }
  .hero-side-img { width: 90px; height: 66px; }
  .articles-grid { grid-template-columns: 1fr; }
  .featured2 { grid-template-columns: 1fr; }
  .categories-row { grid-template-columns: repeat(3, 1fr); }
  .article-horiz { grid-template-columns: 120px 1fr; }
  .article-horiz-img { width: 120px; height: 86px; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .topbar { display: none; }
}
@media (max-width: 480px) {
  .main-wrap, .hero { padding: 0 14px; }
  .header-inner { padding: 0 14px; }
  .categories-row { grid-template-columns: repeat(2, 1fr); }
  .hero-side { display: none; }
}

/* Article template */
.single-post-page {
  --body-font: 'Lora', Georgia, serif;
  --body-size: 19px;
  --body-line: 1.82;
}

.single-post-page .progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 200;
  width: 0%;
  transition: width .1s linear;
}

.single-post-page .site-header {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.single-post-page .site-header .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.single-post-page .site-header .logo {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
  padding: 14px 0;
  line-height: 1;
  flex-shrink: 0;
}

.single-post-page .article-nav {
  border-top: 0;
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.single-post-page .article-nav::-webkit-scrollbar { display: none; }

.single-post-page .article-nav .nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 22px 12px;
}

.single-post-page .article-search {
  display: flex;
  flex-shrink: 0;
}

.single-post-page .search-btn {
  padding: 8px;
  color: var(--muted);
  cursor: pointer;
  border: 0;
  background: transparent;
  display: flex;
}

.single-post-page .adv-top {
  display: flex;
  justify-content: center;
  padding: 12px 24px;
  background: var(--adv-bg);
}

.single-post-page .adv-top .adv-slot {
  width: 970px;
  height: 90px;
  max-width: 100%;
}

.single-post-page .breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: var(--sans);
}

.single-post-page .breadcrumb a {
  color: var(--muted);
  transition: color .2s;
}

.single-post-page .breadcrumb a:hover { color: var(--accent); }
.single-post-page .breadcrumb sep { color: var(--border); }

.single-post-page .article-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.single-post-page .article-main { min-width: 0; }
.single-post-page .article-header { margin-bottom: 32px; border-bottom: 0; }
.single-post-page .article-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }

.single-post-page .article-kicker-cat {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 4px 10px;
  font-weight: 600;
  font-family: var(--sans);
}

.single-post-page .article-kicker-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--sans);
}

.single-post-page h1.article-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  font-style: normal;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.single-post-page .article-subtitle {
  font-family: var(--serif2);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink2);
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin-bottom: 28px;
}

.single-post-page .article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.single-post-page .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a28, #4a4540);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.single-post-page .byline-text { flex: 1; }
.single-post-page .author-name { font-size: 14px; font-weight: 600; font-family: var(--sans); }
.single-post-page .author-role { font-size: 11px; color: var(--muted); font-family: var(--sans); }

.single-post-page .article-meta-info {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--sans);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.single-post-page .share-row { display: flex; gap: 8px; margin-top: 8px; }

.single-post-page .share-btn {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: var(--sans);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.single-post-page .share-btn:hover { background: var(--ink); color: white; border-color: var(--ink); }
.single-post-page .share-btn.fb { border-color: #1877f2; color: #1877f2; }
.single-post-page .share-btn.fb:hover { background: #1877f2; color: white; }
.single-post-page .share-btn.wa { border-color: #25d366; color: #25d366; }
.single-post-page .share-btn.wa:hover { background: #25d366; color: white; }

.single-post-page .article-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, #1c2a1c 0%, #3a5030 100%);
  border-radius: 3px;
  margin: 28px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 14px;
  min-height: 300px;
  overflow: hidden;
}

.single-post-page .article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-page .article-hero-caption {
  max-width: 92%;
  margin: 0 0 36px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.5;
  font-style: italic;
}

.single-post-page .article-inline-caption {
  max-width: 92%;
  margin: 0 0 36px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.5;
  font-style: italic;
}

.single-post-page .article-inline-img {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 46px 0 10px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--pale);
  box-shadow: 0 18px 42px rgba(35, 35, 32, .12);
}

.single-post-page .article-inline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-post-page .article-inline-caption {
  margin-bottom: 42px;
}

.single-post-page .article-body .article-inline-caption {
  max-width: 92%;
  margin: 0 0 42px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.5;
  font-style: italic;
}

.single-post-page .article-body img + p {
  max-width: 92%;
  margin: 0 0 42px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.5;
  font-style: italic;
}

.single-post-page .article-body {
  font-family: var(--body-font);
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--ink2);
  counter-reset: article-section;
}

.single-post-page .article-body p { margin-bottom: 28px; }
.single-post-page .article-body h2 {
  position: relative;
  counter-increment: article-section;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 52px 0 18px;
  padding-left: 88px;
  line-height: 1.2;
}

.single-post-page .article-body h2::before {
  content: counter(article-section, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -.18em;
  width: 68px;
  padding-top: 8px;
  border-top: 3px solid var(--accent);
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: var(--accent);
}

.single-post-page .article-body h3 { font-family: var(--sans); font-size: 18px; font-weight: 600; color: var(--ink); margin: 36px 0 14px; letter-spacing: 0; }
.single-post-page .article-body strong { font-weight: 600; color: var(--ink); }
.single-post-page .article-body em { font-style: italic; color: var(--ink); }
.single-post-page .article-body a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.single-post-page .article-body ul, .single-post-page .article-body ol { margin: 0 0 28px 22px; }
.single-post-page .article-body li { margin-bottom: 10px; }

.single-post-page .article-body table {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 34px 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(15, 15, 13, .08);
  overflow: hidden;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
}

.single-post-page .article-body table caption {
  caption-side: top;
  text-align: left;
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
}

.single-post-page .article-body table thead {
  background: var(--ink);
  color: var(--white);
}

.single-post-page .article-body table th,
.single-post-page .article-body table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.single-post-page .article-body table th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: rgba(255,255,255,.84);
}

.single-post-page .article-body table td:first-child {
  width: 108px;
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.single-post-page .article-body table tbody tr:nth-child(even) { background: var(--pale); }
.single-post-page .article-body table tbody tr:hover { background: #fbf3ef; }
.single-post-page .article-body table tbody tr:last-child td { border-bottom: 0; }

.single-post-page .article-body blockquote {
  position: relative;
  margin: 36px 0;
  padding: 28px 32px 28px 82px;
  background: linear-gradient(90deg, #fff8f5 0%, var(--pale) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  box-shadow: 0 14px 34px rgba(15, 15, 13, .06);
}

.single-post-page .article-body blockquote::before {
  content: '"';
  position: absolute;
  left: 24px;
  top: 20px;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 900;
  line-height: .8;
  color: rgba(200, 56, 42, .22);
}

.single-post-page .article-body blockquote p {
  margin: 0;
  font-family: var(--serif2);
  font-size: 22px;
  font-style: italic;
  line-height: 1.48;
  color: var(--ink);
}

.single-post-page .pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--ink);
  padding: 24px 0;
  margin: 40px 0;
}

.single-post-page .pullquote::before {
  content: '"';
  color: var(--accent);
  font-size: 60px;
  line-height: 0;
  vertical-align: -24px;
  margin-right: 6px;
}

.single-post-page .highlight-box {
  background: var(--pale);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 3px 3px 0;
}

.single-post-page .highlight-box p { margin-bottom: 0; font-size: 16px; color: var(--ink2); }
.single-post-page .highlight-box .hb-title { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-bottom: 10px; }

.single-post-page .num-list { list-style: none; counter-reset: num-list; margin-left: 0; }
.single-post-page .num-list li { counter-increment: num-list; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.single-post-page .num-list li::before { content: counter(num-list, decimal-leading-zero); font-family: var(--serif); font-size: 24px; font-weight: 900; color: var(--border); flex-shrink: 0; line-height: 1; margin-top: 2px; }
.single-post-page .num-list li .li-content { flex: 1; }
.single-post-page .num-list li .li-title { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.single-post-page .num-list li .li-text { font-family: var(--body-font); font-size: 16px; line-height: 1.7; color: var(--ink2); }

.single-post-page .data-box {
  background: var(--ink);
  color: white;
  padding: 28px 32px;
  border-radius: 4px;
  margin: 40px 0;
}

.single-post-page .data-box .db-label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; font-family: var(--sans); }
.single-post-page .data-box h3 { font-family: var(--serif); font-size: 20px; color: white; margin-bottom: 16px; }
.single-post-page .data-row { display: flex; gap: 24px; flex-wrap: wrap; }
.single-post-page .data-item { flex: 1; min-width: 120px; }
.single-post-page .data-num { font-family: var(--serif); font-size: 36px; font-weight: 900; color: var(--accent); line-height: 1; }
.single-post-page .data-desc { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; line-height: 1.4; }

.single-post-page .in-body-adv { margin: 36px 0; text-align: center; }
.single-post-page .in-body-adv .adv-slot { width: 100%; height: 250px; max-width: 580px; margin: 0 auto; }
.single-post-page .post-article-adv .adv-slot { height: 90px; max-width: 728px; }

.single-post-page .article-tags {
  margin: 48px 0 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: var(--sans);
}

.single-post-page .tags-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-right: 4px; }
.single-post-page .tag { font-size: 12px; padding: 5px 12px; border: 1px solid var(--border); border-radius: 20px; color: var(--muted); transition: all .2s; }
.single-post-page .tag:hover { background: var(--ink); color: white; border-color: var(--ink); }

.single-post-page .author-box {
  background: var(--pale);
  border-radius: 4px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.single-post-page .author-pic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a28, #4a4540);
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.single-post-page .author-info .a-name { font-family: var(--serif); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.single-post-page .author-info .a-role { font-size: 11px; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; font-family: var(--sans); font-weight: 600; margin-bottom: 10px; }
.single-post-page .author-info .a-bio { font-size: 13px; color: var(--muted); line-height: 1.6; font-family: var(--sans); }

.single-post-page .related-section { border-top: 2px solid var(--ink); padding-top: 24px; margin-bottom: 48px; }
.single-post-page .related-title { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 24px; }
.single-post-page .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.single-post-page .related-card { cursor: pointer; }
.single-post-page .related-img { aspect-ratio: 4/3; background: linear-gradient(135deg, #2a2a28, #4a4540); border-radius: 3px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; color: #666; font-size: 11px; overflow: hidden; }
.single-post-page .related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.single-post-page .related-card:hover .related-img img { transform: scale(1.05); }
.single-post-page .related-cat { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 600; font-family: var(--sans); margin-bottom: 5px; }
.single-post-page .related-t { font-family: var(--serif2); font-style: italic; font-size: 15px; line-height: 1.35; color: var(--ink); transition: color .2s; }
.single-post-page .related-card:hover .related-t { color: var(--accent); }
.single-post-page .related-meta { font-size: 10px; color: var(--muted); font-family: var(--sans); margin-top: 6px; }

.single-post-page .article-sidebar {
  position: sticky;
  top: 76px;
  align-self: start;
}

.single-post-page .article-sidebar .sidebar-widget { margin-bottom: 32px; }
.single-post-page .sidebar-adv-top .adv-slot { width: 300px; height: 250px; }
.single-post-page .article-sidebar .sidebar-adv-mid .adv-slot { width: 300px; height: 600px; }
.single-post-page .article-sidebar .sidebar-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--ink); padding-bottom: 10px; border-bottom: 2px solid var(--ink); margin-bottom: 16px; font-family: var(--sans); }
.single-post-page .article-sidebar .trending-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.single-post-page .article-sidebar .trending-num { font-family: var(--serif); font-size: 22px; font-weight: 900; color: var(--border); flex-shrink: 0; min-width: 28px; line-height: 1.1; }
.single-post-page .article-sidebar .trending-text .t-cat { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 3px; font-family: var(--sans); }
.single-post-page .article-sidebar .trending-text .t-title { font-size: 12px; line-height: 1.4; color: var(--ink); transition: color .2s; font-family: var(--sans); }
.single-post-page .article-sidebar .trending-item:hover .t-title { color: var(--accent); }
.single-post-page .article-sidebar .newsletter-box { background: var(--ink); padding: 20px; border-radius: 4px; }
.single-post-page .article-sidebar .newsletter-box h3 { font-family: var(--serif); font-size: 18px; color: white; margin-bottom: 8px; }
.single-post-page .article-sidebar .newsletter-box p { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 14px; line-height: 1.5; font-family: var(--sans); }

.single-post-page .float-share {
  position: fixed;
  left: max(12px, calc(50% - 700px - 64px));
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.single-post-page .fs-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--sans);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.single-post-page .fs-btn:hover { background: var(--ink); color: white; border-color: var(--ink); }
.single-post-page .fs-label { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); text-align: center; font-family: var(--sans); }

@media (max-width: 1100px) {
  .single-post-page .article-wrap { grid-template-columns: 1fr; }
  .single-post-page .article-sidebar { position: static; }
  .single-post-page .article-sidebar .sidebar-adv-mid { display: none; }
  .single-post-page .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1500px) {
  .single-post-page .float-share { display: none; }
}

@media (max-width: 768px) {
  .single-post-page .site-header .logo { font-size: 30px; }
  .single-post-page .article-nav { display: none; }
  .single-post-page .article-body { font-size: 17px; }
  .single-post-page .article-body table {
    display: block;
    width: 100%;
    min-width: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    overflow: visible;
  }
  .single-post-page .article-body table caption {
    margin-bottom: 12px;
  }
  .single-post-page .article-body table thead {
    display: none;
  }
  .single-post-page .article-body table tbody,
  .single-post-page .article-body table tr,
  .single-post-page .article-body table td {
    display: block;
    width: 100%;
  }
  .single-post-page .article-body table tr {
    margin: 0 0 16px;
    padding: 14px 14px 4px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(15, 15, 13, .07);
  }
  .single-post-page .article-body table tbody tr:nth-child(even),
  .single-post-page .article-body table tbody tr:hover {
    background: var(--white);
  }
  .single-post-page .article-body table td {
    min-width: 0;
    padding: 0 0 12px;
    border-bottom: 0;
    white-space: normal;
  }
  .single-post-page .article-body table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
    line-height: 1.25;
    text-transform: uppercase;
  }
  .single-post-page .article-body table td:first-child {
    width: 100%;
    white-space: normal;
  }
  .single-post-page .article-body blockquote {
    padding: 24px 22px 24px 58px;
  }
  .single-post-page .article-body blockquote::before {
    left: 18px;
    top: 20px;
    font-size: 54px;
  }
  .single-post-page .article-body blockquote p { font-size: 19px; }
  .single-post-page .article-body h2 {
    padding-left: 68px;
    font-size: 25px;
  }
  .single-post-page .article-body h2::before {
    width: 50px;
    font-size: 24px;
  }
  .single-post-page .article-inline-img {
    margin: 34px 0 10px;
  }
  .single-post-page .article-hero-caption,
  .single-post-page .article-inline-caption {
    max-width: 100%;
    margin-bottom: 34px;
  }
  .single-post-page .pullquote { font-size: 20px; }
  .single-post-page .share-row { flex-wrap: wrap; }
  .single-post-page .related-grid { grid-template-columns: 1fr; }
  .single-post-page .author-box { flex-direction: column; }
  .single-post-page .article-byline { flex-direction: column; align-items: flex-start; }
  .single-post-page .byline-actions { width: 100%; }
}

@media (max-width: 480px) {
  .single-post-page .article-wrap { padding: 0 14px; }
  .single-post-page .breadcrumb { padding: 10px 14px; }
  .single-post-page .adv-top { padding: 10px 14px; }
}

@media (max-width: 1100px) {
  .category-page .content-sidebar { grid-template-columns: 1fr; }
  .category-page .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 900px) {
  .category-page .feat-top,
  .category-page .article-card.wide { grid-template-columns: 1fr; }
  .category-page .articles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .category-page .cat-hero { padding: 40px 14px 36px; }
  .category-page .sub-cats-inner,
  .category-page .main-wrap { padding-left: 14px; padding-right: 14px; }
  .category-page .sidebar { grid-template-columns: 1fr; }
  .category-page .category-results { width: 100%; justify-content: space-between; }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }
  .site-footer {
    margin-top: 52px;
  }
  .footer-grid {
    display: block;
    max-width: 100%;
    padding: 36px 16px 24px;
  }
  .footer-logo {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .footer-copy {
    max-width: none;
  }
  .footer-brand .social-links {
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-col {
    margin-top: 26px;
  }
  .footer-col ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
  }
  .footer-bottom {
    display: block;
    max-width: 100%;
    padding: 16px;
    text-align: left;
  }
  .footer-bottom div {
    display: none;
  }
  .footer-bottom a {
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .footer-col ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-top {
    justify-content: center;
    padding: 18px 0 14px;
    text-align: center;
  }
  .brand-lockup {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .logo-tag {
    white-space: normal;
    letter-spacing: 2px;
    line-height: 1.35;
    max-width: 100%;
  }
  .search-bar,
  .single-post-page .article-search {
    display: none;
  }
  .single-post-page .site-header .header-inner {
    justify-content: center;
    padding: 0 14px;
  }
  .single-post-page .site-header .logo {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header-inner {
    position: relative;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 24px;
    left: 14px;
    z-index: 130;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    padding: 0;
    cursor: pointer;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }
  .site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .site-header > nav .nav-inner {
    display: none;
    max-width: 100%;
    padding: 8px 16px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    background: var(--white);
  }
  .site-header.menu-open > nav .nav-inner {
    display: flex;
  }
  .site-header > nav .nav-link {
    padding: 13px 2px;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }
  .single-post-page .mobile-menu-toggle {
    top: 50%;
    transform: translateY(-50%);
  }
  .single-post-page .site-header.menu-open .article-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    overflow: visible;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 18px 28px rgba(15, 15, 13, .08);
  }
  .single-post-page .site-header.menu-open .article-nav .nav-link {
    padding: 13px 2px;
    border-bottom: 1px solid var(--border);
  }
}

.site-header.is-compact .header-top {
  padding: 10px 0 8px;
}
.site-header.is-compact .logo {
  font-size: 36px;
  letter-spacing: -1px;
}
.site-header.is-compact .logo-tag {
  display: none;
}
.site-header.is-compact .header-adv,
.site-header.is-compact .search-bar {
  display: none;
}
.site-header.is-compact > nav .nav-inner {
  padding-top: 0;
  padding-bottom: 0;
}
.site-header.is-compact .nav-link {
  padding-top: 9px;
  padding-bottom: 9px;
}
.single-post-page .site-header.is-compact .logo {
  font-size: 30px;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .site-header.is-compact .header-top {
    padding: 10px 0 8px;
  }
  .site-header.is-compact .logo {
    font-size: 32px;
  }
  .site-header.is-compact .mobile-menu-toggle {
    top: 50%;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
  }
  .single-post-page .site-header.is-compact .mobile-menu-toggle {
    top: 50%;
  }
}

@media (max-width: 768px) {
  .hero-main {
    height: 430px;
    min-height: 430px;
  }
  .hero-overlay {
    padding: 32px 20px 76px;
  }
  .hero-meta {
    display: none;
  }
  .hero-controls {
    left: 50%;
    right: auto;
    bottom: 18px;
    transform: translateX(-50%);
    justify-content: center;
    width: max-content;
    max-width: calc(100% - 32px);
  }
}
