:root {
  --ink: #151515;
  --paper: #f1efe8;
  --white: #fff;
  --red: #f04432;
  --line: #1b1b1b33;
  --serif: "PT Serif", serif;
  --sans: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.42;
}
.onevl-badge {
  position: fixed;
  z-index: 99;
  right: 18px;
  bottom: 18px;
  background: #111;
  color: #fff;
  border-radius: 100px;
  padding: 11px 14px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 15px 40px #0006;
}
.onevl-badge span {
  color: var(--red);
}
button,
a {
  font: inherit;
  color: inherit;
}
header {
  height: 82px;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 40;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo svg {
  width: 37px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
}
.logo svg circle {
  fill: var(--red);
  stroke: none;
}
.logo span {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.logo small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.19em;
  font-weight: 700;
}
.menu {
  position: relative;
  z-index: 2;
  display: grid;
  place-content: center;
  border: 0;
  background: none;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  padding: 0;
  cursor: pointer;
}
.menu i {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  margin: 3px;
  transition:
    transform 0.3s ease,
    width 0.3s ease;
}
.menu[aria-expanded="true"] i:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu[aria-expanded="true"] i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
header nav {
  display: flex;
  gap: 28px;
  margin: auto;
}
header nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.head-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}
.weather {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.weather svg {
  width: 36px;
  height: 28px;
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.weather-sun {
  stroke: var(--red);
  stroke-width: 1.8;
}
.weather-cloud {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1.7;
}
.weather-copy {
  line-height: 1;
}
.weather-copy small {
  display: block;
  margin-top: 3px;
  font-size: 8px;
  font-weight: 500;
}
.search-open {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  font-size: 26px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.search-open:hover,
.search-open:focus-visible {
  background: var(--ink);
  color: #fff;
}
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  pointer-events: none;
}
.nav-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.nav-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 12, 12, 0.58);
  opacity: 0;
  backdrop-filter: blur(7px);
  transition: opacity 0.35s ease;
}
.nav-drawer.is-open .nav-backdrop {
  opacity: 1;
}
.nav-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(610px, 92vw);
  height: 100%;
  padding: 34px 42px 28px;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  transform: translateX(-102%);
  transition: transform 0.45s cubic-bezier(0.2, 0.78, 0.2, 1);
}
.nav-drawer.is-open .nav-panel {
  transform: translateX(0);
}
.nav-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 2px solid;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.nav-panel-head button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.nav-panel h2 {
  max-width: 500px;
  margin: 38px 0 30px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  line-height: 0.98;
}
.nav-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.nav-primary a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 5px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}
.nav-primary a:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.nav-primary a:nth-child(even) {
  padding-left: 18px;
}
.nav-primary a:hover,
.nav-primary a:focus-visible {
  padding-left: 12px;
  color: var(--red);
}
.nav-primary a:nth-child(even):hover,
.nav-primary a:nth-child(even):focus-visible {
  padding-left: 25px;
}
.nav-primary span {
  color: var(--red);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 900;
}
.nav-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  margin-top: 28px;
  padding: 22px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.nav-feature span,
.nav-feature small {
  grid-column: 1;
}
.nav-feature span {
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.nav-feature b {
  font-family: var(--serif);
  font-size: 28px;
}
.nav-feature small {
  color: #aeb6bc;
}
.nav-feature i {
  grid-column: 2;
  grid-row: 1/4;
  align-self: center;
  font-size: 24px;
  font-style: normal;
}
.nav-panel-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: auto;
  padding-top: 25px;
  font-size: 10px;
}
.nav-panel-foot a {
  font-weight: 800;
}
.nav-panel-foot span {
  width: 100%;
  color: #747474;
}
body.menu-open {
  overflow: hidden;
}
.ticker {
  height: 36px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.ticker b {
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--red);
  padding: 0 3vw;
}
.ticker div {
  white-space: nowrap;
  padding: 0 28px;
  border-right: 1px solid #ffffff2a;
}
.ticker span {
  color: #ff7868;
  margin-right: 8px;
}
.masthead {
  display: grid;
  grid-template-columns: 180px 1fr 250px;
  align-items: end;
  padding: 38px 3vw 25px;
  border-bottom: 1px solid var(--line);
}
.masthead h1 {
  font-size: clamp(80px, 14.5vw, 220px);
  line-height: 0.7;
  letter-spacing: -0.095em;
  margin: 0;
  text-align: center;
}
.masthead p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}
.date {
  font-size: 9px;
  text-transform: uppercase;
}
.date > * {
  display: block;
}
.date b {
  font-size: 18px;
}
.date small {
  color: #777;
}
.lead-grid {
  padding: 28px 3vw 90px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
}
.lead-story > a {
  display: block;
  position: relative;
  height: 560px;
  overflow: hidden;
}
.lead-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.lead-story:hover img {
  transform: scale(1.025);
}
.image-label {
  position: absolute;
  inset: auto 18px 18px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}
.lead-copy {
  display: grid;
  grid-template-columns: 110px 1fr 290px;
  gap: 28px;
  margin-top: 28px;
}
.rubric {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--red);
}
.lead-copy h2,
.story-card h2,
.longread h2,
.brief-title h2,
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(35px, 4.2vw, 64px);
  line-height: 1.02;
  margin: 0;
}
.lead-copy > p {
  color: #5a5a5a;
}
.author {
  grid-column: 2/4;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.author i {
  width: 36px;
  height: 36px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-style: normal;
  margin-right: 10px;
}
.author span {
  font-size: 10px;
  font-weight: 700;
}
.author small {
  font-weight: 400;
  color: #777;
}
.author time {
  margin-left: auto;
  font-size: 11px;
}
.side-news {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.side-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 3px solid;
  padding-bottom: 12px;
}
.side-head b {
  text-transform: uppercase;
  font-size: 12px;
}
.side-head span {
  font-family: var(--serif);
  font-style: italic;
}
.side-news article {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
}
.side-news time {
  font-size: 9px;
}
.side-news h3 {
  grid-column: 2;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.12;
  margin: 12px 0;
}
.side-news a {
  grid-column: 2;
  font-size: 10px;
}
.topic-bar {
  margin: 0 3vw;
  border-top: 3px solid;
  border-bottom: 1px solid var(--line);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.topic-bar > span {
  font-size: 10px;
  font-weight: 900;
}
.topic-bar > div {
  display: flex;
  gap: 5px;
}
.topic-bar button {
  border: 1px solid var(--line);
  border-radius: 100px;
  background: none;
  padding: 8px 13px;
  font-size: 10px;
}
.topic-bar button.active {
  background: var(--ink);
  color: #fff;
}
.view-toggle {
  margin-left: auto;
}
.news-grid {
  padding: 28px 3vw 100px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 18px;
}
.story-card {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  min-height: 520px;
}
.story-card[hidden] {
  display: none !important;
}
.story-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}
.story-card.wide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-card.wide > div {
  padding: 25px;
  background: #fff;
}
.story-card h2 {
  font-size: 36px;
  margin: 15px 0;
}
.story-card p {
  color: #555;
}
.story-card footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 9px;
}
.story-card.red {
  background: var(--red);
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.story-card.red .rubric {
  color: #fff;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 100px;
  line-height: 0.8;
}
.story-card.data {
  padding: 25px;
  background: #121212;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.bars {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin: 25px 0;
}
.bars i {
  height: var(--h);
  flex: 1;
  background: var(--red);
  position: relative;
}
.bars b {
  position: absolute;
  bottom: -22px;
  font-size: 8px;
}
.story-card.photo {
  padding: 0 0 18px;
}
.photo-block {
  height: 300px;
  overflow: hidden;
  margin-bottom: 16px;
}
.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.longread {
  margin: 0 3vw 100px;
  scroll-margin-top: 100px;
  background: #1a2633;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 670px;
}
.longread-art {
  position: relative;
  overflow: hidden;
  padding: 45px;
  font-size: 50px;
  font-weight: 900;
  line-height: 0.82;
  background: #0f1821;
}
.longread-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(7, 17, 27, 0.78) 0%,
    rgba(7, 17, 27, 0.21) 46%,
    rgba(7, 17, 27, 0.03) 70%
  );
  pointer-events: none;
}
.longread-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}
.longread:hover .longread-art img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.03);
}
.longread-art span {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-shadow: 0 3px 22px #0009;
}
.longread > div:last-child {
  padding: 70px;
}
.longread h2 {
  font-size: 54px;
  margin: 30px 0;
}
.longread > div > p {
  color: #c2c9cf;
}
.longread-meta {
  display: flex;
  gap: 10px;
  margin: 30px 0;
}
.longread-meta span {
  border: 1px solid #ffffff44;
  border-radius: 100px;
  padding: 8px 12px;
  font-size: 10px;
}
.longread a {
  color: #fff;
  text-underline-offset: 8px;
}
.briefs {
  padding: 70px 3vw 120px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  border-top: 1px solid var(--line);
}
.brief-title h2 {
  font-size: 48px;
  margin-top: 18px;
}
.briefs ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.briefs li {
  display: grid;
  grid-template-columns: 70px 1fr 120px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.briefs time,
.briefs li span {
  font-size: 9px;
}
.briefs p {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
}
.newsletter {
  padding: 80px 3vw;
  background: #d9d3c4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.newsletter form {
  align-self: end;
}
.newsletter label {
  font-size: 9px;
}
.newsletter input {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid;
  font-size: 25px;
  padding: 12px 0;
  outline: 0;
}
.newsletter button {
  margin-top: 18px;
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 14px 18px;
}
.newsletter small,
.newsletter form p {
  display: block;
  margin-top: 12px;
  font-size: 9px;
}
.demo-disclaimer {
  padding: 30px 3vw;
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.demo-disclaimer p {
  margin: 0;
  max-width: 700px;
  font-size: 11px;
  color: #666;
}
body > footer {
  padding: 60px 3vw;
  background: #111;
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 5vw;
  font-size: 11px;
}
body > footer > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
body > footer a {
  text-decoration: none;
}
body > footer p {
  color: #aaa;
}
.search {
  width: min(1120px, 94vw);
  max-height: min(820px, calc(100dvh - 40px));
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  overflow: auto;
}
.search::backdrop {
  background: rgba(17, 17, 17, 0.86);
  backdrop-filter: blur(8px);
}
.search-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 35px 18px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(12px);
}
.search-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.search > h2 {
  margin: 42px 35px 30px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}
.search-form {
  margin: 0 35px;
}
.search-form > div {
  display: flex;
  border-bottom: 2px solid;
}
.search-form input {
  flex: 1;
  font-family: var(--serif);
  font-size: 30px;
  background: transparent;
  border: 0;
  padding: 14px 0;
  outline: 0;
}
.search-form button {
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0 30px;
  font-weight: 800;
  cursor: pointer;
}
.search-summary {
  margin: 22px 35px 10px;
  color: #676767;
  font-size: 11px;
}
.search-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 35px 40px;
}
.search-results a {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 128px;
  padding: 20px 45px 20px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition:
    background 0.2s ease,
    padding-left 0.2s ease;
}
.search-results a:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.search-results a:nth-child(even) {
  padding-left: 24px;
}
.search-results a:hover,
.search-results a:focus-visible {
  padding-left: 14px;
  background: #fff;
}
.search-results a:nth-child(even):hover,
.search-results a:nth-child(even):focus-visible {
  padding-left: 38px;
}
.search-results a > span {
  grid-column: 1/3;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #6e6e6e;
  font-size: 8px;
  text-transform: uppercase;
}
.search-results a b {
  color: var(--red);
  letter-spacing: 0.12em;
}
.search-results strong {
  max-width: 390px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.13;
}
.search-results i {
  align-self: end;
  color: var(--red);
  font-size: 18px;
  font-style: normal;
}
.search-results.is-refreshed {
  animation: searchResultsPulse 0.35s ease;
}
@keyframes searchResultsPulse {
  50% {
    opacity: 0.35;
    transform: translateY(4px);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lead-story,
.side-news article,
.story-card,
.briefs li {
  scroll-margin-top: 100px;
}
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .masthead {
    grid-template-columns: 120px 1fr;
  }
  .masthead p {
    display: none;
  }
  .lead-grid {
    grid-template-columns: 1fr;
  }
  .side-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border-left: 0;
  }
  .side-head {
    grid-column: 1/-1;
  }
  .lead-copy {
    grid-template-columns: 100px 1fr;
  }
  .lead-copy > p {
    grid-column: 2;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-card.wide {
    grid-column: 1/-1;
  }
  .longread h2 {
    font-size: 42px;
  }
  body > footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .nav-panel {
    width: 100%;
    padding: 24px 20px;
  }
  .nav-panel h2 {
    margin: 28px 0 24px;
    font-size: 38px;
  }
  .nav-primary {
    grid-template-columns: 1fr;
  }
  .nav-primary a:nth-child(odd) {
    border-right: 0;
  }
  .nav-primary a:nth-child(even) {
    padding-left: 5px;
  }
  .nav-primary a:nth-child(even):hover,
  .nav-primary a:nth-child(even):focus-visible {
    padding-left: 12px;
  }
  .nav-feature {
    margin-top: 20px;
  }
  header {
    height: 70px;
  }
  .weather {
    display: none;
  }
  .ticker div:nth-of-type(n + 2) {
    display: none;
  }
  .masthead {
    display: block;
    padding-top: 35px;
  }
  .masthead h1 {
    text-align: left;
    font-size: 75px;
    margin: 35px 0 10px;
  }
  .lead-grid {
    padding: 18px 4vw 60px;
  }
  .lead-story > a {
    height: 340px;
  }
  .lead-copy {
    grid-template-columns: 1fr;
  }
  .lead-copy > * {
    grid-column: 1 !important;
  }
  .side-news {
    grid-template-columns: 1fr;
  }
  .topic-bar {
    overflow: auto;
  }
  .topic-bar > span,
  .view-toggle {
    display: none;
  }
  .topic-bar > div {
    min-width: max-content;
  }
  .news-grid {
    grid-template-columns: 1fr;
    padding: 20px 4vw 70px;
  }
  .story-card.wide {
    display: block;
  }
  .story-card.wide > img {
    height: 300px;
  }
  .longread {
    margin: 0 4vw 70px;
    grid-template-columns: 1fr;
  }
  .longread-art {
    height: 430px;
  }
  .longread > div:last-child {
    padding: 35px 25px;
  }
  .longread h2 {
    font-size: 38px;
  }
  .briefs {
    grid-template-columns: 1fr;
    padding: 60px 4vw;
  }
  .briefs li {
    grid-template-columns: 55px 1fr;
  }
  .briefs li span {
    display: none;
  }
  .newsletter {
    grid-template-columns: 1fr;
    padding: 60px 4vw;
  }
  .demo-disclaimer {
    flex-direction: column;
  }
  body > footer {
    grid-template-columns: 1fr;
  }
  .search {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
  }
  .search-head {
    padding: 16px 18px 13px;
  }
  .search > h2 {
    margin: 28px 18px 22px;
    font-size: 38px;
  }
  .search-form {
    margin: 0 18px;
  }
  .search-form input {
    min-width: 0;
    font-size: 21px;
  }
  .search-form button {
    padding: 0 18px;
  }
  .search-summary {
    margin: 18px 18px 8px;
  }
  .search-results {
    grid-template-columns: 1fr;
    padding: 0 18px 30px;
  }
  .search-results a {
    min-height: 110px;
  }
  .search-results a:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }
  .search-results a:nth-child(even) {
    padding-left: 0;
  }
  .search-results a:nth-child(even):hover,
  .search-results a:nth-child(even):focus-visible {
    padding-left: 14px;
  }
}

.lead-story > a,
.side-news article a,
.story-card,
.longread a,
.briefs li {
  cursor: pointer;
}
.story-card,
.briefs li {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.11);
  outline: none;
}
.briefs li:hover,
.briefs li:focus-visible {
  transform: translateX(8px);
  outline: none;
}
.news-grid.list-view {
  grid-template-columns: 1fr;
}
.news-grid.list-view .story-card {
  grid-column: auto;
  min-height: 250px;
}
.news-grid.list-view .story-card.wide {
  grid-template-columns: 0.55fr 1.45fr;
}
.news-grid.list-view .story-card:not(.wide) {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}
.news-grid.list-view .story-card:not(.wide) h2 {
  grid-column: 2;
}
.news-grid.list-view .story-card:not(.wide) p,
.news-grid.list-view .story-card:not(.wide) .bars,
.news-grid.list-view .story-card:not(.wide) .quote-mark,
.news-grid.list-view .story-card:not(.wide) .photo-block {
  display: none;
}
.news-grid.list-view .story-card:not(.wide) footer {
  grid-column: 3;
  flex-direction: column;
  gap: 7px;
  min-width: 110px;
}
.article-reader {
  width: min(1060px, 94vw);
  max-height: 94vh;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.56);
}
.article-reader::backdrop {
  background: rgba(11, 11, 11, 0.84);
  backdrop-filter: blur(6px);
}
.article-reader-close {
  position: sticky;
  z-index: 3;
  top: 18px;
  float: right;
  width: 46px;
  height: 46px;
  margin: 18px 18px 0 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}
.article-reader article {
  clear: both;
}
.article-reader-head {
  padding: 34px clamp(24px, 6vw, 82px) 46px;
  border-bottom: 1px solid var(--line);
}
.article-reader-head > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-reader-head time {
  color: #777;
  font-size: 11px;
}
.article-reader h2 {
  max-width: 850px;
  margin: 34px 0 24px;
  font: 700 clamp(46px, 7vw, 88px) / 0.94 var(--serif);
  letter-spacing: -0.045em;
}
.article-reader-head > p {
  max-width: 720px;
  color: #4d4d4d;
  font-size: 18px;
}
.article-reader-meta {
  display: flex;
  gap: 26px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.article-reader > article > img {
  display: block;
  width: calc(100% - clamp(48px, 12vw, 164px));
  max-height: 520px;
  margin: 46px auto 0;
  object-fit: cover;
}
.article-reader > article > img[hidden] {
  display: none;
}
.article-reader-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px clamp(24px, 6vw, 72px) 65px;
  font: 400 20px/1.7 var(--serif);
}
.article-reader-body p {
  margin: 0 0 1.5em;
}
.article-reader-body .article-reader-intro::first-letter {
  float: left;
  margin: 6px 10px 0 0;
  color: var(--red);
  font-size: 78px;
  line-height: 0.75;
}
.article-reader-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px clamp(24px, 6vw, 82px);
  color: #fff;
  background: var(--ink);
  font-size: 10px;
}
.article-reader-footer button {
  padding: 12px 16px;
  color: #fff;
  background: transparent;
  border: 1px solid #ffffff66;
  cursor: pointer;
}
@media (max-width: 700px) {
  .news-grid.list-view .story-card.wide,
  .news-grid.list-view .story-card:not(.wide) {
    display: block;
  }
  .news-grid.list-view .story-card:not(.wide) footer {
    min-width: 0;
  }
  .article-reader {
    width: 100vw;
    height: 100dvh;
    max-width: none;
    max-height: 100dvh;
  }
  .article-reader h2 {
    font-size: 44px;
  }
  .article-reader-head > p {
    font-size: 16px;
  }
  .article-reader-body {
    font-size: 18px;
  }
  .article-reader-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
