@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&display=swap');

:root { --ink: #f2f2f0; --muted: #7a7a78; --line: #232323; --paper: #060606; --accent: #ffffff; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
body { font-family: 'Archivo', -apple-system, sans-serif; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Archivo', sans-serif; margin: 0; font-weight: 600; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.placeholder-img { background: #151515; display: flex; align-items: center; justify-content: center; color: #3d3d3d; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; object-fit: cover; }

.site-header { padding: 26px 20px; display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; flex-wrap: wrap; row-gap: 12px; }
.logo-group { display: flex; align-items: center; gap: 12px; }
.logo-box { width: 38px; height: 38px; border: 1px solid var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.logo-img { height: 96px; width: auto; max-width: 360px; object-fit: contain; }
.site-name { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.site-tagline { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.main-nav .wrap { display: none; }
.header-nav-inline { display: flex; gap: 16px 22px; flex-wrap: wrap; }
.header-nav-inline a { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.header-nav-inline a.home { color: #fff; border-bottom: 1px solid #fff; padding-bottom: 3px; }
.header-nav-inline a:hover { color: #fff; }

.coverage-strip { background: #b3241c; color: #fff; text-align: center; font-size: 10.5px; font-weight: 800; letter-spacing: .12em; padding: 6px; }

.live-hero { position: relative; display: block; height: 460px; overflow: hidden; }
.live-hero .placeholder-img, .live-hero img { width: 100%; height: 100%; object-fit: cover; }
.live-hero .live-badge { position: absolute; top: 20px; left: 20px; z-index: 2; background: #b3241c; color: #fff; font-size: 12px;
  font-weight: 800; letter-spacing: .08em; padding: 6px 12px; border-radius: 3px; display: flex; align-items: center; gap: 7px; }
.live-hero .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: cfbnLivePulse 1.4s ease-in-out infinite; }
@keyframes cfbnLivePulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.live-hero .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 66px; height: 66px;
  border-radius: 50%; background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.8); color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center; padding-left: 4px; backdrop-filter: blur(2px); transition: background .2s; }
.live-hero:hover .play-btn { background: rgba(255,255,255,.32); }
.live-hero-caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px;
  background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 55%, rgba(0,0,0,0) 100%); }
.live-hero-caption .cat-tag { background: #fff; }
.live-hero-caption h1 { font-size: 30px; color: #fff; margin: 8px 0 8px; max-width: 760px; }
.live-hero-caption p { color: #d8d8d6; font-size: 14px; max-width: 640px; margin: 0 0 8px; }
.live-hero-caption .byline { color: #cfcfcd; }

.play-btn-sm { position: absolute; top: 10px; right: 10px; z-index: 2; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff; font-size: 10px; display: flex; align-items: center; justify-content: center; padding-left: 1.5px; }

.wire-section { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.wire-section-heading { display: flex; align-items: center; justify-content: space-between; padding: 34px 0 14px; border-top: 1px solid var(--line); }
.wire-section-heading h2 { font-size: 20px; text-transform: uppercase; letter-spacing: .05em; }
.wire-section-heading .see-all { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.gallery-grid.small { grid-template-columns: repeat(6, 1fr); padding: 0; margin-bottom: 6px; }
.gallery-grid.small .gallery-item { aspect-ratio: 3/4; }
.gallery-grid.small .gallery-caption h3 { font-size: 12.5px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1280px; margin: 0 auto; padding: 2px; }
.gallery-grid a.big { grid-column: span 2; grid-row: span 2; }
.gallery-item { position: relative; display: block; overflow: hidden; aspect-ratio: 1 / 1; }
.gallery-grid a.big .gallery-item { aspect-ratio: auto; height: 100%; }
.gallery-item .placeholder-img, .gallery-item img { width: 100%; height: 100%; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .featured-ribbon { position: absolute; top: 12px; left: 12px; z-index: 2; background: #b3241c; color: #fff; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 3px 9px; border-radius: 2px; }
.gallery-caption { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,0) 75%); display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; }
.gallery-caption h3 { font-size: 15px; color: #fff; margin: 4px 0 3px; }
.gallery-caption .byline { color: #cfcfcd; font-size: 10.5px; text-transform: uppercase; letter-spacing: .03em; }
.cat-tag { display: inline-block; color: #14131c; background: #fff; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; padding: 2px 8px; border-radius: 2px; width: fit-content; }

.layout { max-width: 1280px; margin: 0 auto; padding: 40px 20px 60px; }
.section-heading { display: flex; align-items: center; justify-content: space-between; padding: 30px 0 16px; border-top: 1px solid var(--line); margin-top: 30px; }
.section-heading h2 { font-size: 14px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.section-heading .see-all { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); }
section.cat-section:first-child .section-heading { border-top: none; margin-top: 0; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2px; }
.post-card { display: block; position: relative; aspect-ratio: 4/3; overflow: hidden; }
.post-card .placeholder-img, .post-card img { width: 100%; height: 100%; }
.post-card .cap { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.8), rgba(0,0,0,0) 60%); display: flex; align-items: flex-end; padding: 14px; }
.post-card h3 { font-size: 14px; color: #fff; }
.meta, .byline { color: var(--muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; }
.post-card .cap .cat-tag { margin-bottom: 4px; }

.category-title { font-size: 26px; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 26px; }

.single-post-header { max-width: 760px; margin: 0 auto 30px; text-align: left; }
.single-post-header h1 { font-size: 30px; line-height: 1.25; margin: 10px 0 12px; }
.featured-ribbon { display: inline-block; border: 1px solid var(--ink); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; padding: 4px 12px; margin-bottom: 10px; }
.single-post-headline { width: 100%; margin-bottom: 34px; }
.single-post-content { max-width: 760px; margin: 0 auto; font-size: 16px; line-height: 1.8; color: #d0d0ce; }
.single-post-content p { margin: 0 0 20px; }
.single-post-content a { color: #fff; text-decoration: underline; }
.single-post-content img { margin: 24px 0; }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px auto 0; padding-top: 20px; border-top: 1px solid var(--line); max-width: 760px; justify-content: flex-start; }
.tag-pill-link { border: 1px solid var(--line); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; padding: 5px 12px; color: var(--muted); }
.tag-pill-link:hover { color: #fff; border-color: #fff; }

.related-posts { margin-top: 50px; }
.related-posts h2 { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); text-align: center; margin-bottom: 20px; }

.search-form { display: flex; gap: 10px; margin: 0 0 30px; max-width: 500px; }
.search-form input { flex: 1; padding: 12px 16px; border: 1px solid var(--line); background: #0d0d0d; color: #fff; font-family: inherit; }
.search-form button { background: #fff; color: #000; border: none; padding: 0 22px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 12px; cursor: pointer; }

.empty-state { text-align: center; padding: 100px 20px; color: var(--muted); }
.empty-state h1 { color: #fff; font-size: 26px; text-transform: uppercase; letter-spacing: .04em; }
.btn { display: inline-block; margin-top: 16px; border: 1px solid #fff; color: #fff; padding: 10px 22px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }

.site-footer { border-top: 1px solid var(--line); padding: 40px 20px; text-align: center; }
.site-footer .footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 12px; }
.site-footer .footer-links a:hover { color: #fff; }
.footer-bottom { font-size: 10.5px; color: #4a4a4a; text-transform: uppercase; letter-spacing: .06em; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid a.big { grid-column: span 2; grid-row: span 1; }
  .gallery-grid.small { grid-template-columns: repeat(3, 1fr); }
}
