
.kicker { font-family: var(--sans); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 14px; letter-spacing: .1em; color: var(--red); margin-bottom: 22px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.opener {
  position: relative; height: 100vh; height: 100svh; min-height: 560px;
  overflow: hidden; background: var(--black); display: flex; align-items: center;
}
.opener-media { position: absolute; inset: 0; }
.opener-media img { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.opener-scrim {
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(to top, rgba(0,0,0,.74), rgba(0,0,0,.26) 55%, rgba(0,0,0,.3));
}
.opener-grid {
  position: absolute; inset: 0; z-index: 10; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 50px 50px;
}
.opener-content { position: relative; z-index: 20; padding-top: 40px; }
.crumb { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 12px; color: rgba(255,255,255,.6); }
.crumb a { transition: color .3s; }
.crumb a:hover { color: var(--red); }
.crumb span[aria-hidden] { color: rgba(255,255,255,.28); }
.opener-kicker {
  font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--red);
  letter-spacing: .5em; text-transform: uppercase; margin-bottom: 16px;
}
.opener-title {
  font-size: clamp(42px, 6.9vw, 102px); line-height: .9; font-weight: 900;
  letter-spacing: -.04em; text-transform: uppercase; color: var(--white);
  white-space: nowrap;
}
.opener-title .line { display: block; }
.opener-line {
  margin-top: 26px; max-width: 26em;
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.45; color: rgba(255,255,255,.82);
}
.crumb, .opener-kicker, .opener-title .line, .opener-line { animation: rise 1s cubic-bezier(.16,1,.3,1) both; }
.opener-line { animation-delay: .22s; }
@keyframes rise { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .crumb, .opener-kicker, .opener-title .line, .opener-line { animation: none; }
}

.ew {
  position: relative; overflow: hidden;
  background: var(--zinc-950); color: var(--white);
  padding-block: var(--sect);
}
.ew-head { margin-bottom: 52px; }
.ew-h {
  font-size: clamp(40px, 5vw, 74px); font-weight: 900; text-transform: uppercase;
  line-height: .88; letter-spacing: -.035em;
}
.ew-h .outline { color: transparent; -webkit-text-stroke: 1px var(--white); }

.ew-strips { display: grid; gap: 24px; }
.ew-row { display: flex; width: max-content; will-change: transform; }
.ew-row-a { animation: ew-left 320s linear infinite; }
.ew-row-b { animation: ew-right 380s linear infinite; }
@keyframes ew-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ew-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.ew-track { display: flex; }
.ew-card { position: relative; flex: none; width: 280px; margin-right: 20px; }
.ew-card img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}
.ew-card figcaption {
  display: flex; align-items: baseline; gap: 12px;
  padding: 13px 2px 0;
}
.ew-year { flex: none; font-size: 14px; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--red); }
.ew-name {
  font-size: 15px; font-weight: 700; color: rgba(255, 255, 255, .92);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (prefers-reduced-motion: reduce) {
  .ew-row-a, .ew-row-b { animation: none; }
}

.nr-articles { background: var(--white); padding-block: var(--sect); }
.nr-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 28px; margin-bottom: 44px;
}
.nr-head h2 {
  font-size: clamp(40px, 4.6vw, 68px); font-weight: 900; text-transform: uppercase;
  line-height: .86; letter-spacing: -.035em; color: var(--zinc-950);
}
.nr-head h2 .outline { color: transparent; -webkit-text-stroke: 1px var(--black); }

.nr-filter { flex: none; display: flex; flex-direction: column; align-items: flex-end; }
.nr-search { position: relative; width: 300px; }
.nr-search > svg {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  color: var(--zinc-400); transition: color .3s; pointer-events: none;
}
.nr-search:focus-within > svg { color: var(--red); }
.nr-search input {
  -webkit-appearance: none; appearance: none; border-radius: 0;
  width: 100%; height: 46px; padding: 0 16px 0 44px;
  font-family: var(--sans); font-size: 16px; color: var(--zinc-950);
  background: var(--white); border: 1px solid var(--zinc-300);
  transition: border-color .3s, box-shadow .3s;
}
.nr-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.nr-search input::placeholder { color: var(--zinc-400); }
.nr-search input:hover { border-color: var(--zinc-500); }
.nr-search input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 2px rgba(237, 29, 36, .22); }
.nr-count {
  margin-top: 10px; text-align: right; font-size: 12.5px; font-weight: 600;
  font-variant-numeric: tabular-nums; color: var(--zinc-500);
}

.nr-grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px; grid-auto-flow: dense; gap: 24px;
}
.g-w2 { grid-column: span 2; }
.g-h2 { grid-row: span 2; }
.nr-card a {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column; gap: 11px;
  height: 100%; padding: 24px 24px 22px;
}
.nr-card a::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.nr-card a:hover::after { transform: scaleX(1); }

.nr-meta {
  display: flex; gap: 14px; font-size: 13px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.nr-name {
  display: block; font-size: 18px; font-weight: 800; line-height: 1.26;
  letter-spacing: -.015em;
}
.g-h2 .nr-name { font-size: 20px; }
.g-w2 .nr-name { font-size: 21px; }
.g-w2.g-h2 .nr-name { font-size: clamp(23px, 2.2vw, 30px); max-width: 24ch; }
.nr-ex {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  max-width: 52ch; font-size: 14.5px; line-height: 1.6;
}
.nr-more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
}
.nr-more svg { transition: transform .35s; }
.nr-card a:hover .nr-more svg { transform: translate(3px, -3px); }
.nr-card:not(.g-h2):not(.g-w2) .nr-more { display: none; }

.g-red a { background: var(--red); }
.g-red .nr-name { color: var(--white); }
.g-red .nr-meta time { color: rgba(255, 255, 255, .8); }
.g-red .nr-mins { color: rgba(255, 255, 255, .55); }
.g-red .nr-ex { color: rgba(255, 255, 255, .82); }
.g-red .nr-more { color: var(--white); }
.g-red a::after { background: var(--white); }
.g-red a { transition: background-color .35s; }
.g-red a:hover { background: #c8131a; }

.g-black a { background: var(--zinc-950); }
.g-black .nr-name { color: var(--white); }
.g-black .nr-meta time { color: var(--zinc-400); }
.g-black .nr-mins { color: var(--zinc-400); }
.g-black .nr-ex { color: var(--zinc-400); }
.g-black .nr-more { color: var(--red); }

.g-white a { background: var(--white); border: 1px solid var(--zinc-200); transition: border-color .4s; }
.g-white a::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--zinc-950);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.g-white a:hover { border-color: var(--zinc-950); }
.g-white a:hover::before { transform: scaleY(1); }
.g-white .nr-name { color: var(--zinc-950); transition: color .35s; }
.g-white .nr-meta time { color: var(--zinc-600); transition: color .35s; }
.g-white .nr-mins { color: var(--zinc-500); transition: color .35s; }
.g-white .nr-ex { color: var(--zinc-600); transition: color .35s; }
.g-white .nr-more { color: var(--red); }
.g-white a:hover .nr-name { color: var(--white); }
.g-white a:hover .nr-meta time { color: rgba(255, 255, 255, .78); }
.g-white a:hover .nr-mins { color: rgba(255, 255, 255, .5); }
.g-white a:hover .nr-ex { color: rgba(255, 255, 255, .68); }

.g-img a { background: var(--zinc-950); justify-content: flex-end; }
.g-media { position: absolute; inset: 0; z-index: -1; }
.g-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}
.g-img a:hover .g-media img { transform: scale(1.045); }
.g-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .86), rgba(0, 0, 0, .22) 50%, rgba(0, 0, 0, .55));
}
.g-img .nr-meta { position: absolute; top: 20px; left: 22px; text-shadow: 0 1px 10px rgba(0, 0, 0, .6); }
.g-img .nr-meta time { color: rgba(255, 255, 255, .82); }
.g-img .nr-mins { color: rgba(255, 255, 255, .55); }
.g-img .nr-name { color: var(--white); text-shadow: 0 1px 14px rgba(0, 0, 0, .4); }
.g-img .nr-more { color: var(--white); margin-top: 0; }

.nr-empty { padding: 40px 4px; font-size: 16px; color: var(--zinc-600); }

@media (max-width: 1279px) {
  .nr-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 148px; gap: 20px; }
  .ew-card { width: 260px; margin-right: 18px; }
  .ew-strips { gap: 20px; }
}
@media (max-width: 767px) {
  .opener-kicker { font-size: 13px; }
  .opener-line { margin-top: 20px; }
  .nr-head { align-items: flex-start; }
  .nr-filter, .nr-search { width: 100%; }
  .nr-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .g-w2, .g-h2 { grid-column: auto; grid-row: auto; }
  .nr-card a { min-height: 128px; }
  .g-img a { min-height: 220px; }
  .nr-card:not(.g-h2):not(.g-w2) .nr-more { display: inline-flex; }
  .ew { padding-bottom: 64px; }
  .ew-card { width: 240px; margin-right: 14px; }
}

.ew-row:hover, .ew-row:focus-within { animation-play-state: paused; }
.ew-open {
  display: block; width: 100%; text-align: left; cursor: pointer;
  position: relative;
}
.ew-more {
  position: absolute; right: 10px; top: 10px; z-index: 5;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(6, 6, 8, .72); border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white); opacity: 0; transition: opacity .3s, background-color .3s;
}
.ew-open:hover .ew-more, .ew-open:focus-visible .ew-more { opacity: 1; }
.ew-open:hover .ew-more { background: var(--red); border-color: var(--red); }

.evx {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  background: rgba(6, 6, 8, .8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--white);
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s linear .35s;
  touch-action: none;
}
.evx.is-open {
  opacity: 1; pointer-events: auto;
  visibility: visible; transition: opacity .35s ease;
}
.evx-panel {
  width: min(1180px, 100%); max-height: calc(100svh - 64px);
  display: flex; flex-direction: column;
  background: #08080a; border: 1px solid var(--zinc-800);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .65);
  transform: translateY(16px); transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.evx.is-open .evx-panel { transform: none; }
.evx-head {
  position: relative; flex: none;
  padding: 40px 32px 16px; overflow: hidden;
}
.evx-year {
  position: absolute; right: 16px; top: 12px;
  font-size: clamp(72px, 9vw, 148px); font-weight: 900; line-height: .8;
  letter-spacing: -.04em; color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .22);
  pointer-events: none; user-select: none;
}
.evx-kicker { font-family: var(--sans); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 13px; color: var(--red); }
.evx-name {
  margin-top: 8px; max-width: 16em;
  font-size: clamp(26px, 3.4vw, 48px); font-weight: 900; line-height: .95;
  letter-spacing: -.03em; text-transform: uppercase;
}
.evx-count {
  margin-top: 12px; font-weight: 600; font-variant-numeric: tabular-nums;
  font-size: 13px; color: var(--zinc-400);
}
.evx-close {
  position: absolute; right: 16px; top: 16px; z-index: 5;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(9, 9, 11, .66); backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, .4); color: var(--white);
  transition: background-color .3s, border-color .3s;
}
.evx-close:hover { background: var(--red); border-color: var(--red); }
.evx-railwrap { position: relative; }
.evx-rail {
  flex: 0 1 auto; display: flex; align-items: center; gap: 14px;
  overflow-x: auto; overflow-y: hidden;
  padding: 16px 32px 8px;
  overscroll-behavior: contain; touch-action: pan-x;
}
.evx-rail::-webkit-scrollbar { height: 0; }
.evx-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(9, 9, 11, .66); backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, .4); color: var(--white);
  transition: background-color .3s, border-color .3s, opacity .3s;
}
.evx-prev { left: 14px; }
.evx-next { right: 14px; }
.evx-nav:hover { background: var(--red); border-color: var(--red); }
.evx-nav.is-off { opacity: .25; pointer-events: none; }
.evx-shot {
  flex: none; height: min(44vh, 400px);
  border: 1px solid var(--zinc-800); background: var(--zinc-900);
}
.evx-shot img { height: 100%; width: auto; display: block; }
.evx.is-open .evx-shot { clip-path: inset(0 100% 0 0); animation: evx-develop 1s cubic-bezier(.16, 1, .3, 1) forwards; }
@keyframes evx-develop { to { clip-path: inset(0); } }
.evx-foot { flex: none; padding: 14px 32px 24px; }
.evx-line { position: relative; height: 2px; background: rgba(255, 255, 255, .14); }
.evx-line span {
  position: absolute; inset: 0; background: var(--red);
  transform-origin: left; transform: scaleX(0); transition: transform .2s linear;
}
body.evx-lock { overflow: hidden; }

@media (max-width: 767px) {
  .ew-more { opacity: 1; }
  .evx { padding: 14px; }
  .evx-panel { max-height: calc(100svh - 28px); }
  .evx-head { padding: 32px 18px 12px; }
  .evx-year { font-size: clamp(56px, 18vw, 96px); }
  .evx-close { right: 10px; top: 10px; }
  .evx-rail { padding: 12px 18px 6px; }
  .evx-nav { width: 40px; height: 40px; }
  .evx-prev { left: 8px; }
  .evx-next { right: 8px; }
  .evx-shot { height: min(40vh, 300px); }
  .evx-foot { padding: 12px 18px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .evx, .evx.is-open { transition: visibility 0s; }
  .evx-panel, .evx.is-open .evx-panel { transform: none; transition: none; }
  .evx.is-open .evx-shot { clip-path: inset(0); animation: none; }
  .ew-row:hover, .ew-row:focus-within { animation-play-state: paused; }
}
