*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0a0a0a; --dark: #1a1a1a; --body: #2c2c2c;
  --muted: #666; --faint: #999; --border: #d8d4cc; --border-l: #e8e4dc;
  --bg: #f4f1eb; --white: #fff; --red: #c0392b; --accent: #1a3a5c;
  --fh: 'Playfair Display', Georgia, serif;
  --fs: 'Source Serif 4', Georgia, serif;
  --fc: 'Barlow Condensed', system-ui, sans-serif;
}
body { font-family: var(--fs); background: var(--bg); color: var(--body); font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

.ad-slot { background: repeating-linear-gradient(45deg,#e8e4dc,#e8e4dc 4px,#f0ede5 4px,#f0ede5 12px); border: 1.5px dashed #c8c4bc; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.ad-label { font-family: var(--fc); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #bbb; }

/* TOP BAR */
.topbar { background: var(--black); color: rgba(255,255,255,.5); font-family: var(--fc); font-size: 11px; font-weight: 600; letter-spacing: .5px; padding: 6px 0; overflow: hidden; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 16px; }
.tb-date { color: rgba(255,255,255,.5); white-space: nowrap; flex-shrink: 0; }
.tb-sep { width: 1px; height: 10px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.tb-live-label { display: flex; align-items: center; gap: 6px; white-space: nowrap; flex-shrink: 0; }
.tb-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse-red 1.5s infinite; flex-shrink: 0; }
@keyframes pulse-red { 0%,100%{opacity:1}50%{opacity:.3} }
.tb-live-word { color: var(--red); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: 10px; }
.tb-ticker { flex: 1; overflow: hidden; position: relative; }
.tb-ticker-track { display: flex; gap: 48px; animation: ticker 35s linear infinite; white-space: nowrap; }
.tb-ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.tb-ticker-item { color: rgba(255,255,255,.6); cursor: pointer; transition: color .15s; flex-shrink: 0; }
.tb-ticker-item:hover { color: #fff; }
.tb-ticker-sep { color: rgba(255,255,255,.15); flex-shrink: 0; }

/* HEADER */
.header { background: var(--white); border-bottom: 3px solid var(--black); padding: 22px 0 18px; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.header-meta { font-family: var(--fc); font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.hm-sep { color: var(--border); }
.site-name { font-family: var(--fh); font-size: 62px; font-weight: 900; color: var(--black); letter-spacing: -2px; line-height: 1; text-align: center; }
.site-tagline { font-family: var(--fc); font-size: 12px; font-weight: 600; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; margin-top: 2px; }

/* NAV */
.nav { background: var(--black); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; position: relative; }
.nav-links { display: flex; }
.nav-link { font-family: var(--fc); font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: rgba(255,255,255,.65); padding: 14px 15px; cursor: pointer; transition: all .15s; border-bottom: 3px solid transparent; }
.nav-link:hover { color: #fff; }
.nav-link.on { color: #fff; border-bottom-color: var(--red); }
.nav-search { font-family: var(--fc); font-size: 12px; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 6px; cursor: pointer; transition: color .15s; position: absolute; right: 24px; }
.nav-search:hover { color: #fff; }

/* PAGE */
.page { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* CAT LABEL */
.cat { font-family: var(--fc); font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--red); display: inline-block; margin-bottom: 5px; }

/* SEC LABEL */
.sec-lbl { font-family: var(--fc); font-size: 18px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--white); background: var(--black); display: inline-block; padding: 4px 14px 4px 0; margin-bottom: 18px; }

/* ART TITLE */
.ttl { font-family: var(--fh); font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--black); margin-bottom: 5px; transition: color .15s; }
.exc { font-family: var(--fs); font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.meta { font-family: var(--fc); font-size: 11px; font-weight: 600; color: var(--faint); margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.ms { color: var(--border); }

/* BILLBOARD */
.bb-wrap { padding: 20px 0; }
.bb { width: 100%; height: 130px; border-radius: 5px; }

/* ══ HERO ══ */
.hero { display: grid; grid-template-columns: 210px 1fr 240px; gap: 0; border-top: 2px solid var(--black); border-bottom: 2px solid var(--black); padding: 20px 0 22px; }
.hero-l { border-right: 1px solid var(--border); padding-right: 20px; display: flex; flex-direction: column; gap: 20px; }
.hl-art { cursor: pointer; }
.hl-art img { height: 110px; border-radius: 5px; margin-bottom: 8px; transition: opacity .2s; }
.hl-art:hover img { opacity: .9; }
.hl-art:hover .ttl { color: var(--red); }

.hero-c { padding: 0 28px; display: flex; flex-direction: column; }
.hero-img { height: 280px; border-radius: 5px; margin-bottom: 14px; overflow: hidden; }
.hero-img img { height: 280px; transition: transform .5s; }
.hero-img:hover img { transform: scale(1.03); }
.h-ttl { font-family: var(--fh); font-size: 30px; font-weight: 900; line-height: 1.15; color: var(--black); margin-bottom: 10px; cursor: pointer; transition: color .15s; }
.h-ttl:hover { color: var(--red); }
.h-exc { font-family: var(--fs); font-size: 14px; font-weight: 300; color: var(--body); line-height: 1.7; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.h-byl { font-family: var(--fc); font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .3px; display: flex; align-items: center; gap: 8px; }
.h-byl em { font-style: italic; color: var(--faint); font-family: var(--fs); }

.hero-r { border-left: 1px solid var(--border); padding-left: 20px; display: flex; flex-direction: column; }
.hr-art { padding: 11px 0; border-bottom: 1px solid var(--border-l); cursor: pointer; }
.hr-art:first-child { padding-top: 0; }
.hr-art:last-child { border-bottom: none; }
.hr-art .ttl { font-size: 14px; }
.hr-art:hover .ttl { color: var(--red); }

/* AD STRIP */
.adstrip { padding: 18px 0; }
.adstrip-inner { height: 90px; border-radius: 5px; }

/* BLOCK 8 — 4+4 */
.b8 { padding-bottom: 24px; margin-bottom: 0; border-bottom: 2px solid var(--black); }
.g8 { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.g8-row { display: contents; }
.g8-art { padding: 0 20px 24px; border-right: 1px solid var(--border); cursor: pointer; }
.g8-art:nth-child(4n+1) { padding-left: 0; }
.g8-art:nth-child(4n) { border-right: none; padding-right: 0; }
.g8-art:nth-child(n+5) { padding-top: 20px; border-top: 1px solid var(--border); }
.g8-art img { height: 140px; border-radius: 5px; margin-bottom: 10px; transition: opacity .2s; }
.g8-art:hover img { opacity: .9; }
.g8-art .ttl { font-size: 15px; }
.g8-art:hover .ttl { color: var(--red); }
.g8-art .exc { -webkit-line-clamp: 2; margin-bottom: 5px; font-size: 12px; }

/* MORE NEWS — list with image */
.mn-art { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border-l); cursor: pointer; }
.mn-art:last-child { border-bottom: none; }
.mn-thumb { width: 90px; height: 66px; border-radius: 5px; overflow: hidden; flex-shrink: 0; }
.mn-thumb img { height: 66px; transition: opacity .2s; }
.mn-art:hover .mn-thumb img { opacity: .9; }
.mn-art .ttl { font-size: 15px; }
.mn-art:hover .ttl { color: var(--red); }

/* 4 medium below feat */
.mg4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 18px; }
.mg4-art { padding: 0 16px; border-right: 1px solid var(--border); cursor: pointer; }
.mg4-art:first-child { padding-left: 0; }
.mg4-art:last-child { border-right: none; padding-right: 0; }
.mg4-art img { height: 110px; border-radius: 5px; margin-bottom: 8px; transition: opacity .2s; }
.mg4-art:hover img { opacity: .9; }
.mg4-art .ttl { font-size: 14px; }
.mg4-art:hover .ttl { color: var(--red); }

/* 6 medium below feat — 3+3 */
.mg6 { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 18px; }
.mg6-art { padding: 0 18px; border-right: 1px solid var(--border); cursor: pointer; }
.mg6-art:nth-child(3n+1) { padding-left: 0; }
.mg6-art:nth-child(3n) { border-right: none; padding-right: 0; }
.mg6-art:nth-child(n+4) { padding-top: 20px; margin-top: 20px; border-top: 1px solid var(--border); }
.mg6-art img { height: 120px; border-radius: 5px; margin-bottom: 9px; transition: opacity .2s; }
.mg6-art:hover img { opacity: .9; }
.mg6-art .ttl { font-size: 15px; }
.mg6-art:hover .ttl { color: var(--red); }

/* MORE NEWS with sidebar */
.mn-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 36px; border-top: 2px solid var(--black); padding-top: 20px; margin-bottom: 32px; }
.mn-sidebar { align-self: start; position: sticky; top: 70px; }

/* BLOCK 4 */
.b4 { padding-bottom: 24px; margin-bottom: 0; border-bottom: 2px solid var(--black); }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.g4-art { padding: 0 20px; border-right: 1px solid var(--border); cursor: pointer; }
.g4-art:first-child { padding-left: 0; }
.g4-art:last-child { border-right: none; padding-right: 0; }
.g4-art img { height: 155px; border-radius: 5px; margin-bottom: 10px; transition: opacity .2s; }
.g4-art:hover img { opacity: .9; }
.g4-art .ttl { font-size: 16px; }
.g4-art:hover .ttl { color: var(--red); }
.g4-art .exc { -webkit-line-clamp: 2; margin-bottom: 5px; }

/* MAIN+SIDEBAR */
.cw { display: grid; grid-template-columns: 1fr 300px; gap: 36px; padding-bottom: 36px; }

/* feat */
.feat-art { cursor: pointer; margin-bottom: 16px; }
.feat-art img { height: 300px; border-radius: 5px; margin-bottom: 12px; transition: opacity .2s; }
.feat-art:hover img { opacity: .9; }
.feat-ttl { font-family: var(--fh); font-size: 28px; font-weight: 900; line-height: 1.2; color: var(--black); margin-bottom: 8px; transition: color .15s; }
.feat-art:hover .feat-ttl { color: var(--red); }
.feat-exc { font-family: var(--fs); font-size: 14px; font-weight: 300; color: var(--body); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mg { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 18px; }
.m-art { cursor: pointer; }
.m-art img { height: 140px; border-radius: 5px; margin-bottom: 8px; transition: opacity .2s; }
.m-art:hover img { opacity: .9; }
.m-art .ttl { font-size: 16px; }
.m-art:hover .ttl { color: var(--red); }
.feat-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

/* text list */
.tl-art { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--border-l); cursor: pointer; }
.tl-art:last-child { border-bottom: none; }
.tl-n { font-family: var(--fh); font-size: 28px; font-weight: 900; color: var(--border); line-height: 1; min-width: 32px; flex-shrink: 0; padding-top: 2px; transition: color .15s; }
.tl-art:hover .tl-n { color: var(--red); }
.tl-art .ttl { font-size: 15px; }
.tl-art:hover .ttl { color: var(--red); }

/* SIDEBAR */
.sb-w { margin-bottom: 24px; }
.sb-t { font-family: var(--fc); font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: var(--black); padding: 6px 12px; display: block; }
.mr-list { border: 1px solid var(--border); border-top: none; }
.mr-i { display: flex; gap: 11px; align-items: flex-start; padding: 11px 12px; border-bottom: 1px solid var(--border-l); cursor: pointer; transition: background .15s; }
.mr-i:last-child { border-bottom: none; }
.mr-i:hover { background: #f8f5ef; }
.mr-n { font-family: var(--fh); font-size: 22px; font-weight: 900; color: var(--border); line-height: 1; min-width: 26px; flex-shrink: 0; transition: color .15s; }
.mr-i:hover .mr-n { color: var(--red); }
.mr-c { font-family: var(--fc); font-size: 10px; font-weight: 700; color: var(--red); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 3px; }
.mr-ttl { font-family: var(--fh); font-size: 13px; font-weight: 700; line-height: 1.35; color: var(--black); transition: color .15s; }
.mr-i:hover .mr-ttl { color: var(--red); }

.cat-list { border: 1px solid var(--border); border-top: none; }
.cat-i { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-bottom: 1px solid var(--border-l); cursor: pointer; transition: background .15s; font-family: var(--fc); font-size: 13px; font-weight: 700; letter-spacing: .3px; color: var(--dark); }
.cat-i:last-child { border-bottom: none; }
.cat-i:hover { background: #f8f5ef; color: var(--red); }
.cat-cnt { font-size: 11px; font-weight: 600; color: var(--faint); background: var(--bg); padding: 2px 7px; border-radius: 10px; }

/* FOOTER */
.footer-ad-wrap { padding: 24px 0 0; border-top: 2px solid var(--black); }
.footer-ad { height: 90px; border-radius: 5px; }
.footer { background: var(--black); margin-top: 32px; padding: 40px 0 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.f-logo { font-family: var(--fh); font-size: 36px; font-weight: 900; color: #fff; line-height: 1; text-align: center; }
.f-tagline { font-family: var(--fc); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.3); }
.f-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.f-nav-link { font-family: var(--fc); font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: rgba(255,255,255,.4); cursor: pointer; transition: color .15s; padding: 4px 8px; }
.f-nav-link:hover { color: #fff; }
.f-nav-sep { color: rgba(255,255,255,.12); font-size: 10px; }
.f-socials { display: flex; align-items: center; gap: 10px; }
.f-social { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: all .15s; color: rgba(255,255,255,.5); }
.f-social:hover { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.08); }
.f-divider { width: 100%; height: 1px; background: rgba(255,255,255,.08); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; width: 100%; font-family: var(--fc); font-size: 11px; font-weight: 600; letter-spacing: .5px; color: rgba(255,255,255,.2); }
.f-pb span { color: rgba(255,255,255,.4); }

/* ── ARTICLE PAGE ── */
.art-breadcrumb { font-family: var(--fc); font-size: 12px; color: var(--faint); display: flex; align-items: center; gap: 8px; margin: 28px 0 20px; }
.art-breadcrumb a:hover { color: var(--red); }
.art-header { max-width: 760px; margin-bottom: 24px; }
.art-cat { font-family: var(--fc); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.art-title { font-family: var(--fh); font-size: 42px; font-weight: 900; line-height: 1.1; color: var(--black); margin-bottom: 16px; }
.art-lead { font-family: var(--fs); font-size: 19px; font-weight: 300; font-style: italic; color: var(--body); line-height: 1.7; margin-bottom: 20px; padding-left: 16px; border-left: 3px solid var(--red); }
.art-byline { font-family: var(--fc); font-size: 12px; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 10px; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 28px; flex-wrap: wrap; }
.art-byline strong { color: var(--dark); }
.art-byline .dot { color: var(--border); }
.art-feat-img { width: 100%; height: 480px; border-radius: 5px; overflow: hidden; margin-bottom: 32px; }
.art-feat-img img { width: 100%; height: 480px; object-fit: cover; }
.art-body { font-family: var(--fs); font-size: 18px; line-height: 1.85; color: var(--body); max-width: 720px; }
.art-body p { margin-bottom: 24px; }
.art-body p:first-of-type::first-letter { font-family: var(--fh); font-size: 4.5em; font-weight: 900; float: left; line-height: 0.75; margin: 6px 8px 0 0; color: var(--black); }
.art-body h2 { font-family: var(--fh); font-size: 26px; font-weight: 700; color: var(--black); margin: 36px 0 12px; }
.art-body h3 { font-family: var(--fh); font-size: 21px; font-weight: 700; color: var(--black); margin: 28px 0 10px; }
.art-body blockquote { border-left: 3px solid var(--red); padding: 14px 20px; margin: 28px 0; background: #eeeae2; font-style: italic; color: var(--muted); border-radius: 0 4px 4px 0; }
.art-body blockquote cite { display: block; font-size: 13px; font-family: var(--fc); font-style: normal; margin-top: 8px; color: var(--faint); }
.art-body a { color: var(--red); text-decoration: underline; }
.art-body ul, .art-body ol { padding-left: 24px; margin-bottom: 20px; }
.art-body li { margin-bottom: 6px; }
.art-inline-ad { margin: 32px 0; }

/* AUTHOR BOX */
.author-box { display: flex; align-items: center; gap: 16px; background: var(--black); border-left: 4px solid var(--red); padding: 18px 20px; margin: 32px 0; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-avatar span { font-family: var(--fh); font-size: 18px; font-weight: 900; color: white; }
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-family: var(--fc); font-size: 13px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: white; }
.author-role { font-family: var(--fs); font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5); font-style: italic; }

/* RELATED */
.art-related { padding: 28px 0 0; border-top: 2px solid var(--black); margin-top: 8px; }
.art-related-title { font-family: var(--fc); font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: var(--black); display: inline-block; padding: 4px 14px 4px 0; margin-bottom: 20px; }
.art-related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.art-rel-art { padding: 0 16px; border-right: 1px solid var(--border); cursor: pointer; }
.art-rel-art:first-child { padding-left: 0; }
.art-rel-art:nth-child(4n) { border-right: none; padding-right: 0; }
.art-rel-art img { height: 110px; border-radius: 5px; margin-bottom: 8px; width: 100%; object-fit: cover; }
.art-rel-art .ttl { font-size: 14px; }
.art-rel-art:hover .ttl { color: var(--red); }

/* CATEGORY PAGE */
.cat-page-header { padding: 28px 0 20px; border-bottom: 3px solid var(--black); margin-bottom: 0; display: flex; align-items: baseline; gap: 16px; }
.cat-page-name { font-family: var(--fh); font-size: 38px; font-weight: 900; color: var(--black); }
.cat-page-count { font-family: var(--fc); font-size: 14px; color: var(--faint); }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; padding: 24px 0; border-bottom: 2px solid var(--black); }
.cat-art { padding: 0 20px 28px; border-right: 1px solid var(--border); cursor: pointer; }
.cat-art:nth-child(3n+1) { padding-left: 0; }
.cat-art:nth-child(3n) { border-right: none; padding-right: 0; }
.cat-art:nth-child(n+4) { padding-top: 28px; border-top: 1px solid var(--border); }
.cat-art img { height: 180px; border-radius: 5px; margin-bottom: 10px; width: 100%; object-fit: cover; }
.cat-art .ttl { font-size: 17px; }
.cat-art:hover .ttl { color: var(--red); }
.cat-art .exc { -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px; }
.cat-pagination { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.pg-btn { font-family: var(--fc); font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 9px 22px; background: var(--black); color: #fff; border-radius: 2px; cursor: pointer; transition: background .15s; display: inline-block; }
.pg-btn:hover { background: var(--red); color: #fff; }
.pg-btn.disabled { background: var(--border); color: var(--faint); cursor: default; pointer-events: none; }
.pg-info { font-family: var(--fc); font-size: 12px; color: var(--faint); }

/* STATIC PAGE */
.static-wrap { max-width: 760px; margin: 0 auto; padding: 40px 0 60px; }
.static-title { font-family: var(--fh); font-size: 42px; font-weight: 900; color: var(--black); padding-bottom: 20px; border-bottom: 3px solid var(--black); margin-bottom: 32px; }
.static-body { font-family: var(--fs); font-size: 17px; line-height: 1.85; color: var(--body); }
.static-body p { margin-bottom: 20px; }
.static-body h2 { font-family: var(--fh); font-size: 24px; font-weight: 700; color: var(--black); margin: 32px 0 12px; }
.static-body a { color: var(--red); text-decoration: underline; }

/* 404 */
.e404-wrap { text-align: center; padding: 80px 24px; }
.e404-num { font-family: var(--fh); font-size: 140px; font-weight: 900; color: var(--border); line-height: 1; }
.e404-title { font-family: var(--fh); font-size: 28px; font-weight: 700; color: var(--black); margin: 12px 0 10px; }
.e404-desc { font-family: var(--fs); font-size: 16px; color: var(--muted); margin-bottom: 28px; }
.e404-btn { display: inline-block; font-family: var(--fc); font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 12px 28px; background: var(--black); color: #fff; border-radius: 2px; cursor: pointer; transition: background .15s; }
.e404-btn:hover { background: var(--red); }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); border-top: 2px solid var(--red); z-index: 999; padding: 16px 20px; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-inner p { font-family: var(--fc); font-size: 13px; color: rgba(255,255,255,.7); }
.cookie-inner a { color: white; text-decoration: underline; }
.cookie-btn { flex-shrink: 0; padding: 8px 24px; background: var(--red); color: white; border: none; font-family: var(--fc); font-size: 13px; font-weight: 700; cursor: pointer; border-radius: 2px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .art-related-grid { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .art-title { font-size: 28px; }
  .art-feat-img { height: 240px; }
  .art-feat-img img { height: 240px; }
  .art-body { font-size: 16px; }
  .cat-grid { grid-template-columns: 1fr; }
  .art-related-grid { grid-template-columns: 1fr 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .art-related-grid { grid-template-columns: 1fr; }
}