:root {
--bg: #FAFAF8;
--white: #FFFFFF;
--text: #0F0F0F;
--text-muted: #787878;
--border: #E5E2DC;
--dark: #0F0F0F;
--red: #FF3059;
--yellow: #FFE000;
--mint: #00CFA0;
--purple: #7C4DFF;
--orange: #FF6230;
--blue: #1E96FC;
--font-display: 'Fraunces', Georgia, serif;
--font-ui: 'Syne', system-ui, sans-serif;
--font-body: 'DM Sans', system-ui, sans-serif;
--nav-h: 56px;
--container-pad: 20px;
--radius: 4px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.65; -webkit-font-smoothing: antialiased; border-top: 3px solid var(--red); }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.skip-link { position: absolute; top: -100%; left: 20px; background: var(--dark); color: var(--white); padding: 8px 16px; font-family: var(--font-ui); font-size: 13px; font-weight: 700; z-index: 9999; border-radius: 0 0 4px 4px; }
.skip-link:focus { top: 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--container-pad); }

/* ===== NAV ===== */
.site-nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 2px solid var(--dark); }
.nav-inner { height: var(--nav-h); display: flex; align-items: stretch; gap: 20px; }
.site-logo { font-family: var(--font-display); font-weight: 900; font-size: 16px; letter-spacing: -0.5px; display: flex; align-items: center; white-space: nowrap; color: var(--dark); }
.nav-top { border-bottom: 2px solid var(--dark); }
.nav-cats { display: none; flex: 1; }
.nav-cats .menu { display: flex; align-items: stretch; list-style: none; }
.nav-cats .menu a { font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 0 14px; display: flex; align-items: center; color: var(--text-muted); transition: color 0.2s; position: relative; white-space: nowrap; }
.nav-cats .menu a:hover { color: var(--dark); }
.nav-cats .menu a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform 0.25s ease; transform-origin: left; }
.nav-cats .menu a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-icon { width: 36px; height: 36px; border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; color: var(--text-muted); flex-shrink: 0; }
.nav-icon:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.nav-hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; padding: 5px; background: none; border: none; cursor: pointer; flex-shrink: 0; }
.nav-hamburger span { display: block; height: 2px; background: var(--dark); transition: all 0.3s ease; border-radius: 1px; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 8px 0 20px; }
.mobile-menu.open { display: flex; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list li a { display: block; font-family: var(--font-ui); font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 14px var(--container-pad); color: var(--text); border-bottom: 1px solid var(--border); transition: color 0.2s, padding-left 0.2s; }
.mobile-nav-list li a:hover { color: var(--red); padding-left: calc(var(--container-pad) + 8px); }
.mobile-search { padding: 16px var(--container-pad) 0; }
.site-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

/* ===== CAT STRIP ===== */
.cat-strip { background: #0F0F0F; }
.cat-strip-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-strip-list { display: flex; list-style: none; width: max-content; min-width: 100%; }
.cat-strip-list li { position: relative; }
.cat-strip-list li a { display: block; font-family: var(--font-ui); font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); padding: 11px 16px; white-space: nowrap; transition: color 0.2s; border-right: 1px solid rgba(255,255,255,0.06); }
.cat-strip-list li:last-child a { border-right: none; }
.cat-strip-list li a:hover { color: #fff; }
.cat-strip-list li a:hover::after { transform: scaleX(1); }
.cat-strip-list li a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--cat-acc, var(--red)); transform: scaleX(0); transition: transform 0.22s ease; transform-origin: left; }
.cat-strip-list li.current-cat a,
.cat-strip-list li.current-menu-item a { color: #fff; }
.cat-strip-list li.current-cat a::after,
.cat-strip-list li.current-menu-item a::after { transform: scaleX(1); }

/* ===== TICKER ===== */
.ticker-bar { background: var(--dark); border-bottom: 3px solid var(--yellow); overflow: hidden; display: flex; align-items: stretch; }
.ticker-badge { font-family: var(--font-ui); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; background: var(--red); color: var(--white); padding: 10px 28px 10px 12px; display: flex; align-items: center; gap: 6px; flex-shrink: 0; clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%); }
.ticker-scroll { flex: 1; overflow: hidden; }
.ticker-track { display: flex; align-items: center; white-space: nowrap; animation: tickScroll 42s linear infinite; padding: 10px 0; }
.ticker-track:hover { animation-play-state: paused; }
.t-item { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.8); padding: 0 36px; display: inline-flex; align-items: center; gap: 10px; }
.t-dot { color: var(--red); }
@keyframes tickScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SEARCH OVERLAY ===== */
.search-overlay { position: fixed; inset: 0; background: rgba(15,15,15,0.95); z-index: 200; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-overlay-inner { width: 90%; max-width: 560px; text-align: center; }
.search-overlay-prompt { font-family: var(--font-display); font-size: 24px; font-weight: 700; font-style: italic; color: var(--white); margin-bottom: 24px; }
.search-overlay .search-form { display: flex; }
.search-overlay .search-field { flex: 1; padding: 16px 20px; font-family: var(--font-body); font-size: 16px; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2); border-right: none; color: var(--white); border-radius: 2px 0 0 2px; outline: none; }
.search-overlay .search-field::placeholder { color: rgba(255,255,255,0.4); }
.search-overlay .search-field:focus { border-color: var(--red); }
.search-overlay .search-submit { background: var(--red); color: var(--white); padding: 0 22px; border-radius: 0 2px 2px 0; font-size: 18px; }
.search-overlay-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; padding: 8px; transition: color 0.2s; }
.search-overlay-close:hover { color: var(--white); }

/* ===== SEARCH FORM (general) ===== */
.search-form { display: flex; }
.search-field { flex: 1; padding: 12px 16px; font-family: var(--font-body); font-size: 14px; border: 2px solid var(--border); border-right: none; border-radius: 2px 0 0 2px; outline: none; background: var(--white); color: var(--text); transition: border-color 0.2s; }
.search-field:focus { border-color: var(--dark); }
.search-submit { background: var(--dark); color: var(--white); padding: 0 18px; border-radius: 0 2px 2px 0; font-size: 16px; transition: background 0.2s; }
.search-submit:hover { background: var(--red); }

/* ===== HERO ===== */
.hero-section { padding: 32px 0 0; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.eyebrow-rule { width: 32px; height: 2px; background: var(--red); flex-shrink: 0; }
.eyebrow-text { font-family: var(--font-ui); font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); }
.hero-grid { display: flex; flex-direction: column; gap: 32px; }
.hero-img-link { display: block; }
.hero-img, .hero-img-block { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); display: block; }
.hero-img-placeholder { position: relative; overflow: hidden; }
.float-tag { position: absolute; top: 16px; left: 16px; font-family: var(--font-ui); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); border: 1.5px solid rgba(255,255,255,0.3); padding: 4px 10px; border-radius: 2px; }
.hero-cat-label { font-family: var(--font-ui); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; margin-top: 20px; }
.hero-title { font-family: var(--font-display); font-size: clamp(24px, 5vw, 48px); font-weight: 900; line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 16px; }
.hero-title a { color: inherit; transition: color 0.2s; }
.hero-title a:hover { color: var(--red); }
.hero-excerpt { font-size: 15px; line-height: 1.78; color: var(--text-muted); margin-bottom: 20px; font-weight: 300; }
.hero-meta { display: flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 22px; flex-wrap: wrap; }
.meta-dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; display: inline-block; }
.read-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--dark); color: var(--white); font-family: var(--font-ui); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 13px 24px; border-radius: 2px; transition: background 0.2s, gap 0.2s; }
.read-cta:hover { background: var(--red); gap: 16px; }
.hero-sidebar { display: none; }

/* ===== SECTION HEADER ===== */
.section-hdr { display: flex; align-items: center; gap: 16px; padding: 36px 0 24px; flex-wrap: wrap; }
.section-title { font-family: var(--font-display); font-size: 26px; font-weight: 900; font-style: italic; white-space: nowrap; letter-spacing: -0.5px; }
.section-rule { flex: 0 0 32px; height: 2px; background: var(--dark); display: none; }
.cat-filter { display: flex; gap: 6px; flex-wrap: wrap; }
.f-btn { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 7px 14px; border: 2px solid var(--border); border-radius: 100px; cursor: pointer; transition: all 0.2s; color: var(--text-muted); background: transparent; }
.f-btn:hover { border-color: var(--dark); color: var(--dark); }
.f-btn.active { background: var(--dark); border-color: var(--dark); color: var(--white); }
.f-btn:hover:not(.active) { border-color: var(--cat-color, var(--dark)); color: var(--cat-color, var(--dark)); }

/* ===== MASONRY GRID ===== */
.masonry-grid { columns: 1; column-gap: 20px; padding-bottom: 48px; }
.masonry-section { padding-top: 4px; }

/* ===== POST CARD ===== */
.post-card { break-inside: avoid; margin-bottom: 20px; background: var(--white); border: 2px solid var(--border); border-top: 4px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; display: block; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.09); }
.card-img-wrap { display: block; overflow: hidden; }
.card-img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.post-card:hover .card-img { transform: scale(1.03); }
.card-img-placeholder { width: 100%; height: 180px; }
.card-body { padding: 18px 20px 20px; }
.cat-tag { display: inline-block; font-family: var(--font-ui); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; margin-bottom: 10px; }
.card-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; line-height: 1.2; letter-spacing: -0.3px; margin-bottom: 10px; }
.card-title a { color: inherit; transition: color 0.2s; }
.post-card:hover .card-title a { color: var(--red); }
.card-excerpt { font-size: 14px; line-height: 1.65; color: var(--text-muted); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.card-author { font-family: var(--font-ui); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; color: var(--text-muted); }
.card-time { font-family: var(--font-ui); font-size: 11px; font-weight: 700; color: var(--text-muted); }
.card-overlay-link { position: absolute; inset: 0; z-index: 1; }
.card-title a, .cat-tag { position: relative; z-index: 2; }
.quote-body { padding: 28px 24px; }
.q-mark { font-family: var(--font-display); font-size: 52px; font-weight: 900; color: var(--red); line-height: 0.8; display: block; margin-bottom: 12px; opacity: 0.7; }
.q-text { font-family: var(--font-display); font-size: 18px; font-weight: 700; font-style: italic; color: var(--white); line-height: 1.4; margin-bottom: 16px; }
.q-attr { font-family: var(--font-ui); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* ===== INFINITE SCROLL ===== */
.infinite-scroll-status { text-align: center; padding: 24px 0 48px; }
.scroll-loader { display: none; justify-content: center; align-items: center; gap: 8px; }
.scroll-loader span { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: dotPulse 1.2s ease-in-out infinite; }
.scroll-loader span:nth-child(2) { animation-delay: 0.2s; }
.scroll-loader span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse { 0%, 100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }
.scroll-end { display: none; font-family: var(--font-ui); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

/* ===== NEWSLETTER STRIP ===== */
.nl-strip { background: var(--dark); padding: 48px var(--container-pad); display: flex; flex-direction: column; gap: 28px; position: relative; overflow: hidden; }
.nl-strip::before { content: '\2665'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-size: 160px; color: rgba(255,255,255,0.025); font-family: var(--font-display); pointer-events: none; line-height: 1; }
.nl-eyebrow { font-family: var(--font-ui); font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.nl-hdg { font-family: var(--font-display); font-size: clamp(22px, 4vw, 36px); font-weight: 900; font-style: italic; color: var(--white); line-height: 1.15; }
.nl-hdg span { color: var(--yellow); }
.nl-form { display: flex; width: 100%; }
.nl-input { flex: 1; padding: 13px 16px; font-family: var(--font-body); font-size: 14px; background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.12); border-right: none; color: var(--white); border-radius: 2px 0 0 2px; outline: none; transition: border-color 0.2s; min-width: 0; }
.nl-input::placeholder { color: rgba(255,255,255,0.3); }
.nl-input:focus { border-color: var(--red); }
.nl-btn { background: var(--red); color: var(--white); font-family: var(--font-ui); font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 13px 18px; border-radius: 0 2px 2px 0; white-space: nowrap; transition: background 0.2s; cursor: pointer; }
.nl-btn:hover { background: #d91e46; }

/* ===== FOOTER ===== */
.site-footer {}
.footer-inner { padding: 40px 0 24px; }
.footer-top { display: flex; flex-direction: column; gap: 32px; padding-bottom: 32px; border-bottom: 2px solid var(--border); margin-bottom: 20px; }
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 900; letter-spacing: -0.5px; display: block; margin-bottom: 8px; color: var(--dark); }
.footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.footer-nav .menu { list-style: none; display: flex; flex-wrap: wrap; gap: 0 0; flex-direction: column; }
.footer-nav .menu a { font-size: 14px; color: var(--text); display: block; padding: 6px 0; transition: color 0.2s; }
.footer-nav .menu a:hover { color: var(--red); }
.footer-btm { display: flex; flex-direction: column; gap: 12px; font-family: var(--font-ui); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-legal a { color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--red); }

/* ===== ARCHIVE HEADERS ===== */
.archive-header { background: var(--white); border-bottom: 2px solid var(--border); padding: 36px 0; margin-bottom: 0; }
.archive-eyebrow { font-family: var(--font-ui); font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.archive-title { font-family: var(--font-display); font-size: clamp(28px, 5vw, 48px); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 12px; }
.archive-desc { font-size: 16px; line-height: 1.7; color: var(--text-muted); font-weight: 300; max-width: 600px; margin-bottom: 12px; }
.archive-count { font-family: var(--font-ui); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.author-hdr-inner { display: flex; gap: 24px; align-items: flex-start; }
.author-hdr-avi img { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; }

/* ===== SINGLE POST ===== */
.post-bc { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding-top: 18px; padding-bottom: 18px; font-family: var(--font-ui); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.bc-back { display: flex; align-items: center; gap: 5px; color: var(--text-muted); transition: color 0.2s; }
.bc-back:hover { color: var(--red); }
.bc-sep { color: var(--border); font-size: 14px; font-weight: 300; }
.bc-current { color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 11px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 200px; }
.post-header { background: var(--white); border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); }
.post-hdr-inner { padding: 36px var(--container-pad); display: flex; flex-direction: column; gap: 32px; }
.post-hdr-cat { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.post-hdr-cat-rule { width: 20px; height: 2px; display: inline-block; flex-shrink: 0; }
.post-hdr-cat a { color: inherit; }
.post-hdr-title { font-family: var(--font-display); font-size: clamp(28px, 5vw, 52px); font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 18px; }
.post-hdr-excerpt { font-size: 17px; line-height: 1.78; color: var(--text-muted); font-weight: 300; margin-bottom: 24px; }
.post-author-row { display: flex; align-items: center; gap: 14px; }
.author-avi { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-weight: 800; font-size: 14px; color: var(--white); flex-shrink: 0; }
.author-name { font-family: var(--font-ui); font-size: 13px; font-weight: 700; }
.post-date { font-size: 12px; color: var(--text-muted); margin-top: 3px; font-family: var(--font-ui); font-weight: 600; }
.post-hdr-img-wrap {}
.post-hdr-img, .post-hdr-img-placeholder { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); display: block; }
.post-stats-bar { display: flex; align-items: center; gap: 14px; padding-top: 14px; padding-bottom: 14px; border-bottom: 2px solid var(--border); background: var(--white); font-family: var(--font-ui); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); flex-wrap: wrap; }
.stat-sep { color: var(--border); }
.share-row { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.share-lbl { font-family: var(--font-ui); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.share-btn { width: 30px; height: 30px; border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; cursor: pointer; transition: all 0.2s; color: var(--text-muted); background: var(--white); }
.share-btn:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.post-content-wrap { max-width: 760px; margin: 0 auto; padding: 48px var(--container-pad) 56px; }
.post-content p { font-size: 17px; line-height: 1.85; color: #303030; margin-bottom: 24px; }
.post-content h2 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 900; letter-spacing: -0.5px; line-height: 1.15; margin: 40px 0 16px; }
.post-content h3 { font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; line-height: 1.3; margin: 32px 0 14px; }
.post-content h4 { font-family: var(--font-ui); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin: 28px 0 10px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 24px; }
.post-content li { font-size: 17px; line-height: 1.8; color: #303030; margin-bottom: 8px; }
.post-content blockquote { border-left: 4px solid var(--red); padding: 16px 24px; margin: 36px 0; background: #fff5f7; border-radius: 0 3px 3px 0; }
.post-content blockquote p { font-family: var(--font-display); font-size: 20px; font-weight: 700; font-style: italic; line-height: 1.45; color: var(--text); margin: 0; }
.post-content img { border-radius: var(--radius); margin: 32px 0; }
.post-content .wp-block-image { margin: 32px 0; }
.post-content .alignleft { float: left; margin: 8px 24px 16px 0; max-width: 50%; }
.post-content .alignright { float: right; margin: 8px 0 16px 24px; max-width: 50%; }
.post-content .aligncenter { margin: 24px auto; display: block; }
.post-content .alignwide { max-width: min(900px, calc(100vw - 40px)); margin-left: auto; margin-right: auto; }
.post-content a { color: var(--red); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.post-content a:hover { text-decoration: none; }
.post-content hr { border: none; border-top: 2px solid var(--border); margin: 40px 0; }
.post-content figure { margin: 32px 0; }
.post-content figcaption { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 8px; font-style: italic; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 40px; padding-top: 28px; border-top: 2px solid var(--border); }
.tags-label { font-family: var(--font-ui); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-right: 4px; }
.tag-chip { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 6px 12px; border: 2px solid var(--border); border-radius: 2px; cursor: pointer; transition: all 0.2s; color: var(--text); }
.tag-chip:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.author-bio-wrap { max-width: 760px; margin: 0 auto; padding: 0 var(--container-pad) 48px; }
.author-bio-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 20px; align-items: flex-start; }
.bio-avi { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-weight: 800; font-size: 18px; color: var(--white); flex-shrink: 0; }
.bio-label { font-family: var(--font-ui); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.bio-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.bio-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); margin-bottom: 10px; }
.bio-link { font-family: var(--font-ui); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--red); }
.bio-link:hover { text-decoration: underline; }
.related-section { background: var(--white); border-top: 2px solid var(--border); padding: 44px 0 52px; }
.related-hdg { font-family: var(--font-display); font-size: 26px; font-weight: 900; font-style: italic; margin-bottom: 24px; letter-spacing: -0.5px; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.comments-wrap { max-width: 760px; margin: 0 auto; padding: 0 var(--container-pad) 64px; }
.comments-wrap .comment-list { list-style: none; margin-bottom: 32px; }
.comments-wrap .comment { padding: 20px 0; border-bottom: 1px solid var(--border); }
.comments-wrap .comment-author { font-family: var(--font-ui); font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.comments-wrap .comment-content p { font-size: 15px; line-height: 1.7; color: #333; }
.comments-wrap .comment-form input, .comments-wrap .comment-form textarea { width: 100%; padding: 12px 16px; font-family: var(--font-body); font-size: 14px; border: 2px solid var(--border); border-radius: 2px; outline: none; transition: border-color 0.2s; background: var(--white); }
.comments-wrap .comment-form input:focus, .comments-wrap .comment-form textarea:focus { border-color: var(--dark); }
.comments-wrap .comment-form textarea { min-height: 140px; resize: vertical; }
.comments-wrap .submit { background: var(--dark); color: var(--white); font-family: var(--font-ui); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 13px 26px; border-radius: 2px; cursor: pointer; transition: background 0.2s; border: none; }
.comments-wrap .submit:hover { background: var(--red); }
.comments-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 20px; }

/* ===== PAGE ===== */
.page-wrap { padding: 48px 0 80px; }
.page-header { margin-bottom: 36px; }
.page-title { font-family: var(--font-display); font-size: clamp(28px, 5vw, 48px); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 0; }
.page-body.entry-content p { font-size: 17px; line-height: 1.85; color: #303030; margin-bottom: 24px; }
.page-body.entry-content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 900; margin: 36px 0 14px; }
.page-body.entry-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 28px 0 12px; }
.page-body.entry-content a { color: var(--red); text-decoration: underline; }

/* ===== 404 ===== */
.error-404-wrap { padding: 80px 0; }
.error-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.error-num { font-family: var(--font-display); font-size: clamp(80px, 15vw, 140px); font-weight: 900; line-height: 1; color: var(--red); opacity: 0.2; margin-bottom: -10px; }
.error-title { font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px); font-weight: 900; font-style: italic; margin-bottom: 16px; }
.error-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.error-search { margin: 28px 0; }
.error-search p { font-family: var(--font-ui); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
.error-search .search-form { max-width: 400px; margin: 0 auto; }
.error-recent { margin-top: 56px; text-align: left; }
.error-recent-hdg { font-family: var(--font-display); font-size: 22px; font-weight: 700; font-style: italic; margin-bottom: 20px; }

/* ===== CONTENT NONE ===== */
.content-none { padding: 80px 0; text-align: center; }
.none-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }
.none-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; font-style: italic; margin-bottom: 12px; }
.none-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; max-width: 440px; margin-left: auto; margin-right: auto; }
.content-none .read-cta { display: inline-flex; }
.content-none .search-form { max-width: 380px; margin: 0 auto 24px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.post-card { animation: fadeUp 0.5s ease both; }

/* =============================================
   TABLET (768px+)
   ============================================= */
@media (min-width: 768px) {
:root { --container-pad: 32px; }
.site-logo { font-size: 18px; }
.masonry-grid { columns: 2; }
.related-grid { grid-template-columns: repeat(2, 1fr); }
.hero-excerpt { font-size: 16px; }
.hero-section { padding: 40px 0 0; }
.nl-strip { flex-direction: row; align-items: center; gap: 40px; padding: 52px 40px; }
.nl-form { width: 340px; flex-shrink: 0; }
.footer-top { flex-direction: row; flex-wrap: wrap; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-nav .menu { flex-direction: row; flex-wrap: wrap; gap: 0 24px; }
.footer-btm { flex-direction: row; justify-content: space-between; align-items: center; }
.section-rule { display: block; }
.post-hdr-img, .post-hdr-img-placeholder { aspect-ratio: 4/3; }
.author-hdr-avi img { width: 96px; height: 96px; }
}

/* =============================================
   DESKTOP (1024px+)
   ============================================= */
@media (min-width: 1024px) {
:root { --container-pad: 40px; --nav-h: 64px; }
.site-logo { font-size: 19px; }
.nav-hamburger { display: none; }
.mobile-menu { display: none !important; }
.hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.hero-sidebar { display: block; border-left: 2px solid var(--border); padding-left: 36px; }
.sidebar-hdg { font-family: var(--font-ui); font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); padding-bottom: 14px; border-bottom: 2px solid var(--dark); margin-bottom: 4px; }
.sidebar-post { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: opacity 0.2s; }
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover { opacity: 0.7; }
.sp-num { font-family: var(--font-display); font-size: 32px; font-weight: 900; line-height: 1; color: var(--border); flex-shrink: 0; width: 40px; text-align: right; padding-top: 2px; }
.sp-cat { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.sp-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; line-height: 1.28; margin-bottom: 5px; }
.sp-title a { color: inherit; transition: color 0.2s; }
.sidebar-post:hover .sp-title a { color: var(--red); }
.sp-meta { font-size: 11px; color: var(--text-muted); font-family: var(--font-ui); font-weight: 600; }
.masonry-grid { columns: 3; }
.related-grid { grid-template-columns: repeat(3, 1fr); }
.post-hdr-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 52px var(--container-pad); flex-direction: unset; }
.post-hdr-img, .post-hdr-img-placeholder { aspect-ratio: 4/3; }
.footer-top { display: grid; grid-template-columns: 1fr auto auto auto; gap: 60px; flex-direction: unset; flex-wrap: unset; }
.footer-brand { min-width: unset; }
.footer-nav .menu { flex-direction: column; gap: 0; }
.footer-nav .menu a { padding: 5px 0; }
.nl-strip { padding: 60px 40px; }
.hero-cat-label { margin-top: 0; }
.hero-excerpt { max-width: 560px; }
.bc-current { max-width: 400px; }
}

/* =============================================
   LARGE (1280px+)
   ============================================= */
@media (min-width: 1280px) {
.hero-grid { grid-template-columns: 1fr 380px; }
}

/* ===== PRINT ===== */
@media print {
.site-nav, .ticker-bar, .nl-strip, .site-footer, .share-row, .related-section, .post-bc { display: none; }
body { border-top: none; font-size: 12pt; }
.post-content p { font-size: 12pt; line-height: 1.6; }
}
