@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --ink:#050709;
  --ink-2:#0a0e12;
  --ink-3:#10161b;
  --paper:#f3f3f1;
  --white:#fff;
  --muted:#9ba4ab;
  --muted-2:#6d767d;
  --line:#273039;
  --red:#d9252e;
  --red-dark:#b91d25;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--ink);
  color:var(--white);
  font-family:Inter,Arial,sans-serif;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input{font:inherit}
.shell{width:min(1180px,calc(100% - 42px));margin-inline:auto}

/* HEADER */
.site-header{
  background:linear-gradient(180deg,#020406,#070b0e);
  border-bottom:1px solid #182027;
}
.masthead{
  min-height:124px;
  display:grid;
  grid-template-columns:185px 1px 1fr auto;
  gap:22px;
  align-items:center;
}
.brand img{
  width:170px;
  height:auto;
}
.brand-rule{
  width:1px;
  height:58px;
  background:#7f878c;
}
.brand-line{
  margin:0;
  font-family:"Barlow Condensed",Arial,sans-serif;
  color:#a7b0b8;
  font-weight:700;
  letter-spacing:.19em;
  line-height:1.35;
  font-size:13px;
}
.masthead-actions{
  display:flex;
  align-items:center;
  gap:13px;
}
.search-box{
  display:flex;
  width:235px;
  height:38px;
  border:1px solid #39444c;
  border-radius:3px;
  overflow:hidden;
  background:#0b1014;
}
.search-box input{
  min-width:0;
  flex:1;
  border:0;
  outline:0;
  padding:0 11px;
  background:transparent;
  color:white;
  font-size:12px;
}
.search-box button{
  width:40px;
  border:0;
  border-left:1px solid #39444c;
  background:#11181e;
  color:white;
  font-size:20px;
  cursor:pointer;
}
.social-links{
  display:flex;
  gap:7px;
}
.social-links a{
  width:28px;height:28px;
  display:grid;place-items:center;
  border:1px solid #39444c;
  border-radius:50%;
  color:#dce1e4;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:11px;
  font-weight:700;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:43px;
  padding:0 20px;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-weight:800;
  letter-spacing:.07em;
  text-transform:uppercase;
  border:0;
  cursor:pointer;
}
.btn-red{background:var(--red);color:#fff}
.btn-red:hover{background:var(--red-dark)}
.btn.small{min-height:36px;padding-inline:16px;font-size:12px}

.primary-nav{
  background:#0c1216;
  border-top:1px solid #151c21;
}
.nav-shell{
  min-height:49px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-links a{
  position:relative;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;right:0;
  bottom:-17px;
  height:2px;
  transform:scaleX(0);
  transform-origin:left;
  background:var(--red);
  transition:transform .2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{transform:scaleX(1)}
.nav-kicker{
  color:#77828a;
  font-family:"Barlow Condensed",Arial,sans-serif;
  letter-spacing:.23em;
  font-size:10px;
}
.mobile-menu{
  display:none;
  border:0;
  background:transparent;
  color:white;
  font-size:24px;
}

/* HERO */
.hero{
  position:relative;
  min-height:500px;
  overflow:hidden;
  background:
    radial-gradient(circle at 77% 66%,rgba(210,81,42,.7),transparent 16%),
    radial-gradient(circle at 72% 70%,rgba(181,56,28,.34),transparent 31%),
    linear-gradient(100deg,#020405 0%,#030607 38%,#10171b 72%,#050708 100%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,transparent 0 60%,rgba(0,0,0,.82) 100%),
    repeating-linear-gradient(90deg,transparent 0 84px,rgba(255,255,255,.018) 85px);
}
.hero-shell{
  position:relative;
  z-index:3;
  min-height:500px;
  display:flex;
  align-items:center;
}
.hero-copy{max-width:610px;padding:55px 0 60px}
.eyebrow{
  margin:0 0 12px;
  color:#ff333c;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-weight:800;
  letter-spacing:.09em;
  font-size:18px;
}
.hero h1{
  margin:0 0 18px;
  max-width:700px;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:clamp(50px,6vw,78px);
  line-height:.91;
  letter-spacing:-.025em;
  text-transform:uppercase;
}
.dek{
  margin:0 0 26px;
  color:#d4dadd;
  line-height:1.56;
  font-size:17px;
}
.hero-side-note{
  position:absolute;
  right:65px;
  top:104px;
  margin:0;
  color:#71808d;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:19px;
  line-height:2.15;
  letter-spacing:.35em;
}
.hero-art{position:absolute;inset:0;pointer-events:none}
.tower{
  position:absolute;
  bottom:-30px;
  width:9px;
  background:#050607;
  box-shadow:0 0 0 2px rgba(0,0,0,.65);
}
.tower::before,
.tower::after{
  content:"";
  position:absolute;
  left:50%;
  width:125px;
  height:4px;
  background:#050607;
  transform:translateX(-50%);
}
.tower::before{top:84px}
.tower::after{top:156px;width:90px}
.tower-a{height:340px;right:26%;transform:skew(-7deg)}
.tower-b{height:270px;right:13%;transform:skew(4deg)}
.tower-c{height:230px;right:38%;transform:skew(-4deg)}
.wire{
  position:absolute;
  height:2px;
  width:520px;
  background:rgba(6,7,8,.78);
  transform-origin:right center;
}
.wire-a{right:8%;top:185px;transform:rotate(6deg)}
.wire-b{right:15%;top:235px;transform:rotate(-3deg)}
.wire-c{right:28%;top:142px;transform:rotate(12deg)}

/* FEATURE CARDS */
.dark-section{background:#080c0f;padding:18px 0 25px}
.three-up{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.feature-card{
  background:#0b1014;
  border:1px solid #20282e;
  overflow:hidden;
}
.card-image{
  position:relative;
  display:block;
  height:220px;
  overflow:hidden;
}
.image-fauci{
  background:
    radial-gradient(circle at 50% 48%,#85898d 0 11%,transparent 11.5%),
    radial-gradient(circle at 50% 55%,#45494c 0 20%,transparent 20.5%),
    radial-gradient(circle at 21% 23%,rgba(220,220,220,.25) 0 3%,transparent 3.5%),
    radial-gradient(circle at 79% 37%,rgba(220,220,220,.18) 0 4%,transparent 4.5%),
    linear-gradient(135deg,#262c31,#080b0e 72%);
}
.image-label{
  position:absolute;left:16px;bottom:16px;
  color:#d2d7da;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:12px;
  letter-spacing:.16em;
}
.image-living{
  display:grid;place-items:center;
  background:
    linear-gradient(0deg,rgba(0,0,0,.55),transparent 65%),
    linear-gradient(135deg,#6d4a30,#bd8341 45%,#4c2d21);
}
.retro-title{
  font-family:Georgia,serif;
  font-weight:700;
  color:#f6a349;
  font-size:46px;
  line-height:.73;
  transform:rotate(-4deg);
  text-shadow:2px 3px 0 #3d2417;
}
.retro-title span{color:#fff;font-size:31px;margin-left:45px}
.image-credit{
  background:
    linear-gradient(180deg,rgba(6,21,32,.18),rgba(1,5,8,.7)),
    linear-gradient(135deg,#16374d,#09131c 65%);
}
.scan-line{
  position:absolute;inset:0;
  background:repeating-linear-gradient(180deg,transparent 0 5px,rgba(255,255,255,.018) 6px);
}
.camera{
  position:absolute;width:58px;height:25px;background:#05090c;border-radius:3px;
}
.camera::after{
  content:"";position:absolute;right:-12px;top:5px;
  border-left:13px solid #05090c;border-top:7px solid transparent;border-bottom:7px solid transparent;
}
.cam-one{right:30px;top:45px;transform:rotate(-8deg)}
.cam-two{left:33px;top:38px;transform:rotate(12deg)}
.silhouette{
  position:absolute;
  bottom:-12px;left:50%;
  width:95px;height:150px;
  transform:translateX(-50%);
  background:#050709;
  border-radius:47% 47% 8px 8px;
}
.silhouette::before{
  content:"";position:absolute;
  width:58px;height:58px;border-radius:50%;
  left:18px;top:-32px;background:#050709;
}
.card-copy{padding:0 17px 20px;transform:translateY(-15px)}
.tag{
  display:inline-block;
  padding:5px 8px;
  background:var(--red);
  color:white;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
}
.card-copy h2{
  margin:9px 0 6px;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:30px;
  line-height:1;
}
.card-copy p{
  margin:0;
  color:#bcc4c9;
  line-height:1.45;
  font-size:14px;
}

/* WHITE NEWS FLOOR */
.news-floor{
  background:var(--paper);
  color:#111;
  padding:34px 0 44px;
}
.news-grid{
  display:grid;
  grid-template-columns:1.08fr 1.05fr .72fr;
  gap:35px;
}
.section-title{
  min-height:43px;
  border-bottom:2px solid #bec4c7;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}
.section-title h2{
  margin:0 0 6px;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:29px;
  line-height:1;
}
.section-title>a{
  margin-bottom:9px;
  color:var(--red);
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:11px;
  font-weight:800;
}
.news-item{
  display:grid;
  grid-template-columns:106px 1fr;
  gap:13px;
  align-items:center;
  padding:7px 0;
}
.thumb{
  position:relative;
  height:70px;
  overflow:hidden;
}
.thumb::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(135deg,transparent,rgba(255,255,255,.12));
}
.thumb-crash{
  background:
    radial-gradient(circle at 28% 62%,#e63946 0 4%,transparent 5%),
    radial-gradient(circle at 54% 53%,#2759d8 0 5%,transparent 6%),
    linear-gradient(160deg,#102235,#07090b 70%);
}
.thumb-cannabis{
  background:
    conic-gradient(from 20deg at 50% 50%,#587c39,#1d3c1e,#7ea550,#224c28,#587c39);
}
.thumb-history{
  background:
    linear-gradient(135deg,rgba(0,0,0,.55),rgba(255,255,255,.04)),
    repeating-linear-gradient(90deg,#111 0 13px,#242424 14px 18px);
}
.thumb-food{
  background:
    radial-gradient(circle at 25% 45%,#739c3b 0 16%,transparent 17%),
    radial-gradient(circle at 65% 58%,#b99a39 0 18%,transparent 19%),
    #4b3822;
}
.news-item h3{
  margin:0 0 6px;
  font-size:15px;
  line-height:1.28;
}
.news-item time{
  color:#7c858b;
  font-size:11px;
  letter-spacing:.08em;
}

.studio-screen{
  position:relative;
  height:210px;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 74% 50%,rgba(24,71,114,.7),transparent 28%),
    linear-gradient(135deg,#15202b,#071019 55%,#152b40);
}
.studio-screen::after{
  content:"";
  position:absolute;inset:0;
  background:repeating-linear-gradient(90deg,transparent 0 85px,rgba(255,255,255,.025) 86px);
}
.studio-screen img{width:185px;opacity:.72;position:relative;z-index:1}
.play-button{
  position:absolute;z-index:2;
  width:56px;height:56px;
  display:grid;place-items:center;
  border:2px solid white;border-radius:50%;
  background:rgba(0,0,0,.48);
  color:white;
  padding-left:4px;
}
.video-title{margin:9px 0 2px;font-size:16px}
.video-meta{margin:0 0 10px;color:#6f777d;font-size:11px}
.mini-video{
  display:grid;
  grid-template-columns:114px 1fr;
  gap:13px;
  align-items:center;
  padding:7px 0;
}
.mini-thumb{
  height:63px;
  display:grid;place-items:center;
  color:white;
  font-size:18px;
}
.mini-grid{background:linear-gradient(135deg,#1c252b,#7a442c)}
.mini-city{background:linear-gradient(135deg,#0a131a,#294d67)}
.mini-video h4{margin:0 0 4px;font-size:14px}
.mini-video p{margin:0;color:#7b858a;font-size:11px}

.trending ol{
  margin:0;padding:0;
  list-style:none;
  counter-reset:item;
}
.trending li{
  counter-increment:item;
  border-bottom:1px solid #ccd1d4;
}
.trending li a{
  display:grid;
  grid-template-columns:35px 1fr;
  gap:3px;
  padding:10px 0;
  font-size:13px;
  line-height:1.25;
}
.trending li a::before{
  content:counter(item,decimal-leading-zero);
  color:var(--red);
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-weight:800;
}

/* FOOTER */
.site-footer{background:#05080a;padding:36px 0}
.footer-grid{
  display:grid;
  grid-template-columns:.85fr 1.35fr .75fr;
  align-items:center;
  gap:34px;
}
.site-footer h2{
  margin:0;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:34px;
  line-height:.95;
}
.newsletter-row{display:flex}
.newsletter-form input{
  flex:1;min-width:0;
  border:1px solid #44505a;
  background:#0c1318;
  color:white;
  padding:0 14px;
}
.newsletter-form p{
  margin:8px 0 0;
  text-align:center;
  color:#758089;
  font-size:11px;
}
.footer-brand{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
}
.footer-brand img{width:130px}
.footer-brand p{
  margin:0;
  padding-left:15px;
  border-left:1px solid #73808a;
  color:#7f8b94;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-weight:700;
  letter-spacing:.16em;
  font-size:10px;
  line-height:1.45;
}

/* RESPONSIVE */
@media (max-width:1020px){
  .masthead{
    grid-template-columns:170px 1px 1fr;
    padding-block:18px;
  }
  .masthead-actions{grid-column:1/-1;justify-content:flex-end}
  .nav-kicker{display:none}
  .hero-side-note{display:none}
  .news-grid{grid-template-columns:1fr 1fr}
  .trending{grid-column:1/-1}
  .trending ol{columns:2;column-gap:34px}
  .trending li{break-inside:avoid}
}

@media (max-width:760px){
  .shell{width:min(100% - 28px,1180px)}
  .masthead{
    grid-template-columns:135px 1px 1fr;
    gap:14px;
  }
  .brand img{width:130px}
  .brand-rule{height:48px}
  .brand-line{font-size:11px;letter-spacing:.14em}
  .masthead-actions{justify-content:stretch;flex-wrap:wrap}
  .search-box{flex:1;min-width:210px}
  .social-links{display:none}
  .btn.small{flex:0 0 auto}
  .mobile-menu{display:block}
  .nav-shell{position:relative;justify-content:flex-start}
  .nav-links{
    display:none;
    position:absolute;
    top:49px;left:-14px;right:-14px;
    z-index:20;
    height:auto;
    padding:18px 14px 22px;
    background:#0c1216;
    border-top:1px solid #283139;
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }
  .nav-links.open{display:flex}
  .nav-links a::after{bottom:-5px}
  .hero,.hero-shell{min-height:560px}
  .hero-copy{padding-block:55px}
  .hero h1{font-size:51px}
  .dek{font-size:15px}
  .tower-a{right:5%;opacity:.5}
  .tower-b{right:-10%;opacity:.45}
  .tower-c{display:none}
  .three-up,.news-grid,.footer-grid{grid-template-columns:1fr}
  .card-image{height:235px}
  .trending{grid-column:auto}
  .trending ol{columns:1}
  .footer-brand{justify-content:flex-start}
  .newsletter-row{flex-direction:column;gap:8px}
  .newsletter-form input{min-height:46px}
}

@media (max-width:480px){
  .masthead{
    grid-template-columns:115px 1fr;
  }
  .brand-rule{display:none}
  .brand-line{font-size:10px;padding-left:12px;border-left:1px solid #6e767c}
  .brand img{width:112px}
  .masthead-actions{grid-column:1/-1}
  .hero h1{font-size:44px}
  .eyebrow{font-size:16px}
}

/* WKE ARTICLES — LIST + SIDEBAR */
.wke-articles{display:grid;grid-template-columns:minmax(0,2.15fr) minmax(270px,.8fr);gap:42px;padding-top:42px;padding-bottom:60px}
.article-page-head{border-bottom:2px solid #d9252e;padding-bottom:10px;margin-bottom:6px}
.article-page-head h1{margin:0;font-family:"Barlow Condensed",Arial,sans-serif;font-size:58px;line-height:.9}
.article-page-head p{margin:9px 0 0;color:#555e63}
.story-row{display:grid;grid-template-columns:255px minmax(0,1fr);gap:22px;padding:20px 0;border-bottom:1px solid #c8ccce}
.story-placeholder{height:155px;background:#c7c9ca;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.68);overflow:hidden}
.story-placeholder span{font-family:"Barlow Condensed",Arial,sans-serif;font-size:54px;font-weight:800;line-height:.62;text-align:center}
.story-placeholder small{display:block;margin-top:13px;padding:5px 24px;border-top:7px solid rgba(255,255,255,.68);font-size:14px;letter-spacing:.22em}
.story-copy{align-self:center}
.story-meta{display:flex;align-items:center;gap:10px;margin:0 0 6px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:12px;letter-spacing:.07em}
.story-meta b{color:#d9252e}.story-meta span{border-left:1px solid #aeb3b5;padding-left:10px;color:#70777b}
.story-copy h2{margin:0 0 6px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:30px;line-height:1}
.story-copy h2 a:hover{color:#d9252e}
.story-copy>p:not(.story-meta){margin:0 0 11px;color:#40484c;font-size:14px;line-height:1.45}
.story-read{color:#d9252e;font-family:"Barlow Condensed",Arial,sans-serif;font-size:13px;font-weight:800;letter-spacing:.04em}
.article-sidebar{padding-top:70px}
.side-box{background:#e9e9e7;padding:23px;margin-bottom:22px}
.side-box h2{margin:0 0 12px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:25px}
.side-box>p{margin:0 0 15px;color:#4f575b;font-size:14px;line-height:1.4}
.side-box form{display:grid;gap:9px}.side-box input{width:100%;box-sizing:border-box;border:1px solid #b8bdc0;background:#fff;padding:12px;font:inherit}.side-box form .btn{border:0}.side-box small{display:block;margin-top:10px;color:#666}
.category-list{display:grid}.category-list a{padding:8px 0;border-bottom:1px solid #c9cdcf;font-size:14px}.category-list a:last-child{border:0}.category-list a:hover,.category-list a.active{color:#d9252e;font-weight:700}
.popular-story{display:grid;grid-template-columns:74px 1fr;gap:11px;align-items:center;padding:10px 0;border-bottom:1px solid #c9cdcf}.popular-story:last-child{border:0}.mini-placeholder{height:58px;background:#c5c7c8;color:#eee;display:flex;align-items:center;justify-content:center;font-family:"Barlow Condensed",Arial,sans-serif;font-weight:800}.popular-story strong{font-family:"Barlow Condensed",Arial,sans-serif;font-size:16px;line-height:1}.popular-story strong small{font-family:Inter,Arial,sans-serif;font-size:10px;font-weight:500}
.article-pagination{display:flex;gap:6px;align-items:center;padding-top:24px}.article-pagination a,.article-pagination span{min-width:36px;height:36px;padding:0 8px;box-sizing:border-box;border:1px solid #c6cacc;display:flex;align-items:center;justify-content:center;font-size:13px}.article-pagination a.current{background:#d9252e;border-color:#d9252e;color:#fff}
@media(max-width:900px){.wke-articles{grid-template-columns:1fr}.article-sidebar{padding-top:0;display:grid;grid-template-columns:1fr 1fr;gap:18px}.side-box{margin:0}.side-box:first-child{grid-column:1/-1}}
@media(max-width:650px){.wke-articles{padding-top:28px}.article-page-head h1{font-size:48px}.story-row{grid-template-columns:1fr;gap:13px}.story-placeholder{height:210px}.article-sidebar{display:block}.side-box{margin-bottom:18px}.story-copy h2{font-size:27px}}


/* ARTICLES PAGE — LIGHT ARCHIVE OVERRIDES */
body.articles-body{
  background:#ffffff !important;
  color:#111111 !important;
}
body.articles-body main.wke-articles{
  background:#ffffff !important;
  color:#111111 !important;
}
body.articles-body .article-main,
body.articles-body .story-list,
body.articles-body .story-row,
body.articles-body .story-copy{
  background:#ffffff !important;
  color:#111111 !important;
}
body.articles-body .story-copy h2,
body.articles-body .story-copy h2 a,
body.articles-body .article-page-head h1{
  color:#111111 !important;
}
body.articles-body .story-copy>p:not(.story-meta),
body.articles-body .article-page-head p{
  color:#40484c !important;
}
body.articles-body .article-sidebar{
  background:#ffffff !important;
  color:#111111 !important;
}
body.articles-body .side-box{
  background:#f0f0ef !important;
  color:#111111 !important;
}
body.articles-body .side-box a,
body.articles-body .popular-story strong{
  color:#111111;
}
body.articles-body .side-box a:hover,
body.articles-body .side-box a.active{
  color:#d9252e !important;
}
body.articles-body .story-placeholder{
  background:#c7c9ca !important;
}

/* =========================================================
   WKE INDIVIDUAL ARTICLE TEMPLATE
   ========================================================= */
body.wke-article-body{background:#fff;color:#15191b}
.wke-article-body main{background:#fff}
.article-template{background:#fff}
.article-header{max-width:1050px;padding-top:58px;padding-bottom:25px}
.article-back{color:#d9252e;font-family:"Barlow Condensed",Arial,sans-serif;font-size:13px;font-weight:800;letter-spacing:.08em}
.article-kicker{margin:30px 0 10px;color:#d9252e;font-family:"Barlow Condensed",Arial,sans-serif;font-size:14px;font-weight:800;letter-spacing:.12em}
.article-header h1{max-width:920px;margin:0;font-family:"Barlow Condensed",Arial,sans-serif;font-size:clamp(52px,7vw,86px);line-height:.9;letter-spacing:-.02em}
.article-dek{max-width:850px;margin:20px 0;color:#4b5459;font-size:20px;line-height:1.5}
.article-byline{display:flex;gap:18px;flex-wrap:wrap;border-top:1px solid #ccd0d2;padding-top:15px;font-size:11px;letter-spacing:.06em}.article-byline span{color:#737b80}
.article-hero{max-width:1180px}.article-hero-placeholder{aspect-ratio:16/9;background:#c5c7c8;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;font-family:"Barlow Condensed",Arial,sans-serif;font-size:30px;font-weight:800;letter-spacing:.05em}.article-hero-placeholder small{font-size:13px}.article-hero figcaption{margin-top:7px;color:#737b80;font-size:11px}
.article-layout{max-width:1050px;display:grid;grid-template-columns:minmax(0,720px) 220px;gap:70px;padding-top:42px;padding-bottom:50px}
.article-body-copy{font-family:Georgia,"Times New Roman",serif;font-size:18px;line-height:1.75}.article-body-copy p{margin:0 0 25px}.article-body-copy .article-lead{font-size:22px;line-height:1.6}.article-body-copy h2{margin:48px 0 15px;border-top:3px solid #111;padding-top:12px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:34px;line-height:1}.article-body-copy blockquote{margin:38px 0;border-left:5px solid #d9252e;padding:8px 0 8px 25px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:29px;font-weight:700;line-height:1.15}.article-body-copy blockquote p{margin:0}.article-body-copy blockquote cite{display:block;margin-top:10px;font-family:Inter,Arial,sans-serif;font-size:11px;font-style:normal;font-weight:600;color:#737b80}
.article-receipt{margin:25px 0;background:#f0f0ee;border-left:5px solid #d9252e;padding:22px;font-family:Inter,Arial,sans-serif;font-size:14px;line-height:1.5}.article-receipt h3{margin:3px 0 8px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:24px}.article-receipt p{margin:0 0 10px}.receipt-label{color:#d9252e!important;font-family:"Barlow Condensed",Arial,sans-serif!important;font-size:11px!important;font-weight:800;letter-spacing:.12em}.article-receipt a{color:#d9252e;font-weight:800}.article-end-mark{margin-top:50px;border-top:1px solid #c8ccce;padding-top:18px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:18px;font-weight:800;letter-spacing:.12em}
.article-story-sidebar{font-size:13px}.article-story-sidebar section{border-top:3px solid #111;padding:13px 0 25px}.article-story-sidebar h3{margin:0 0 10px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:19px}.article-story-sidebar section>a{display:block;padding:8px 0;border-bottom:1px solid #d3d6d7}.article-share{display:flex;gap:6px}.article-share a{border:1px solid #bbb;padding:7px 9px;font-size:10px;font-weight:800}
.article-sources{max-width:1050px;border-top:5px solid #111;padding-top:20px;padding-bottom:45px}.article-sources h2{margin:0 0 8px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:32px}.article-sources>p{max-width:720px;color:#596166}.article-sources ol{max-width:720px;padding-left:20px}.article-sources li{padding:8px 0;border-bottom:1px solid #d3d6d7}.article-sources a{text-decoration:underline}
.article-related{background:#ececea;padding:35px 0 48px}.article-related h2{margin:0 0 18px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:31px}.article-related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.article-related-grid a{display:grid;gap:9px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:21px;line-height:1}.related-placeholder{aspect-ratio:16/9;background:#c3c5c6;color:#fff;display:flex;align-items:center;justify-content:center;font-size:13px;letter-spacing:.12em}
@media(max-width:850px){.article-layout{grid-template-columns:1fr;gap:25px}.article-story-sidebar{display:grid;grid-template-columns:1fr 1fr;gap:20px}.article-related-grid{grid-template-columns:1fr 1fr}.article-header{padding-top:38px}}
@media(max-width:580px){.article-dek{font-size:17px}.article-layout{padding-top:28px}.article-body-copy{font-size:17px}.article-body-copy .article-lead{font-size:20px}.article-story-sidebar{grid-template-columns:1fr}.article-related-grid{grid-template-columns:1fr}}

/* WKE INDIVIDUAL ARTICLE TEMPLATE */
body.wke-story-body{background:#fff;color:#111}
.wke-story{background:#fff}
.story-hero{padding-top:58px;padding-bottom:30px;max-width:1050px}
.story-kicker{margin:0 0 9px;color:#d9252e;font-family:"Barlow Condensed",Arial,sans-serif;font-size:13px;font-weight:800;letter-spacing:.12em}
.story-hero h1{max-width:1000px;margin:0;font-family:"Barlow Condensed",Arial,sans-serif;font-size:clamp(52px,7.2vw,92px);line-height:.88;letter-spacing:-.025em}
.story-deck{max-width:850px;margin:22px 0 22px;color:#4a5155;font-size:19px;line-height:1.5}
.story-byline{display:flex;flex-wrap:wrap;gap:10px 24px;padding-top:17px;border-top:1px solid #c9cdcf;color:#6a7276;font-family:"Barlow Condensed",Arial,sans-serif;font-size:11px;font-weight:700;letter-spacing:.08em}
.story-byline strong{color:#111}
.story-cover{margin-top:0;margin-bottom:36px}
.story-cover img,.story-cover-placeholder{width:100%;aspect-ratio:16/9;object-fit:cover;display:block}
.story-cover-placeholder{box-sizing:border-box;background:linear-gradient(135deg,#bfc2c4,#8f9497);display:flex;flex-direction:column;align-items:center;justify-content:center;color:rgba(255,255,255,.82);font-family:"Barlow Condensed",Arial,sans-serif;font-size:38px;font-weight:800;letter-spacing:.05em}
.story-cover-placeholder small{margin-top:7px;font-family:Inter,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:.08em}
.story-cover figcaption,.story-inline-image figcaption{margin-top:7px;color:#737a7e;font-size:11px;line-height:1.4}
.story-layout{display:grid;grid-template-columns:minmax(0,760px) 250px;gap:58px;justify-content:center;padding-bottom:60px}
.story-content{font-family:Georgia,"Times New Roman",serif;font-size:18px;line-height:1.72}
.story-content>p{margin:0 0 24px}
.story-content .story-lede{font-size:22px;line-height:1.6}
.story-content h2{margin:47px 0 15px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:38px;line-height:1;text-transform:uppercase}
.story-content blockquote{margin:38px 0;padding:8px 0 8px 25px;border-left:5px solid #d9252e;font-family:"Barlow Condensed",Arial,sans-serif;font-size:31px;font-weight:700;line-height:1.08}
.story-content blockquote p{margin:0}
.story-content blockquote cite{display:block;margin-top:12px;color:#747b7f;font-family:Inter,Arial,sans-serif;font-size:11px;font-style:normal;letter-spacing:.08em}
.story-inline-image{margin:35px 0}
.story-inline-placeholder{height:390px;background:#c5c8ca;display:flex;align-items:center;justify-content:center;color:#fff;font-family:"Barlow Condensed",Arial,sans-serif;font-size:27px;font-weight:800}
.story-rail{padding-top:4px}
.story-rail-box{margin-bottom:20px;padding:20px;border-top:4px solid #111;background:#efefed}
.story-rail-box h3{margin:0 0 11px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:23px}
.story-rail-box>a{display:block;padding:8px 0;border-bottom:1px solid #c7cbcd;font-size:13px}
.story-rail-box>a:last-child{border-bottom:0}
.story-rail-dark{border-top-color:#d9252e;background:#0a0d0f;color:#fff}
.story-rail-dark p:last-child{margin:0;color:#aeb6ba;font-size:12px;line-height:1.5}
.story-receipts{margin-top:55px;border-top:6px solid #111;background:#f0f0ee;padding:30px}
.receipts-head h2{margin:0 0 8px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:42px}
.receipts-head>p:last-child{margin:0 0 20px;color:#555e63;font-family:Inter,Arial,sans-serif;font-size:13px;line-height:1.5}
.receipt-list{margin:0;padding:0;list-style:none;counter-reset:receipts}
.receipt-list li{counter-increment:receipts;display:grid;grid-template-columns:42px 1fr auto;gap:4px 12px;align-items:center;padding:16px 0;border-top:1px solid #c5c9cb;font-family:Inter,Arial,sans-serif}
.receipt-list li:before{content:counter(receipts,decimal-leading-zero);grid-row:1/3;color:#d9252e;font-family:"Barlow Condensed",Arial,sans-serif;font-size:25px;font-weight:800}
.receipt-list strong{font-size:13px}.receipt-list span{grid-column:2;color:#72797d;font-size:11px}.receipt-list a{grid-column:3;grid-row:1/3;color:#d9252e;font-family:"Barlow Condensed",Arial,sans-serif;font-size:12px;font-weight:800}
.story-end{display:flex;align-items:center;gap:14px;margin-top:45px;padding-top:22px;border-top:1px solid #c8ccce;font-family:"Barlow Condensed",Arial,sans-serif}
.story-end span{background:#111;color:#fff;padding:8px 10px;font-size:20px;font-weight:800}.story-end p{margin:0;font-size:13px;font-weight:800;letter-spacing:.08em}
.related-stories{background:#ececea;padding:42px 0 55px}
.related-head{display:flex;justify-content:space-between;align-items:end;border-bottom:3px solid #111;padding-bottom:8px;margin-bottom:20px}
.related-head h2{margin:0;font-family:"Barlow Condensed",Arial,sans-serif;font-size:34px}.related-head>a{color:#d9252e;font-family:"Barlow Condensed",Arial,sans-serif;font-size:12px;font-weight:800}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:25px}
.related-placeholder{height:145px;background:#bfc2c4;display:flex;align-items:center;justify-content:center;color:#e9e9e9;font-family:"Barlow Condensed",Arial,sans-serif;font-size:45px;font-weight:800}
.related-grid .story-kicker{margin-top:12px;margin-bottom:5px}
.related-grid h3{margin:0;font-family:"Barlow Condensed",Arial,sans-serif;font-size:24px;line-height:1}
@media(max-width:900px){.story-layout{grid-template-columns:minmax(0,720px)}.story-rail{display:grid;grid-template-columns:1fr 1fr;gap:18px}.related-grid{grid-template-columns:1fr 1fr}}
@media(max-width:650px){.story-hero{padding-top:38px}.story-deck{font-size:17px}.story-cover{padding-left:0;padding-right:0}.story-layout{display:block}.story-content{font-size:17px}.story-content .story-lede{font-size:20px}.story-content h2{font-size:32px}.story-content blockquote{font-size:27px}.story-inline-placeholder{height:230px}.story-rail{display:block;margin-top:38px}.receipt-list li{grid-template-columns:35px 1fr}.receipt-list a{grid-column:2;grid-row:auto;margin-top:5px}.related-grid{grid-template-columns:1fr}.related-placeholder{height:200px}}


/* HOMEPAGE ARTICLE COVER IMAGES */
.card-image > img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;}


/* SOCIAL ICONS */
.social-links a svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:1.8}
.social-links a:first-child svg{fill:currentColor;stroke:none}
.social-links .icon-fill{fill:currentColor;stroke:none}
.social-links a:hover{border-color:#d9252e;color:#fff;background:#d9252e}

/* VERTICAL WKE VIDEO CENTER — built for 1080x1920 media */
.video-vertical-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;align-items:start}
.video-card{min-width:0}
.vertical-video-thumb{position:relative;display:block;width:100%;aspect-ratio:9/16;overflow:hidden;background:#111}
.vertical-video-thumb video,.vertical-video-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.vertical-video-thumb .play-button{left:50%;top:50%;transform:translate(-50%,-50%);width:44px;height:44px;font-size:13px}
.video-placeholder-fauci{background:linear-gradient(155deg,#0b1014 0 35%,#5d1b1e 36% 62%,#111 63%)}
.video-placeholder-grid{background:linear-gradient(155deg,#071019,#214765 48%,#6b382a)}
.video-placeholder-city{background:linear-gradient(155deg,#101820,#294d67 55%,#0a1014)}
.video-card h3{margin:8px 0 3px;font-size:13px;line-height:1.18}
.video-card p{margin:0;color:#727b80;font-size:9px;letter-spacing:.04em}
.hot-badge{position:absolute;z-index:3;left:6px;right:6px;top:7px;padding:5px 4px;background:#d9252e;color:#fff;text-align:center;font-family:"Barlow Condensed",Arial,sans-serif;font-size:9px;font-weight:800;letter-spacing:.06em}
@media(max-width:1100px){.video-vertical-grid{gap:9px}}
@media(max-width:650px){.video-vertical-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}.video-card h3{font-size:12px}}

/* Connected WKE edition */
[hidden]{display:none!important}a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible{outline:3px solid #e84b54;outline-offset:4px}.skip-link{position:absolute;top:-80px;left:16px;background:#fff;color:#111;padding:12px;z-index:100}.skip-link:focus{top:10px}.edition-hero{background:radial-gradient(ellipse at right,#29252b,#080c10 65%);border-bottom:4px solid var(--red)}.edition-hero-grid{display:grid;grid-template-columns:1.7fr 1fr;gap:70px;align-items:center;padding-block:65px}.edition-hero h1{font:800 clamp(40px,5.2vw,72px)/.98 'Barlow Condensed',Arial,sans-serif;margin:16px 0 24px;max-width:760px}.edition-hero .dek{font-size:18px;line-height:1.6;max-width:720px}.edition-statement{font:800 clamp(45px,5.6vw,80px)/.95 'Barlow Condensed',Arial,sans-serif;border-left:5px solid var(--red);padding-left:30px;color:#fff}.edition-statement span{color:#a7b0b8}.edition-section{padding-block:44px}.edition-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px}.edition-card .story-copy{padding-top:20px}.edition-card h2{font-size:31px;line-height:1.1}.edition-card .story-copy>p:not(.story-meta){color:#b6bec5;line-height:1.55;margin-top:12px}.edition-card .story-meta{flex-wrap:wrap}.edition-art{min-height:155px;background:linear-gradient(135deg,#161e26,#29343f);border-top:4px solid var(--red);display:flex;justify-content:space-between;align-items:flex-end;padding:25px;gap:15px;color:#fff}.edition-art>span{font:800 49px/.78 'Barlow Condensed',Arial,sans-serif}.edition-rule{display:block;border-top:5px solid #fff;font-size:17px;letter-spacing:.15em;margin-top:12px;padding-top:7px}.edition-art small{max-width:150px;text-align:right;font:700 17px/1.1 'Barlow Condensed',Arial,sans-serif;letter-spacing:.07em}.edition-light{background:#eeefec;color:#13191e}.edition-light .story-copy>p:not(.story-meta){color:#4b555e}.edition-light .section-title{border-color:#b6bec5}.follow-strip{display:flex;align-items:center;justify-content:space-between;gap:30px}.follow-strip h2{font:800 38px/1 'Barlow Condensed',Arial,sans-serif}.archive-search{display:grid;gap:10px;margin-top:26px}.archive-search>div{display:flex;gap:10px}.archive-search input{min-width:0;flex:1}.archive-search input,.archive-search select{background:#fff;border:1px solid #89939c;color:#111;padding:12px;font:inherit}.archive-search label{font-size:13px;font-weight:700}.archive-search select{width:100%}#results-count{color:#53616c;font-size:13px;padding-block:10px}.story-row .edition-art{min-height:165px}.info-page{padding-block:60px 85px;max-width:1000px}.info-page h1{font:800 clamp(42px,7vw,76px)/.95 'Barlow Condensed',Arial,sans-serif;margin:15px 0 30px}.info-page h2{font:800 32px/1.1 'Barlow Condensed',Arial,sans-serif;margin-top:38px}.info-page p{line-height:1.75;max-width:760px}.info-lede{font-size:21px;color:#3b4852}.info-actions{display:flex;gap:28px;align-items:center;flex-wrap:wrap;margin-top:30px}.info-page p a,.site-footer p a{text-decoration:underline;text-underline-offset:4px}.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}.contact-card{background:#121a22;color:white;padding:30px;border-top:4px solid var(--red)}.contact-card strong{display:block;font:800 34px/1.1 'Barlow Condensed',Arial,sans-serif;margin-bottom:15px}.contact-card span{color:#c5cdd4}.story-breadcrumb{font-size:13px;margin:0 0 25px;color:#b91d25}.related-edition{display:block;border-top:3px solid var(--red);padding-top:16px;font-size:12px;font-weight:800;color:#b91d25}.site-footer p{line-height:1.8}.site-footer a:hover{text-decoration:underline}.story-content a{overflow-wrap:anywhere}
@media(max-width:900px){.edition-hero-grid{gap:32px}.edition-grid{gap:18px}.edition-card h2{font-size:26px}}
@media(max-width:650px){.edition-hero-grid{grid-template-columns:1fr;padding-block:38px}.edition-statement{display:none}.edition-grid{grid-template-columns:1fr;gap:32px}.edition-section{padding-block:30px}.edition-art{min-height:145px}.contact-grid{grid-template-columns:1fr}.follow-strip{display:block}.follow-strip .btn{margin-top:16px}.archive-search>div{flex-wrap:wrap}.archive-search input{width:100%;flex-basis:100%}.info-page{padding-block:36px 55px}.info-lede{font-size:18px}.story-row .edition-art{min-height:135px}}
