:root {
  --green: #20ec71;
  --red: #fc5850;
  --paper: #ffffff;
  --ink: #050505;
  --muted: #bdbdbd;
  --muted-dark: #929292;
  --page: rgb(242, 242, 242);
  --shell: 1140px;
  --gap: 15px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

body.modal-open,
body.drawer-open,
body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.article-editor-title {
  font-weight: 900 !important;
}

[data-url]:not([data-url="#"]) {
  cursor: pointer;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  stroke-width: 1.7 !important;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  height: 93px;
  background: var(--paper);
}

.topbar__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(200px, 22vw, 220px);
  line-height: 1;
}

.section-title span {
  color: var(--green);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.topbar__actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 2px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.site-nav__link.is-active {
  color: var(--green);
  font-weight: 700;
}

.topbar-search {
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: var(--page);
  border-radius: 999px;
  box-shadow: rgb(226, 226, 226) 0 0 0 0 inset;
  transition:
    width 0.24s ease,
    background 0.18s ease;
}

.topbar-search.is-open {
  width: min(280px, 48vw);
}

.topbar-search__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 46px 0 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 999px;
  outline: 0;
  opacity: 0;
  pointer-events: none;
  font-size: 15px;
  font-weight: 300;
  font-family: inherit;
  transition: opacity 0.18s ease 0.06s;
}

.topbar-search.is-open .topbar-search__input {
  opacity: 1;
  pointer-events: auto;
}

.topbar-search__button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: transparent;
  box-shadow: none;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.icon-button--light {
  color: #070707;
  background: var(--paper);
  box-shadow: inset 0 0 0 2px #e2e2e2;
}

.icon-button--green {
  color: #070707;
  background: var(--green);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
}

.topbar-search .topbar-search__button {
  background: var(--page);
  box-shadow: none;
}

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  pointer-events: none;
}

.menu-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.menu-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 34%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.menu-drawer.is-open .menu-drawer__backdrop {
  opacity: 1;
}

.menu-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: min(360px, calc(100vw - 16px));
  height: 100%;
  padding: 34px 28px;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: 12px 0 40px rgb(0 0 0 / 10%);
  transform: translateX(-100%);
  transition: transform 0.26s ease;
}

.menu-drawer.is-open .menu-drawer__panel {
  transform: translateX(0);
}

.menu-drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.menu-drawer__nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 100%;
  padding: 52px 0;
}

.menu-drawer__nav a {
  display: flex;
  align-items: center;
  min-height: 40px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.05;
}

.menu-drawer__nav a.is-active {
  color: var(--green);
  font-weight: 900;
}

.account-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  pointer-events: none;
}

.account-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.account-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 34%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.account-drawer.is-open .account-drawer__backdrop {
  opacity: 1;
}

.account-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(360px, calc(100vw - 16px));
  height: 100%;
  padding: 34px 28px;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: -12px 0 40px rgb(0 0 0 / 10%);
  transform: translateX(100%);
  transition: transform 0.26s ease;
}

.account-drawer.is-open .account-drawer__panel {
  transform: translateX(0);
}

.account-drawer__content {
  width: 100%;
  margin-block: auto;
  padding-block: 0;
}

.account-drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.account-drawer__header {
  padding: 4px 38px 18px 0;
}

.account-drawer__header--small {
  padding-top: 0;
}

.account-drawer__eyebrow {
  margin: 0 0 5px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.account-drawer__header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.account-drawer__header h2 span {
  color: var(--green);
}

.account-drawer__header p:last-child {
  margin: 10px 0 0;
  color: #7b7b7b;
  font-size: 14px;
}

.account-form {
  display: grid;
  gap: 8px;
}

.account-form + .account-form {
  margin-top: var(--gap);
}

.account-form label {
  font-size: 13px;
  font-weight: 400;
}

.account-form input {
  width: 100%;
  height: 42px;
  padding: 0 13px;
  color: var(--ink);
  background: #f2f2f2;
  border: 0;
  border-radius: 8px;
  outline: 0;
  font: inherit;
  font-size: 15px;
  font-weight: 300;
}

.account-form input:focus {
  box-shadow: inset 0 0 0 2px var(--green);
}

.account-form__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.account-form__split > div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.account-form__submit {
  height: 44px;
  margin-top: 4px;
  color: var(--ink);
  background: var(--green);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
}

.account-form__submit--dark {
  color: #fff;
  background: var(--ink);
}

.account-login-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
  align-items: stretch;
  margin-top: 4px;
}

.account-login-actions .account-form__submit {
  width: 100%;
  margin-top: 0;
}

.account-google-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1.5px solid #dadce0;
  border-radius: 8px;
}

.account-google-button svg {
  width: 20px;
  height: 20px;
}

.account-form__error {
  margin: 0 0 4px;
  padding: 9px 11px;
  color: var(--red);
  background: rgb(252 88 80 / 14%);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}

.account-drawer__forgot {
  display: inline-block;
  margin-top: 10px;
  color: #6f6f6f;
  font-size: 12px;
  font-weight: 400;
}

.account-drawer__separator {
  height: 1px;
  margin: 20px 0 20px;
  background: #e5e5e5;
}

.account-menu {
  display: grid;
  gap: 0;
  margin-top: var(--gap);
}

.account-menu a {
  padding: 14px 0;
  border-top: 1px solid #e8e8e8;
  font-size: 16px;
  font-weight: 600;
}

.account-menu__logout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 400 !important;
  text-transform: initial;
}

.account-menu__logout svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}

.page {
  min-height: calc(100vh - 93px);
  padding: var(--gap) 0 15px;
  background: var(--page);
}

.rail {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.hero,
.topics,
.reports {
  position: relative;
}

.hero__layout {
  display: flex;
  gap: var(--gap);
  min-width: 0;
}

.hero__media {
  flex: 1 1 auto;
  gap: var(--gap);
  min-width: 0;
}

.lead-card,
.video-card,
.report-card {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--muted);
  border-radius: 13px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.lead-card {
  width: 512px;
  height: 390px;
}

.video-card {
  width: 312px;
  aspect-ratio: 4 / 5;
}

.hero__media .video-card,
.hero__media .video-card:last-child {
  width: calc((100% - var(--gap)) / 2);
}

.timestamp {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.timestamp--lead {
  top: 18px;
  left: 20px;
}

.timestamp--center {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero__media .timestamp--center {
  top: 10px;
}

.placeholder {
  position: absolute;
  color: var(--muted-dark);
}

.placeholder--large {
  top: 100px;
  left: 50%;
  width: 78px;
  height: 78px;
  transform: translateX(-50%);
}

.placeholder--corner {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
}

.placeholder--small {
  top: 74px;
  left: 50%;
  width: 43px;
  height: 43px;
  transform: translateX(-50%);
}

.media-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-card img.media-fill,
.news-card img.media-fill,
.list-item img.media-fill,
.article-side-item img {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  transition: transform 180ms ease;
  backface-visibility: hidden;
  will-change: transform;
}

.lead-card:hover img.media-fill,
.news-card:hover img.media-fill,
.list-item:hover img.media-fill,
.article-side-item:hover img {
  transform: translate3d(0, 0, 0) scale(1.1);
}

.media-video-preview {
  display: block;
  background: #000;
  pointer-events: none;
}

.video-card .media-video,
.report-card .media-video {
  opacity: 0;
}

.video-card.has-video .media-video,
.report-card.has-video .media-video {
  opacity: 1;
}

.lead-card__caption {
  position: absolute;
  inset: auto 0 0;
  height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px 22px;
  color: #fff;
  background: linear-gradient(to top, rgb(0 0 0 / 100%) 0%, rgb(0 0 0 / 0%) 100%);
}

.category {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.05;
}

.article-lock-badge {
  display: inline-flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #020202;
  background: var(--green);
  border-radius: 999px;
  line-height: 1;
  vertical-align: -3px;
}

.article-lock-badge svg {
  width: 12px;
  height: 12px;
  stroke-width: 3 !important;
}

.lead-card .category {
  width: max-content;
  padding: 2px 4px;
  color: #020202;
  background: var(--green);
  border-radius: 5px;
  font-size: 14px;
}

.list-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.28;
}

.news-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lead-card h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.28;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  color: #060606;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.play-button svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.video-card.is-playing .play-button,
.report-card.is-playing .play-button {
  opacity: 0;
  pointer-events: none;
}

.video-card.is-playing:hover .play-button,
.report-card.is-playing:hover .play-button {
  opacity: 0;
}

.media-controls {
  position: absolute;
  left: 50%;
  bottom: 13px;
  z-index: 4;
  display: flex;
  gap: var(--gap);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 160ms ease;
}

.is-playing.has-controls .media-controls {
  opacity: 1;
  pointer-events: auto;
}

.video-card.is-buffering::after,
.report-card.is-buffering::after,
.video-modal.is-buffering .video-modal__frame::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 7;
  width: 26px;
  height: 26px;
  border: 3px solid rgb(255 255 255 / 45%);
  border-top-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: video-loader-spin 0.8s linear infinite;
  pointer-events: none;
}

@keyframes video-loader-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.media-control,
.video-modal__button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #050505;
  background: rgb(255 255 255 / 92%);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgb(0 0 0 / 12%);
}

.media-control svg,
.video-modal__button svg {
  width: 18px;
  height: 18px;
}

.floating-next,
.floating-prev {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  color: #050505;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgb(0 0 0 / 7%);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.floating-next:hover {
  transform: translateX(2px);
}

.floating-next:active {
  transform: translateX(4px) scale(0.96);
}

.floating-prev {
  opacity: 0;
  pointer-events: none;
}

.floating-prev.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-next.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.floating-prev:hover {
  transform: translateX(-2px);
}

.floating-prev:active {
  transform: translateX(-4px) scale(0.96);
}

.floating-next svg,
.floating-prev svg {
  width: 24px;
  height: 24px;
}

.floating-next--hero {
  top: 177px;
  right: -17px;
}

.floating-prev--hero {
  top: 177px;
  left: calc(512px + var(--gap) - 16px);
}

.flash {
  margin-top: var(--gap);
}

.flash--post {
  margin-top: 0;
  margin-bottom: var(--gap);
}

.flash__bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 13px 6px 7px;
  color: #fff;
  background: var(--red);
  border-radius: 12px;
}

.flash__bar.is-static {
  cursor: default;
  pointer-events: none;
}

.flash__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 31px;
  padding-inline: 14px;
  color: var(--red);
  background: #fff;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.flash strong {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flash__time {
  font-size: 12px;
  white-space: nowrap;
}

.topics {
  isolation: isolate;
  margin-top: var(--gap);
}

.topics::before,
.topics::after {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 58px;
  height: 31px;
  content: "";
  pointer-events: none;
  transition: opacity 160ms ease;
}

.topics::before {
  left: 0;
  opacity: 0;
  background: linear-gradient(90deg, var(--page), rgb(242 242 242 / 0%));
}

.topics::after {
  right: 0;
  background: linear-gradient(90deg, rgb(242 242 242 / 0%), var(--page));
}

.topics:has(.floating-prev--topics.is-visible)::before {
  opacity: 1;
}

.topics:has(.floating-next--topics.is-hidden)::after {
  opacity: 0;
}

.topics__rail {
  gap: 8px;
  padding-right: 34px;
}

.topic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 72px;
  height: 31px;
  padding: 0 14px;
  color: #070707;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.topic--live {
  min-width: 80px;
  gap: var(--gap);
  padding-inline: 10px 13px;
  background: var(--green);
}

.topic--live span,
.badge--live span {
  width: 9px;
  height: 9px;
  background: #0a0a0a;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgb(0 0 0 / 13%);
}

.page--listing {
  padding-top: var(--gap);
}

.listing-page {
  display: grid;
  gap: var(--gap);
}

.topics--listing {
  margin-top: 0;
}

.topics--listing::before,
.topics--listing::after {
  display: none;
}

.topics__rail--static {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.topic.is-active {
  color: #020202;
  background: var(--green);
}

.listing-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: var(--gap);
  align-items: start;
}

.listing-page__layout--live {
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
}

.listing-page__main,
.listing-page__side {
  min-width: 0;
}

.listing-page__main,
.listing-page__side {
  display: grid;
  gap: var(--gap);
}

.listing-page__main > .section-title,
.listing-page__side .section-title {
  margin-bottom: 0;
}

.listing-minute {
  display: grid;
  gap: var(--gap);
}

.page--listing .section-title {
  font-size: 28px;
}

.listing-minute .minute__panel {
  max-height: none;
  overflow-y: visible;
}

.listing-minute--main .minute-item {
  --minute-dot-center: 50%;
  position: relative;
  display: grid;
  grid-template-columns: var(--minute-time-width) var(--minute-dot-width) minmax(0, 1fr);
  column-gap: var(--minute-gap);
  align-items: center;
  min-height: 55px;
}

.listing-page__must-read {
  display: grid;
  gap: var(--gap);
}

.listing-page__must-read .section-title {
  margin-bottom: 0;
}

.listing-see-also {
  display: grid;
  gap: var(--gap);
}

.article-side-item__placeholder {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 16 / 10;
  color: var(--muted-dark);
  background: var(--muted);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.article-side-item__placeholder svg {
  width: 26px;
  height: 26px;
}

.listing-videos {
  display: grid;
  gap: var(--gap);
}

.listing-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  padding: var(--gap);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.listing-videos .report-card {
  width: 100%;
  border-radius: 12px;
}

.listing-scoops,
.listing-subjects {
  position: relative;
  display: grid;
  gap: var(--gap);
  min-width: 0;
}

.listing-scoops__card {
  position: relative;
  overflow: hidden;
  padding: var(--gap);
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
  max-width: 100%;
}

.listing-scoops__rail {
  display: flex;
  gap: var(--gap);
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.listing-scoops__rail::-webkit-scrollbar {
  display: none;
}

.listing-scoop-card {
  flex: 0 0 calc((100% - var(--gap)) / 1.5);
  width: calc((100% - var(--gap)) / 1.5);
  min-width: 0;
  height: auto;
  scroll-snap-align: start;
  border-radius: 12px;
}

.listing-scoop-card.video-card {
  aspect-ratio: 4 / 5;
}

.listing-scoop-card .media-fill {
  object-fit: cover;
}

.hero__media .video-card .media-fill,
.listing-scoop-card .media-fill {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  transition: transform 180ms ease;
  backface-visibility: hidden;
  will-change: transform;
}

.hero__media .video-card:hover .media-fill,
.listing-scoop-card:hover .media-fill {
  transform: translate3d(0, 0, 0) scale(1.2);
}

.listing-scoop-card .timestamp--center {
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-live .listing-scoop-card {
  flex-basis: calc((100% - var(--gap)) / 2);
  width: calc((100% - var(--gap)) / 2);
}

.floating-next--scoops {
  top: calc(50% + 22px);
  right: -17px;
  transform: translateY(-50%);
}

.floating-prev--scoops {
  top: calc(50% + 22px);
  left: -17px;
  transform: translateY(-50%);
}

.floating-next--scoops:hover {
  transform: translateY(-50%) translateX(2px);
}

.floating-prev--scoops:hover {
  transform: translateY(-50%) translateX(-2px);
}

.floating-next--scoops:active {
  transform: translateY(-50%) translateX(4px) scale(0.96);
}

.floating-prev--scoops:active {
  transform: translateY(-50%) translateX(-4px) scale(0.96);
}

.listing-subjects__grid,
.listing-subjects__grid.theme-page__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.listing-subjects__grid .theme-card {
  min-width: 0;
  min-height: 90px;
  padding: 14px;
  border-radius: 10px;
}

.listing-subjects__grid .theme-card span {
  font-size: clamp(17px, 2vw, 22px);
}

.listing-subjects__grid .theme-card svg {
  width: 22px;
  height: 22px;
}

.video-page {
  display: grid;
  gap: var(--gap);
}

.video-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: var(--gap);
  align-items: start;
}

.video-page__main,
.video-page__side,
.video-page__top {
  display: grid;
  gap: var(--gap);
  min-width: 0;
}

.video-page__main > .section-title,
.video-page__side .section-title {
  margin-bottom: 0;
}

.page--videos .section-title {
  font-size: 28px;
}

.video-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap) var(--gap);
  padding: var(--gap);
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.video-page .video-page-card {
  width: 100%;
  border-radius: 12px;
}

.post-page {
  display: grid;
  gap: var(--gap);
}

.post-page > .section-title {
  margin-bottom: 0;
}

.post-page__card {
  padding: var(--gap);
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.post-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.page--post .post-page__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-page-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: inherit;
  background: var(--muted);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.post-page-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  transition: transform 180ms ease;
  backface-visibility: hidden;
  will-change: transform;
}

.post-page-card:hover img {
  transform: translate3d(0, 0, 0) scale(1.2);
}

.theme-page {
  display: grid;
  gap: var(--gap);
}

.theme-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: var(--gap);
  align-items: start;
}

.theme-page__main,
.theme-page__side,
.theme-page__top {
  display: grid;
  gap: var(--gap);
  min-width: 0;
}

.theme-page__main > .section-title,
.theme-page__side .section-title {
  margin-bottom: 0;
}

.page--themes .section-title {
  font-size: 28px;
}

.theme-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  padding: var(--gap);
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.theme-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 138px;
  padding: 18px;
  color: #fff;
  background: #050505;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.theme-card::before,
.theme-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.theme-card::before {
  background-image: var(--theme-bg);
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  transition: transform 180ms ease;
  backface-visibility: hidden;
  will-change: transform;
}

.theme-card::after {
  z-index: -1;
  background: linear-gradient(to top, rgb(0 0 0 / 88%) 0%, rgb(0 0 0 / 14%) 100%);
}

.theme-card:hover::before {
  transform: translate3d(0, 0, 0) scale(1.1);
}

.theme-card span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  transform: translate3d(0, 0, 0);
  transition: none;
}

.theme-card:hover span,
.theme-card:hover svg {
  transform: translate3d(0, 0, 0);
}

.theme-card span strong {
  color: var(--green);
}

.theme-card svg {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: #fff;
  transform: translate3d(0, 0, 0);
  transition: none;
}

.listing-side-card,
.listing-ad-card {
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 25px;
  color: var(--ink);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.listing-side-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.listing-side-card h2 span,
.listing-side-card strong {
  color: var(--green);
}

.listing-side-card p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.listing-side-card form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 0;
  margin-top: 2px;
}

.listing-side-card input,
.listing-side-card button,
.listing-side-card__actions a {
  height: 35px;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
}

.listing-side-card input {
  min-width: 0;
  padding: 0 10px;
  background: var(--page);
  outline: 0;
}

.listing-side-card--newsletter {
  color: #fff;
  background: #000;
}

.listing-side-card--newsletter h2,
.listing-side-card--newsletter p {
  color: #fff;
}

.listing-side-card--newsletter form {
  position: relative;
  display: block;
  height: 38px;
  margin-top: 4px;
  overflow: hidden;
  background: #fff;
  border-radius: 30px;
}

.listing-side-card--newsletter input {
  width: 100%;
  height: 100%;
  padding: 0 94px 0 14px;
  background: #fff;
  border-radius: 30px;
}

.listing-side-card--newsletter button {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 30px;
  min-width: 82px;
  border-radius: 30px;
}

.listing-side-card button,
.listing-side-card__cta {
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  color: #020202;
  background: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}

.listing-side-card__notice {
  margin-top: 4px;
  padding: 12px;
  color: var(--green);
  background: rgba(32, 236, 113, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.listing-side-card__actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 6px;
}

.listing-side-card__cta {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  height: 35px;
  border-radius: 30px;
  color: #020202;
  font-size: 14px;
  font-weight: 500 !important;
  text-transform: initial;
  white-space: nowrap;
}

.listing-side-card__cta--offer {
  flex: 1.45 1 0;
  background: var(--green);
}

.listing-side-card__cta--don {
  flex: 0.9 1 0;
  background: var(--page);
}

.listing-side-card__google {
  display: block !important;
  width: max-content;
  max-width: 100%;
  height: auto !important;
  margin: 0;
  padding: 0 !important;
  color: var(--muted-dark) !important;
  background: transparent !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1;
  text-transform: none !important;
  white-space: nowrap;
}

.listing-side-card__google-line {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 8px;
  max-width: 100%;
  white-space: nowrap;
}

.listing-side-card__google-line span {
  flex: 0 0 auto;
}

.listing-side-card__google img {
  flex: 0 0 auto;
  display: block;
  width: 58px;
  max-width: none;
  height: auto;
  transform: translateY(2px);
}

.listing-side-card--newsletter button,
.listing-side-card--subscribe button,
.listing-side-card--subscribe a,
.listing-ad-card__offer {
  border-radius: 30px !important;
}

.listing-ad-card {
  display: grid;
  place-items: last-baseline;
  gap: 0;
  min-height: 210px;
  padding: 34px 25px;
  color: #fff;
  text-align: left;
  background: #000;
  border: 0;
  text-decoration: none;
}

.listing-ad-card__title {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.listing-ad-card__title span {
  color: var(--green);
}

.listing-ad-card__text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
}

.listing-ad-card__offer {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 35px;
  margin-top: 4px;
  padding: 0 16px;
  color: #020202;
  background: var(--green);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500 !important;
  line-height: 1;
  text-transform: initial;
  margin-bottom: -10px;
}

.google-subscribe-native-wrap,
.google-subscribe-native {
  display: block;
  overflow: hidden !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
}

.google-subscribe-native-wrap *,
.google-subscribe-native * {
  overflow: hidden !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.article-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 4px;
  background: rgb(0 0 0 / 8%);
}

.article-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  gap: var(--gap);
  align-items: start;
}

.article-main,
.article-sidebar {
  display: grid;
  gap: var(--gap);
  min-width: 0;
}

.article-card {
  overflow: hidden;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.article-card--empty {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 40px;
  text-align: center;
}

.article-card--empty h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card--empty h1 span,
.article-header h1 span,
.article-author h2 span {
  color: var(--green);
}

.article-page .section-title {
  text-transform: uppercase;
}

.article-header {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.article-category {
  width: max-content;
  padding: 2px 6px;
  color: #020202;
  background: var(--green);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.article-kicker .badge--live,
.article-kicker .badge--urgent {
  position: static;
  text-transform: uppercase;
}

.article-header h1 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(20px, 5vw, 25px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: #777;
  font-size: 14px;
  font-weight: 400;
}

.article-meta span:not(:last-child)::after,
.article-meta time:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
}

.article-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.article-media img,
.article-media video,
.article-media iframe {
  display: block;
  width: 100%;
}

.article-media img {
  height: auto;
}

.article-media video {
  max-height: 74vh;
  object-fit: cover;
}

.article-media--vertical {
  display: grid;
  place-items: center;
  background: #000;
}

.article-media--vertical video {
  width: min(460px, 100%);
  aspect-ratio: 9 / 16;
}

.article-media--youtube iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.article-media figcaption {
  position: absolute;
  right: 8px;
  bottom: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgb(0 0 0 / 50%);
}

.article-note,
.article-body,
.article-related-card,
.article-share {
  margin-inline: 28px;
}

.article-note {
  margin: 22px;
  padding: 16px;
  color: #333;
  background: var(--page);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.article-body {
  padding-top: 24px;
  color: #050505;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.58;
}

.article-body:first-of-type {
  padding-top: 0;
}

.article-body p:first-child {
  margin-top: 0;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 20px;
}

.article-body h2 {
  margin: 28px 0 14px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.article-body b,
.article-body strong {
  font-weight: 600;
}

.article-body a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-body img {
  display: block;
  width: 100%;
  height: auto;
  margin: 22px 0;
  border-radius: 10px;
}

.article-body blockquote {
  margin: 0px;
  padding-left: 10px;
  border-left: 4px solid var(--green);
  font-weight: 600;
}

.article-body blockquote p {
  margin: 0;
}

.article-related-card {
  display: grid;
  gap: 8px;
  margin: 24px 0 !important;
  padding: 18px;
  color: #fff;
  background: #050505;
  border-radius: 10px;
  text-decoration: none;
}

.article-body .article-related-card,
.article-body .article-related-card:hover,
.article-body .article-related-card:focus-visible {
  color: #fff;
  text-decoration: none;
}

.article-related-card span {
  width: max-content;
  padding: 2px 6px;
  color: #020202;
  background: var(--green);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
}

.article-related-card strong {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.article-lock-card {
  display: grid;
  gap: 12px;
  margin: 28px;
  padding: 24px;
  color: #fff;
  background: #050505;
  border-radius: 12px;
}

.article-lock-card h2,
.article-lock-card p {
  margin: 0;
}

.article-lock-card h2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.article-lock-card h2 span {
  color: var(--green);
}

.article-lock-card p {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.article-inline-ad,
.article-inline-newsletter {
  margin: 24px 0;
  text-align: center;
}

.article-body > .article-related-card,
.article-body > .article-inline-ad,
.article-body > .article-inline-newsletter {
  margin: 24px 0;
}

.article-card > .article-related-card,
.article-card > .article-inline-ad,
.article-card > .article-inline-newsletter {
  margin: 24px 28px !important;
}

.article-inline-ad .listing-ad-card__text {
  max-width: 300px;
  margin: auto;
}

.article-inline-ad .listing-ad-card__offer {
  width: max-content;
  padding: 0 26px;
  margin: 10px auto;
}

.article-seo-cloud {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  font-size: 0;
}

.article-share {
  display: flex;
  gap: 8px;
  padding: 26px 0 28px;
}

.article-share button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  color: #050505;
  background: var(--page);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

.article-share svg {
  width: 18px;
  height: 18px;
}

.article-live-block {
  padding: 24px;
}

.article-live-block .section-title {
  margin-bottom: var(--gap);
}

.article-live-block .minute__panel {
  max-height: none;
  overflow-y: visible;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
}

.article-author img,
.article-author__avatar {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--page);
}

.article-author img {
  object-fit: cover;
}

.article-author__avatar {
  display: grid;
  place-items: center;
  color: #fff;
  background: #050505;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.article-author h2,
.article-author p {
  margin: 0;
}

.article-author__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #777;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.article-author h2 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.article-author p {
  margin-top: 0;
  color: #777;
  font-size: 14px;
  font-weight: 400;
}

.article-tags {
  overflow: hidden;
  width: 100%;
  max-height: 130px;
  padding: 15px 0;
  color: #fff;
  background: var(--green);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.article-tags__inner {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 15px;
  transform: scale(1.3);
  transform-origin: 10% 50%;
}

.article-tags__line {
  width: max-content;
  white-space: nowrap;
}

.article-tags span {
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  text-transform: uppercase;
}

.article-tags .is-strong {
  font-weight: 800;
  opacity: 1;
}

.article-tags .is-soft {
  opacity: 0.5;
}

.page--static {
  padding-bottom: 15px;
}

.static-page {
  display: grid;
  gap: var(--gap);
}

.static-hero,
.static-card,
.static-mini-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.static-hero {
  display: grid;
  gap: 8px;
  padding: 30px;
}

.static-hero .section-title {
  margin-bottom: 0;
}

.static-hero p {
  max-width: 860px;
  margin: 0;
  color: #333;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.35;
}

.static-kicker {
  width: max-content;
  padding: 2px 6px;
  color: #020202 !important;
  background: var(--green);
  border-radius: 5px;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  text-transform: uppercase;
}

.static-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--gap);
  align-items: start;
}

.static-card {
  padding: 30px;
}

.static-card--main,
.static-legal-card {
  display: grid;
  gap: 24px;
}

.static-card h2,
.static-mini-card h2 {
  margin: 0;
  color: #050505;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.static-card h2 span,
.static-mini-card h2 span,
.static-card strong {
  color: var(--green);
}

.page-legal .static-card h2 span,
.page-legal .static-mini-card h2 span {
  color: var(--green);
  font-weight: 900;
}

.page-legal .static-card strong {
  color: #000000;
  font-weight: 600;
}

.static-card p,
.static-card li,
.static-mini-card p {
  margin: 0;
  color: #111;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.static-card section {
  display: grid;
  gap: 10px;
}

.static-card a,
.static-mini-card a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.static-form {
  display: grid;
  gap: var(--gap);
}

.static-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.static-form label {
  display: grid;
  gap: 8px;
  color: #050505;
  font-size: 13px;
  font-weight: 400;
}

.static-form input,
.static-form select,
.static-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  border-radius: 10px;
  padding: 14px 15px;
  color: #050505;
  background: var(--page);
  font: inherit;
  font-size: 16px;
  font-weight: 300;
}

.static-form input:not(.static-hp),
.static-form select {
  height: 62px;
  min-height: 62px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 62px;
}

.static-form textarea {
  min-height: 150px;
  resize: vertical;
}

.static-hp {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}

.static-form__notice {
  color: #777 !important;
  font-size: 13px !important;
}

.static-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 30px;
  color: #fff;
  background: #050505;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.static-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.static-alert--success {
  color: var(--green) !important;
  background: rgba(32, 236, 113, 0.16);
}

.static-alert--error {
  color: var(--red) !important;
  background: rgba(255, 87, 82, 0.14);
}

.static-aside {
  display: grid;
  gap: var(--gap);
  min-width: 0;
}

.static-mini-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.static-mini-card--dark {
  color: #fff;
  background: #050505;
}

.static-mini-card--dark h2,
.static-mini-card--dark p {
  color: #fff;
}

.static-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.static-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #050505;
  background: var(--green);
  border-radius: 50%;
}

.static-socials svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}

.site-footer {
  margin-top: 0;
  padding: 34px 0 26px;
  color: #fff;
  background: #050505;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 10px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  width: min(100%, 470px);
  text-decoration: none;
  line-height: 1;
}

.site-footer__logo img {
  display: block;
  width: 60%;
  height: auto;
}

.site-footer__brand p {
  max-width: 390px;
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.25;
}

.site-footer__nav,
.site-footer__links {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: inherit;
}

.site-footer__nav a,
.site-footer__links a {
  width: max-content;
  max-width: 100%;
  color: rgb(255 255 255 / 78%);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__links a:hover {
  color: var(--green);
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.site-footer__socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #050505;
  background: #fff;
  border-radius: 50%;
}

.site-footer__socials svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 2px solid rgb(255 255 255 / 14%);
  color: rgb(255 255 255 / 48%);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
}

.site-footer__seo {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.has-subscribe-modal {
  overflow: hidden;
}

.subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.subscribe-modal.is-open {
  display: flex;
}

.subscribe-modal__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgb(0 0 0 / 58%);
  border: 0;
  cursor: pointer;
}

.subscribe-modal__panel {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: clamp(28px, 4vw, 54px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgb(0 0 0 / 18%);
}

.subscribe-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #777;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.subscribe-modal__close svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.7;
}

.subscribe-step {
  display: none;
}

.subscribe-step.is-active {
  display: block;
}

.subscribe-modal__head {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.subscribe-modal__head h2 span {
  color: var(--green);
}

.subscribe-modal__head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.subscribe-modal__head p {
  margin: 14px 0 0;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.subscribe-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.subscribe-plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: max-content;
  padding: 20px;
  background: #fff;
  border: 2.5px solid #e3e3e3;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.subscribe-plan.is-featured,
.subscribe-plan.is-selected {
  border-color: var(--green);
}

.subscribe-plan h3 {
  margin: 0;
  color: var(--green);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.08;
}

.subscribe-plan__price {
  margin: 12px 0 0;
  color: #3e3e3e;
  font-size: 19px;
  font-weight: 600;
}

.subscribe-plan__note {
  margin: 8px 0 0;
  color: #777;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.subscribe-plan ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.subscribe-plan li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.subscribe-plan li svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  stroke-width: 2.2;
}

.subscribe-plan__button,
.subscribe-modal__primary,
.subscribe-modal__secondary {
  display: inline-grid;
  place-items: center;
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  padding: 0 18px;
  border: 0;
  border-radius: 30px !important;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500 !important;
  line-height: 1;
}

.subscribe-plan__button,
.subscribe-modal__primary {
  color: #fff;
  background: var(--green);
}

.subscribe-plan__button {
  margin-top: 20px;
}

.subscribe-modal__primary:disabled {
  opacity: 0.55;
  cursor: wait;
}

.subscribe-modal__secondary {
  color: var(--ink);
  background: #f2f2f2;
}

.subscribe-plan-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.subscribe-plan-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #d5d5d5;
  border: 0;
  border-radius: 50%;
}

.subscribe-plan-dots button.is-active {
  background: var(--green);
}

.subscribe-signup,
.subscribe-payment {
  max-width: 520px;
  margin: 0 auto;
}

.subscribe-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 0;
}

.subscribe-signup__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.subscribe-signup label {
  display: grid;
  gap: 8px;
  margin-bottom: var(--gap);
  font-size: 14px;
  font-weight: 500;
}

.subscribe-signup input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--ink);
  background: #f2f2f2;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  outline: 0;
}

.subscribe-modal__message {
  min-height: 18px;
  margin: 6px 0 0;
  color: #777;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.subscribe-modal__message.is-error {
  color: var(--red);
}

.subscribe-modal__message.is-success {
  color: var(--green);
}

.subscribe-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--gap);
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.subscribe-terms input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.subscribe-terms a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.subscribe-terms strong {
  color: var(--green);
  font-weight: 700;
}

.subscribe-card-field {
  min-height: 52px;
  padding: 16px;
  background: #f2f2f2;
  border-radius: 38px;
}

.donation-options,
.donation-frequency {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: var(--gap);
}

.donation-frequency {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.donation-options button,
.donation-frequency button {
  min-height: 42px;
  color: var(--ink);
  background: #f2f2f2;
  border: 0;
  border-radius: 30px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
}

.donation-options button.is-selected,
.donation-frequency button.is-selected {
  color: #020202;
  background: var(--green);
}

.donation-custom {
  display: grid;
  gap: 8px;
  margin-bottom: var(--gap);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.donation-custom input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--ink);
  background: #f2f2f2;
  border: 0;
  border-radius: 30px;
  font: inherit;
  font-size: 16px;
  outline: 0;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  align-self: start;
  min-height: 0;
}

.article-sidebar.is-measured {
  min-height: var(--article-sidebar-target);
}

.article-sidebar-section {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.article-sidebar-section--briefs {
  flex: 0 0 auto;
  grid-template-rows: auto auto;
  min-height: 260px;
}

.article-sidebar.is-measured .article-sidebar-section--briefs {
  flex: 1 1 0;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
}

.article-sidebar-section > .section-title {
  margin: 0;
}

.article-comments {
  padding: 22px;
}

.article-comments__empty {
  margin: 0 0 15px;
  color: #777;
  font-size: 14px;
  font-weight: 400;
}

.article-comment {
  padding: 14px 0;
  border-top: 1px solid #ededed;
}

.article-comment header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: #777;
  font-size: 13px;
  font-weight: 400;
}

.article-comment strong {
  color: #050505;
  font-weight: 700;
}

.article-comment p {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.article-comment--reply {
  margin-left: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--green);
}

.article-comment-form,
.article-comment-login {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.article-comment-form textarea,
.article-comment-form__disabled {
  width: 100%;
  min-height: 92px;
  padding: 14px;
  resize: vertical;
  color: #050505;
  background: var(--page);
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  outline: 0;
}

.article-comment-form button,
.article-comment-login {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 44px;
  color: #fff;
  background: #050505;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.article-side-list {
  display: grid;
  gap: var(--gap);
  padding: 22px;
}

.listing-see-also .article-side-list,
.article-side-list--separated {
  gap: 0;
}

.article-side-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  padding-top: var(--gap);
  border-top: 1px solid #ededed;
}

.article-side-item:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.listing-see-also .article-side-item,
.article-side-list--separated .article-side-item {
  padding: var(--gap) 0;
  border-top: 0;
  border-bottom: 2px solid #e7e7e7;
}

.listing-see-also .article-side-item:first-of-type,
.article-side-list--separated .article-side-item:first-of-type {
  padding-top: 0;
}

.listing-see-also .article-side-item:last-of-type,
.article-side-list--separated .article-side-item:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-side-item img {
  grid-row: span 2;
  width: 92px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: var(--muted);
}

.article-side-item span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.article-side-item strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 4px;
  color: #050505;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-brief-list {
  --minute-time-width: 48px;
  --minute-dot-width: 18px;
  --minute-dot-half: 9px;
  --minute-gap: 15px;
  --minute-segment-left: calc(var(--minute-time-width) + var(--minute-gap) + var(--minute-dot-half) - 0.5px);
  display: grid;
  gap: 0;
  height: auto;
  min-height: 0;
  padding: 0 16px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgb(0 0 0 / 18%) transparent;
}

.article-brief-list::-webkit-scrollbar {
  width: 4px;
}

.article-brief-list::-webkit-scrollbar-track {
  background: transparent;
}

.article-brief-list::-webkit-scrollbar-thumb {
  background: rgb(0 0 0 / 18%);
  border-radius: 30px;
}

.article-brief-item {
  --minute-dot-center: 50%;
  position: relative;
  display: grid;
  grid-template-columns: var(--minute-time-width) var(--minute-dot-width) minmax(0, 1fr);
  column-gap: var(--minute-gap);
  align-items: center;
  min-height: 70px;
  color: var(--ink);
  text-decoration: none;
}

.article-brief-item::after {
  position: absolute;
  top: var(--minute-dot-center);
  bottom: calc(-50% - 1px);
  left: var(--minute-segment-left);
  z-index: 1;
  width: 1px;
  content: "";
  pointer-events: none;
  background: var(--green);
  -webkit-mask: repeating-linear-gradient(to bottom, #000 0 8px, transparent 8px 14px);
  mask: repeating-linear-gradient(to bottom, #000 0 8px, transparent 8px 14px);
}

.article-brief-item--first::after {
  background: linear-gradient(to bottom, var(--red), var(--green));
}

.article-brief-item:last-child::after {
  display: none;
}

.article-brief-item time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.article-brief-item time small {
  color: #9b9b9b;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
}

.article-brief-item strong {
  display: -webkit-box;
  overflow: hidden;
  color: #050505;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.24;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.listing-grid .news-card {
  min-height: 292px;
}

.listing-empty {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 28px;
  text-align: center;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.listing-empty h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.listing-empty h2 span {
  color: var(--green);
}

.listing-empty p {
  margin: 8px 0 0;
  color: #777;
  font-size: 15px;
}

.listing-404-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 34px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.listing-404-card > div {
  width: 100%;
  text-align: center;
}

.listing-404-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(75px, 10vw, 133px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.listing-404-card h1 span {
  color: var(--green);
}

.listing-404-card p {
  margin: 16px 0 0;
  color: #777;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.2;
}

.search-page__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--gap);
  padding: 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.search-page__form input,
.search-page__form button {
  height: 46px;
  border: 0;
  border-radius: 30px;
  font-family: inherit;
}

.search-page__form input {
  min-width: 0;
  padding: 0 18px;
  color: var(--ink);
  background: var(--page);
  font-size: 16px;
  font-weight: 300;
  outline: 0;
}

.search-page__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  color: #020202;
  background: var(--green);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.search-page__form button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}

.error-page {
  min-height: min(560px, calc(100vh - 190px));
}

.error-hero {
  min-height: 360px;
  place-items: center;
  text-align: center;
}

.error-hero p:not(.static-kicker) {
  margin-inline: auto;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.error-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: #020202;
  background: var(--page);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.error-actions a:first-child {
  background: var(--green);
}

.floating-next--topics {
  top: 0;
  right: 0;
  width: 31px;
  height: 31px;
}

.floating-prev--topics {
  top: 0;
  left: 0;
  width: 31px;
  height: 31px;
}

.headlines {
  margin-top: var(--gap);
}

.section-title {
  margin: 0 0 var(--gap);
  color: #050505;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.headline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.news-card {
  overflow: hidden;
  min-width: 0;
  min-height: 286px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.news-card--dark {
  background: #000;
}

.news-card__media {
  position: relative;
  height: 177px;
  overflow: hidden;
  background: var(--muted);
}

.news-card__body {
  min-height: 109px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 21px;
  background: #fff;
}

.news-card--dark .news-card__body {
  color: #fff;
  background: #000;
}

.news-card__time {
  top: 20px;
  left: 18px;
}

.news-card__time--after-badge {
  left: 94px;
}

.news-card__time--after-live {
  left: 85px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.badge--live {
  position: absolute;
  top: 13px;
  left: 14px;
  z-index: 3;
  gap: 8px;
  height: 24px;
  padding-inline: 8px;
  color: #020202;
  background: var(--green);
  font-size: 14px;
  border-radius: 6px;
}

.badge--urgent {
  gap: 8px;
  height: 24px;
  padding: 0 8px;
  padding-inline: 8px;
  background: var(--red);
  font-size: 14px;
  border-radius: 6px;
  text-transform: uppercase;
}

.news-card__media > .badge--urgent {
  position: absolute;
  top: 12px;
  left: 13px;
  z-index: 3;
}

.category--urgent {
  color: var(--red);
}

.split-news {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--gap);
  align-items: stretch;
  margin-top: var(--gap);
}

.must-read__list,
.minute__panel {
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.must-read__list {
  flex: 0 0 auto;
  margin-top: 0;
}

.list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: var(--gap);
  align-items: center;
  min-height: 147px;
  padding: 18px 18px 18px 30px;
  background: #fff;
  border-bottom: 2px solid #e7e7e7;
}

.list-item:first-child {
  min-height: 143px;
}

.list-item:last-child {
  border-bottom: 0;
}

.list-item--dark {
  color: #fff;
  background: #000;
  border-color: #000;
}

.list-item--dark .thumb {
  background: var(--muted);
}

.list-item__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.list-item__copy .category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.list-item__copy .badge {
  position: static;
  height: 26px;
  font-size: 13px;
}

.list-item__copy .badge--live {
  padding-inline: 6px;
}

.list-item time {
  display: block;
  margin-top: 5px;
  color: #a8a8a8;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.thumb {
  position: relative;
  width: 100%;
  height: 112px;
  overflow: hidden;
  background: var(--muted);
  border-radius: 10px;
}

.thumb svg,
.minute-media svg {
  position: absolute;
  inset: 0;
  width: 34px;
  height: 34px;
  margin: auto;
  color: var(--muted-dark);
}

.must-read,
.minute {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.minute__panel {
  --minute-pad-x: 12px;
  --minute-time-width: 50px;
  --minute-dot-width: 18px;
  --minute-dot-half: 9px;
  --minute-gap: 15px;
  --minute-segment-left: calc(var(--minute-time-width) + var(--minute-gap) + var(--minute-dot-half) - 0.5px);
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  height: auto;
  margin-top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 var(--minute-pad-x) 0 var(--minute-pad-x);
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: rgb(242 242 242 / 50%) transparent;
}

.minute__panel::-webkit-scrollbar {
  width: 6px;
}

.minute__panel::-webkit-scrollbar-track {
  background: transparent;
}

.minute__panel::-webkit-scrollbar-thumb {
  background: rgb(242 242 242 / 50%);
  border-radius: 999px;
}

.minute__line {
  display: none;
}

.minute-item {
  --minute-dot-center: 50%;
  position: relative;
  display: grid;
  grid-template-columns: var(--minute-time-width) var(--minute-dot-width) minmax(0, 1fr);
  column-gap: var(--minute-gap);
  align-items: center;
  min-height: 85px;
}

.minute-item::after {
  position: absolute;
  top: var(--minute-dot-center);
  bottom: calc(-50% - 1px);
  left: var(--minute-segment-left);
  z-index: 1;
  width: 1px;
  content: "";
  pointer-events: none;
  background: var(--green);
  -webkit-mask: repeating-linear-gradient(to bottom, #000 0 8px, transparent 8px 14px);
  mask: repeating-linear-gradient(to bottom, #000 0 8px, transparent 8px 14px);
}

.minute-item:has(+ .minute-item--with-media)::after {
  bottom: -17px;
}

.minute-item--first::after {
  background: linear-gradient(to bottom, var(--red), var(--green));
}

.minute-item--with-media::after {
  top: 17px;
  bottom: -42.5px;
}

.minute-item--with-media:has(+ .minute-item--with-media)::after {
  bottom: -17px;
}

.minute-item:last-child::after {
  display: none;
}

.minute-item time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.minute-item time small {
  color: #9b9b9b;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
}

.minute-item p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.28;
}

.minute-dot {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(32 236 113 / 24%);
}

.minute-dot--alert {
  width: 12px;
  height: 12px;
  background: var(--red);
  box-shadow: 0 0 0 8px rgb(255 87 82 / 24%);
}

.minute-item--with-media {
  min-height: 0;
}

.minute-media {
  position: relative;
  grid-column: 3;
  width: 286px;
  max-width: 100%;
  height: auto;
  overflow-x: hidden;
  margin-top: var(--gap);
  margin-bottom: var(--gap);
  background: var(--muted);
  border-radius: 8px;
}

.minute-media .media-fill {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.reports {
  margin-top: var(--gap);
}

.reports__rail {
  gap: var(--gap);
  margin-top: var(--gap);
}

.report-card {
  width: 220px;
  aspect-ratio: 9 / 16;
}

.reports__rail .report-card {
  width: calc((100% - (var(--gap) * 4)) / 5);
}

.floating-next--reports {
  top: 224px;
  right: -17px;
}

.floating-prev--reports {
  top: 224px;
  left: -17px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 28px;
}

.video-modal.is-open {
  display: grid;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 88%);
}

.video-modal__frame {
  position: relative;
  z-index: 1;
  width: min(430px, calc((100vh - 88px) * 9 / 16), calc(100vw - 44px));
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #111;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgb(0 0 0 / 35%);
}

.video-modal--insta .video-modal__frame {
  width: min(430px, calc((100vh - 88px) * 4 / 5), calc(100vw - 44px));
  aspect-ratio: 4 / 5;
}

.video-modal__slot {
  width: 100%;
  height: 100%;
}

.video-modal__video,
.video-modal__slot .media-fill {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.video-modal__controls {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: var(--gap);
  transform: translateX(-50%);
}

@media (max-width: 1180px) {
  .static-layout {
    grid-template-columns: 1fr;
  }

  .static-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .static-mini-card:last-child {
    grid-column: 1 / -1;
  }

  .shell {
    width: min(var(--shell), calc(100% - 32px));
  }

  .topbar__inner {
    display: flex;
    justify-content: flex-start;
    gap: var(--gap);
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .topbar__actions {
    margin-left: auto;
  }

  .article-brief-list {
    height: 500px;
  }

  .subscribe-plans {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .subscribe-plans::-webkit-scrollbar {
    display: none;
  }

  .subscribe-plan {
    flex: 0 0 calc((100% - var(--gap)) / 2);
    scroll-snap-align: start;
  }

  .subscribe-plan-dots {
    display: flex;
  }

  .icon-button {
    width: 35px;
    height: 35px;
  }

  .topbar-search {
    width: 35px;
    height: 35px;
  }

  .topbar-search__input {
    padding-right: 42px;
  }

  .hero__media,
  .topics__rail,
  .reports__rail {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .reports__rail .report-card {
    width: 220px;
  }

  .headline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-news {
    grid-template-columns: 1fr;
  }

  .minute {
    max-width: 670px;
  }

  .minute__panel {
    flex: none;
    height: 584px;
  }

  .listing-page__layout {
    grid-template-columns: 1fr;
  }

  .listing-scoop-card,
  .page-live .listing-scoop-card {
    flex-basis: calc((100% - var(--gap)) / 2);
    width: calc((100% - var(--gap)) / 2);
  }

  .listing-subjects__grid,
  .listing-subjects__grid.theme-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-page__layout {
    grid-template-columns: 1fr;
  }

  .theme-page__layout {
    grid-template-columns: 1fr;
  }

  .video-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    display: grid;
    min-height: 0;
  }

  .article-sidebar.is-measured {
    min-height: 0;
  }

  .article-sidebar.is-measured .article-sidebar-section--briefs {
    display: grid;
    flex: initial;
    grid-template-rows: auto auto;
  }

  .listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .search-page__form {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 8px;
    padding: 10px;
  }

  .search-page__form button {
    width: 46px;
    padding: 0;
  }

  .search-page__form button span {
    display: none;
  }

  .static-hero,
  .static-card,
  .static-mini-card {
    border-radius: 10px;
  }

  .static-hero,
  .static-card {
    padding: 20px;
  }

  .static-hero p,
  .static-card p,
  .static-card li,
  .static-mini-card p {
    font-size: 15px;
  }

  .static-card h2,
  .static-mini-card h2 {
    font-size: 21px;
  }

  .static-form__grid,
  .static-aside {
    grid-template-columns: 1fr;
  }

  .subscribe-modal {
    align-items: flex-end;
    justify-content: stretch;
    padding: 0;
  }

  .subscribe-modal__panel {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 28px 16px 20px;
    border-radius: 14px 14px 0 0;
  }

  .subscribe-modal__close {
    top: 10px;
    right: 10px;
  }

  .subscribe-modal__head {
    margin-bottom: 20px;
  }

  .subscribe-modal__head p {
    font-size: 15px;
  }

  .subscribe-plan {
    flex-basis: 100%;
  }

  .subscribe-signup__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .static-mini-card:last-child {
    grid-column: auto;
  }

  .topbar {
    height: 74px;
  }

  .topbar__inner {
    position: relative;
  }

  .topbar__actions {
    position: absolute;
    top: 50%;
    left: calc(100% - 75px);
    right: 0;
    margin-left: 0;
    transform: translateY(-50%);
    transition: left 0.26s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .topbar.is-search-open .topbar__actions {
    left: 40px;
  }

  .logo {
    margin-left: 0;
    width: 189px;
    transition:
      opacity 0.18s ease,
      transform 0.22s ease;
  }

  .topbar.is-search-open .logo {
    opacity: 0;
    transform: translateX(-8px);
    pointer-events: none;
  }

  .topbar-search.is-open {
    width: max(40px, calc(100vw - 326px));
  }

  .topbar.is-search-open .topbar-search.is-open {
    flex: 1 1 auto;
    width: auto;
  }

  .topbar-search__input {
    padding: 0 42px 0 13px;
    font-size: 16px;
  }

  input,
  textarea,
  select,
  .account-form input {
    font-size: 16px;
  }

  .account-drawer__panel {
    padding: 26px 20px;
  }

  .menu-drawer__panel {
    padding: 26px 20px;
  }

  .menu-drawer__close {
    top: 14px;
    right: 14px;
  }

  .menu-drawer__nav {
    padding: 48px 0;
  }

  .account-drawer__content {
    padding-block: 0;
  }

  .account-drawer__close {
    top: 14px;
    right: 14px;
  }

  .page {
    min-height: calc(100vh - 74px);
    padding-top: var(--gap);
  }

  .article-header {
    padding: 20px;
  }

  .article-header h1 {
    font-size: 22px;
  }

  .article-note,
  .article-body,
  .article-related-card,
  .article-share {
    margin-inline: 20px;
  }

  .article-body {
    font-size: 17px;
  }

  .article-lock-card {
    margin-inline: 20px;
  }

  .article-card > .article-related-card,
  .article-card > .article-inline-ad,
  .article-card > .article-inline-newsletter {
    margin: 24px 20px !important;
  }

  .article-share {
    padding-bottom: 22px;
  }

  .hero__layout {
    display: block;
  }

  .hero__media {
    margin-top: var(--gap);
    overflow-x: auto;
  }

  .lead-card {
    width: 100%;
    height: 360px;
  }

  .video-card,
  .hero__media .video-card {
    width: calc((100vw - 47px) / 2);
  }

  .hero__media .video-card:last-child {
    width: calc((100vw - 47px) / 2);
  }

  .hero__media .timestamp--center {
    top: 5px;
  }

  .lead-card__caption {
    height: 100px;
    padding: 14px 18px 16px;
  }

  .floating-next,
  .floating-prev {
    display: grid;
  }

  .floating-next--hero,
  .floating-prev--hero {
    top: calc(343.8125px + 31.25vw);
  }

  .floating-next--hero {
    right: -17px;
  }

  .floating-prev--hero {
    left: -17px;
  }

  .floating-next--reports,
  .floating-prev--reports {
    top: calc(0.711px + 44.444vw);
  }

  .floating-next--reports {
    right: -17px;
  }

  .floating-prev--reports {
    left: -17px;
  }

  .flash__bar {
    grid-template-columns: auto 1fr auto;
    gap: var(--gap);
  }

  .flash__label {
    padding-inline: 9px;
    font-size: 12px;
  }

  .flash strong {
    font-size: 11px;
  }

  .flash__time {
    display: none;
  }

  .topic {
    min-width: auto;
    height: 30px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }

  .page--listing .section-title {
    font-size: 22px;
  }

  .headline-grid {
    gap: var(--gap);
  }

  .news-card {
    min-height: 246px;
  }

  .news-card__media {
    height: 158px;
  }

  .news-card__body {
    min-height: 88px;
    padding: 13px 16px;
  }

  .news-card h3,
  .lead-card h1,
  .list-item h3 {
    font-size: 14px;
  }

  .category {
    font-size: 11px;
  }

  .list-item {
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: var(--gap);
    min-height: 132px;
    padding: 16px;
  }

  .list-item:first-child {
    min-height: 132px;
  }

  .thumb {
    height: 92px;
  }

  .minute__panel {
    --minute-pad-x: 12px;
    --minute-time-width: 46px;
    --minute-gap: 15px;
    height: min(560px, 72vh);
  }

  .minute-item {
    min-height: 82px;
  }

  .minute-item:has(+ .minute-item--with-media)::after {
    bottom: -17px;
  }

  .minute-item--with-media::after {
    top: 17px;
    bottom: -41px;
  }

  .minute-item time,
  .minute-item p {
    font-size: 14px;
  }

  .minute-item--with-media {
    min-height: 0;
  }

  .report-card,
  .reports__rail .report-card {
    width: calc((100vw - 47px) / 2);
  }

  .video-page-card {
    width: 100%;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .theme-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-grid .news-card {
    min-height: 0;
  }

  .topics__rail--static {
    padding-right: 0;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .hero__layout {
    display: flex;
    align-items: flex-start;
  }

  .hero__media {
    margin-top: 0;
    align-items: flex-start;
    overflow-x: auto;
  }

  .lead-card {
    flex-basis: clamp(300px, 43vw, 455px);
    width: clamp(300px, 43vw, 455px);
    height: clamp(210px, 30vw, 325px);
    aspect-ratio: 512 / 390;
  }

  .video-card,
  .hero__media .video-card,
  .hero__media .video-card:last-child {
    width: clamp(168px, 24vw, 260px);
    height: clamp(210px, 30vw, 325px);
  }

  .lead-card__caption {
    height: clamp(64px, 8.8vw, 82px);
    padding: 9px 16px 11px;
  }

  .floating-next--hero,
  .floating-prev--hero {
    top: clamp(105px, 15vw, 162px);
  }

  .floating-next--hero {
    right: -17px;
  }

  .floating-prev--hero {
    left: calc(clamp(300px, 43vw, 455px) + var(--gap) - 16px);
  }

  .headline-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .section-title {
    font-size: clamp(22px, 3vw, 28px);
  }

  .page--listing .section-title {
    font-size: clamp(22px, 3vw, 28px);
  }

  .news-card {
    min-height: clamp(188px, 23vw, 286px);
    border-radius: 10px;
  }

  .news-card__media {
    height: clamp(108px, 15vw, 177px);
  }

  .news-card__body {
    min-height: clamp(72px, 9vw, 109px);
    padding: clamp(10px, 1.5vw, 20px) clamp(12px, 1.7vw, 21px);
  }

  .news-card h3,
  .lead-card h1,
  .list-item h3 {
    font-size: clamp(12px, 1.35vw, 16px);
    line-height: 1.22;
  }

  .headline-grid .category,
  .lead-card .category {
    margin-bottom: 5px;
    font-size: clamp(9px, 0.95vw, 12px);
  }

  .badge--live,
  .badge--urgent {
    height: 24px;
    padding-inline: 8px;
    border-radius: 6px;
    font-size: 14px;
  }

  .badge--live {
    gap: 8px;
  }

  .news-card__time {
    top: 14px;
    left: 12px;
    font-size: 9px;
  }

  .news-card__time--after-badge {
    left: 84px;
  }

  .news-card__time--after-live {
    left: 85px;
  }

  .split-news {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .list-item {
    grid-template-columns: minmax(0, 1fr) clamp(92px, 13vw, 168px);
    min-height: clamp(112px, 12.5vw, 147px);
    padding: clamp(14px, 1.6vw, 18px);
  }

  .list-item:first-child {
    min-height: clamp(112px, 12.5vw, 143px);
  }

  .list-item__copy .category {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .list-item__copy .badge {
    height: 22px;
    font-size: 11px;
  }

  .list-item time {
    font-size: 10px;
  }

  .thumb {
    height: clamp(78px, 9.5vw, 112px);
  }

  .minute {
    max-width: none;
  }

  .minute__panel {
    --minute-pad-x: 10px;
    --minute-time-width: 40px;
    --minute-gap: 10px;
    flex: 1 1 0;
    height: auto;
  }

  .minute-item {
    min-height: 76px;
  }

  .minute-item:has(+ .minute-item--with-media)::after {
    bottom: -16px;
  }

  .minute-item--with-media::after {
    top: 16px;
    bottom: -38px;
  }

  .minute-item time,
  .minute-item p {
    font-size: 13px;
  }

  .minute-item time small {
    font-size: 9px;
  }
}

@media (min-width: 521px) and (max-width: 768px) {
  .hero {
    --hero-card-w: calc((100vw - 47px) / 2);
    --hero-card-h: calc(var(--hero-card-w) * 1.25);
  }

  .lead-card {
    height: var(--hero-card-h);
  }

  .video-card,
  .hero__media .video-card:last-child {
    height: var(--hero-card-h);
    aspect-ratio: auto;
  }

  .lead-card__caption {
    height: clamp(66px, 10vw, 82px);
    padding: 10px 16px 12px;
  }

  .floating-next--hero,
  .floating-prev--hero {
    top: calc(var(--hero-card-h) + var(--gap) + (var(--hero-card-h) / 2));
  }
}

@media (max-width: 520px) {
  .shell {
    width: calc(100% - 24px);
  }

  .headline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-card {
    width: 100%;
  }

  .video-card,
  .hero__media .video-card {
    width: calc((100vw - 39px) / 2);
  }

  .hero__media .video-card:last-child {
    width: calc((100vw - 39px) / 2);
  }

  .report-card,
  .reports__rail .report-card {
    width: calc((100vw - 39px) / 2);
  }

  .video-page-card {
    width: 100%;
  }

  .theme-page__grid {
    grid-template-columns: 1fr;
  }

  .floating-next--hero,
  .floating-prev--hero {
    top: calc(346.3125px + 31.25vw);
  }

  .floating-next--reports,
  .floating-prev--reports {
    top: calc(4.267px + 44.444vw);
  }

  .flash__bar {
    min-height: 42px;
  }

  .list-item {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .list-item__copy {
    flex: 1 1 auto;
    min-width: 0;
  }

  .thumb {
    flex: 0 0 104px;
    width: 100%;
    height: 82px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 0;
    padding: 28px 0px 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer__brand p {
    max-width: none;
  }

  .site-footer__nav,
  .site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
    margin-top: -10px;
  }

  .site-footer__nav a,
  .site-footer__links a {
    width: auto;
  }

  .site-footer__socials {
    padding-top: 0;
    margin-bottom: 15px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 4px;
  }

  .site-footer__independent {
    display: none;
  }

  .listing-subjects__grid,
  .listing-subjects__grid.theme-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--post .post-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-scoop-card,
  .page-live .listing-scoop-card {
    flex-basis: calc((100% - var(--gap)) / 2);
    width: calc((100% - var(--gap)) / 2);
  }
}
