:root {
  --night: #091b32;
  --night-soft: #17304b;
  --mint: #9ce7cc;
  --mint-bright: #c9f7e7;
  --paper: #f6faf8;
  --white: #ffffff;
  --ink: #102238;
  --muted: #5c6b78;
  --line: #cadbd5;
  --signal: #f56f55;
  --sun: #f0d568;
  --max: 1240px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.search-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: var(--signal);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--night);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--night);
  color: var(--white);
}

.topline {
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.topline-inner,
.header-inner,
.section-inner,
.footer-inner,
.article-shell,
.category-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.topline-inner {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
}

.topline-inner p {
  margin: 0;
}

.issue-mark {
  color: var(--mint);
}

.header-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 34px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  font-size: 29px;
  font-weight: 700;
}

.brand-dot {
  width: 9px;
  height: 9px;
  background: var(--mint);
  box-shadow: 13px -9px 0 var(--signal);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--mint);
}

.search-trigger {
  min-width: 46px;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.search-trigger:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.search-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  display: block;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: currentColor;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  background: var(--night);
  color: white;
  padding: 0 0 38px;
}

.hero-stage {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  height: 620px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--night-soft);
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9,27,50,.16);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(780px, 84%);
  padding: 32px 38px 38px;
  background: rgba(9,27,50,.94);
  border-top: 5px solid var(--mint);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
}

.hero-deck {
  max-width: 680px;
  margin: 14px 0 20px;
  color: #e6efec;
  font-size: 17px;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  color: var(--muted);
  font-size: 13px;
}

.hero .meta-line {
  color: #c5d6d1;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--night);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero .read-link {
  color: var(--mint);
}

.read-link::after {
  content: "→";
  font-size: 19px;
  transition: transform .2s ease;
}

.read-link:hover::after {
  transform: translateX(4px);
}

.category-ribbon {
  background: var(--mint);
  color: var(--night);
}

.category-ribbon .section-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 130px repeat(3, 1fr);
  align-items: stretch;
}

.ribbon-label,
.category-ribbon a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid rgba(9,27,50,.25);
}

.ribbon-label {
  padding-left: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-ribbon a {
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.25;
}

.category-ribbon a:last-child {
  border-right: 0;
}

.category-ribbon a::after {
  content: "↗";
  font-size: 18px;
}

.category-ribbon a:hover {
  background: var(--mint-bright);
}

.latest {
  padding: 86px 0 100px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-title {
  margin: 0;
  font-size: 35px;
  line-height: 1.16;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 54px;
}

.story-stack {
  display: grid;
  gap: 34px;
}

.story-card {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  min-width: 0;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.story-card img {
  width: 100%;
  height: 152px;
  object-fit: cover;
}

.story-card h2,
.story-card h3 {
  margin: 6px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.story-card p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.category-tag {
  color: #315c51;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.side-feature {
  align-self: start;
  position: sticky;
  top: 24px;
  background: var(--night);
  color: white;
}

.side-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.side-feature-copy {
  padding: 30px;
}

.side-feature h2 {
  margin: 8px 0 12px;
  font-size: 29px;
  line-height: 1.17;
}

.side-feature p {
  color: #c7d6d2;
}

.side-feature .category-tag,
.side-feature .read-link {
  color: var(--mint);
}

.manifesto {
  padding: 82px 0;
  background: var(--night);
  color: var(--white);
  overflow: hidden;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.manifesto-kicker {
  margin: 0;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.manifesto h2 {
  margin: 0;
  max-width: 780px;
  font-size: 42px;
  line-height: 1.18;
}

.manifesto p {
  max-width: 690px;
  color: #c7d6d2;
}

.manifesto-markers {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.manifesto-markers span {
  width: 48px;
  height: 7px;
  background: var(--mint);
}

.manifesto-markers span:nth-child(2) {
  background: var(--signal);
}

.manifesto-markers span:nth-child(3) {
  background: var(--sun);
}

.article-hero {
  padding: 58px 0 0;
  background: var(--night);
  color: white;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 28px;
  font-size: 12px;
  color: #b9cac5;
}

.breadcrumb a {
  color: var(--mint);
}

.article-heading {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 50px;
  align-items: end;
  padding-bottom: 42px;
}

.article-heading h1 {
  max-width: 900px;
  margin: 8px 0 20px;
  font-size: 54px;
  line-height: 1.08;
}

.article-number {
  align-self: start;
  color: var(--mint);
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.article-image-wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.article-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 750px) 1fr;
  gap: 48px;
  align-items: start;
  padding: 68px 0 100px;
}

.article-aside {
  position: sticky;
  top: 24px;
  padding-top: 8px;
  font-size: 13px;
}

.article-aside dl {
  margin: 0;
}

.article-aside dt {
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.article-aside dd {
  margin: 3px 0 0;
}

.article-body {
  min-width: 0;
  font-size: 17px;
  line-height: 1.8;
}

.article-body .lead {
  margin-top: 0;
  color: var(--night-soft);
  font-size: 21px;
  line-height: 1.62;
}

.article-body h2 {
  margin: 54px 0 14px;
  font-size: 32px;
  line-height: 1.24;
}

.article-body h3 {
  margin: 35px 0 10px;
  font-size: 23px;
  line-height: 1.3;
}

.article-body h4 {
  margin: 30px 0 8px;
  font-size: 18px;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 26px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--night);
}

.article-body table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

.article-body th,
.article-body td {
  padding: 13px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--night);
  color: white;
}

.article-end {
  padding: 26px;
  border-left: 6px solid var(--mint);
  background: white;
  color: var(--muted);
  font-size: 14px;
}

.article-end strong {
  display: block;
  margin-bottom: 4px;
  color: var(--night);
}

.next-story {
  align-self: end;
  margin-bottom: 10px;
  padding: 24px;
  border-top: 5px solid var(--signal);
  background: white;
}

.next-story span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.next-story a {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  line-height: 1.4;
}

.category-hero {
  padding: 66px 0 64px;
  background: var(--night);
  color: white;
}

.category-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  align-items: end;
}

.category-hero h1 {
  margin: 8px 0 0;
  font-size: 58px;
  line-height: 1.08;
}

.category-hero p {
  margin: 0;
  color: #c5d6d1;
  font-size: 17px;
}

.category-list {
  padding: 70px 0 100px;
}

.category-story {
  display: grid;
  grid-template-columns: 120px minmax(250px, 440px) 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.category-story:first-child {
  border-top: 1px solid var(--line);
}

.category-story .story-index {
  color: var(--mint);
  font-size: 44px;
  font-weight: 700;
}

.category-story img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-story h2 {
  margin: 6px 0 10px;
  font-size: 29px;
  line-height: 1.2;
}

.category-story p {
  color: var(--muted);
}

.empty-category {
  padding: 42px;
  border: 1px solid var(--line);
  background: white;
}

.site-footer {
  padding: 54px 0 30px;
  background: #061424;
  color: #d8e3df;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 42px;
}

.footer-brand {
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.footer-copy {
  max-width: 530px;
  margin: 10px 0 0;
  color: #9fb2ac;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  align-content: start;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #839992;
  font-size: 12px;
}

.search-layer {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  padding: 70px 20px 30px;
  background: rgba(6,20,36,.94);
  overflow-y: auto;
}

.search-layer[aria-hidden="false"] {
  display: block;
}

.search-panel {
  width: min(100%, 820px);
  margin: 0 auto;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.search-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.search-panel h2 {
  margin: 0;
  font-size: 24px;
}

.search-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--night);
  cursor: pointer;
  font-size: 24px;
}

.search-form {
  padding: 28px;
}

.search-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-row input {
  min-width: 0;
  height: 52px;
  border: 1px solid #9eb4ad;
  border-radius: 2px;
  padding: 0 15px;
  color: var(--night);
}

.search-submit {
  min-width: 110px;
  border: 0;
  border-radius: 2px;
  background: var(--night);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.search-submit:hover {
  background: var(--night-soft);
}

.search-status {
  min-height: 25px;
  margin: 18px 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.search-results {
  display: grid;
  gap: 0;
}

.search-result {
  display: block;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.search-result strong {
  display: block;
  margin: 3px 0;
  color: var(--night);
  font-size: 18px;
}

.search-result span {
  color: #315c51;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.search-result p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }

  .header-inner {
    gap: 18px;
  }

  .hero-stage {
    height: 560px;
  }

  .article-layout {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .next-story {
    grid-column: 2;
  }

  .category-story {
    grid-template-columns: 80px 320px 1fr;
  }
}

@media (max-width: 820px) {
  .topline-inner,
  .header-inner,
  .section-inner,
  .footer-inner,
  .article-shell,
  .category-shell,
  .hero-stage,
  .article-image-wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .topline-inner {
    min-height: 32px;
  }

  .topline-inner p:last-child {
    display: none;
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto auto;
  }

  .brand {
    font-size: 23px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 108px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 12px;
    background: var(--night-soft);
    border: 1px solid rgba(255,255,255,.18);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero-stage {
    height: 600px;
  }

  .hero-copy {
    width: calc(100% - 20px);
    padding: 25px 22px 28px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-deck {
    font-size: 15px;
  }

  .category-ribbon .section-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .ribbon-label {
    display: none;
  }

  .category-ribbon a {
    min-height: 56px;
    padding: 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(9,27,50,.2);
  }

  .latest {
    padding: 62px 0 72px;
  }

  .story-grid,
  .manifesto-grid,
  .footer-grid,
  .category-hero-grid {
    grid-template-columns: 1fr;
  }

  .side-feature {
    position: static;
  }

  .manifesto {
    padding: 64px 0;
  }

  .manifesto h2 {
    font-size: 34px;
  }

  .article-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-heading h1 {
    font-size: 42px;
  }

  .article-number {
    display: none;
  }

  .article-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 50px;
  }

  .article-aside {
    position: static;
  }

  .article-aside dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .article-aside dt {
    margin-top: 0;
  }

  .next-story {
    grid-column: auto;
  }

  .category-story {
    grid-template-columns: 66px 240px 1fr;
    gap: 20px;
  }

  .category-story h2 {
    font-size: 24px;
  }
}

@media (max-width: 590px) {
  body {
    font-size: 15px;
  }

  .brand-dot {
    display: none;
  }

  .search-trigger,
  .menu-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  .hero-stage {
    width: 100%;
    height: 570px;
  }

  .hero-stage img {
    object-position: 57% center;
  }

  .hero-copy {
    width: calc(100% - 14px);
    padding: 21px 18px 24px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

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

  .story-grid {
    gap: 44px;
  }

  .story-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 15px;
  }

  .story-card img {
    height: 130px;
  }

  .story-card h2,
  .story-card h3 {
    font-size: 19px;
  }

  .story-card p {
    display: none;
  }

  .side-feature-copy {
    padding: 24px 20px;
  }

  .side-feature h2 {
    font-size: 26px;
  }

  .manifesto-grid {
    gap: 28px;
  }

  .manifesto h2 {
    font-size: 30px;
  }

  .article-hero {
    padding-top: 40px;
  }

  .article-heading h1 {
    font-size: 35px;
  }

  .article-heading {
    padding-bottom: 32px;
  }

  .article-body {
    font-size: 16px;
    line-height: 1.75;
  }

  .article-body .lead {
    font-size: 19px;
  }

  .article-body h2 {
    margin-top: 45px;
    font-size: 27px;
  }

  .article-body h3 {
    font-size: 21px;
  }

  .article-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

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

  .category-hero {
    padding: 48px 0;
  }

  .category-hero h1 {
    font-size: 39px;
  }

  .category-story {
    grid-template-columns: 46px 1fr;
    align-items: start;
  }

  .category-story .story-index {
    font-size: 30px;
  }

  .category-story img {
    grid-column: 2;
    grid-row: 1;
  }

  .category-story-copy {
    grid-column: 2;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .search-layer {
    padding: 16px 10px;
  }

  .search-panel-head,
  .search-form {
    padding: 20px;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .search-submit {
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* visual-quality-baseline-v1 */
img {
  height: auto;
}

.visual-refresh-feed {
  margin-block: clamp(40px, 6vw, 84px);
}

.visual-refresh-feed > :is(
  ul,
  ol,
  [class*="grid"],
  [class*="list"],
  [class*="run"],
  [class*="feed"],
  [class*="articles"],
  [class*="stories"],
  [class*="cards"]
) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2.2vw, 28px) !important;
}

.visual-refresh-feed > :is(
  ul,
  ol,
  [class*="grid"],
  [class*="list"],
  [class*="run"],
  [class*="feed"],
  [class*="articles"],
  [class*="stories"],
  [class*="cards"]
) > * {
  min-width: 0;
}

.visual-refresh-feed img {
  width: 100%;
  height: auto;
  max-height: 260px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 720px) {
  .visual-refresh-feed > :is(
    ul,
    ol,
    [class*="grid"],
    [class*="list"],
    [class*="run"],
    [class*="feed"],
    [class*="articles"],
    [class*="stories"],
    [class*="cards"]
  ) {
    grid-template-columns: 1fr !important;
  }
}

/* visual-quality-targeted-v2 */
:is(h1, h2, h3) {
  overflow-wrap: anywhere;
}

.visual-refresh-feed {
  overflow: hidden;
}

.visual-refresh-feed:has(> article) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 32px) !important;
  align-items: start;
}

.visual-refresh-feed:has(> article) > :is(
  h1, h2, h3, p, header, .section-heading, .section-head, .heading
) {
  grid-column: 1 / -1;
}

.visual-refresh-feed:has(> article) > article {
  display: block !important;
  grid-column: auto !important;
  min-width: 0;
  min-height: 0 !important;
}

.visual-refresh-feed > .visual-refresh-feed {
  grid-column: 1 / -1 !important;
  width: 100%;
}

.visual-refresh-feed :is(
  .story-grid, .article-grid, .post-grid, .card-grid, .cards,
  [class*="article-list"], [class*="story-list"], [class*="post-list"]
) {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 32px) !important;
}

.visual-refresh-feed :is(article, li, [class*="card"]) {
  min-width: 0;
}

.visual-refresh-feed img {
  width: 100% !important;
  height: auto !important;
  max-height: 260px !important;
  aspect-ratio: 16 / 10;
  object-fit: cover !important;
}

@media (max-width: 720px) {
  .visual-refresh-feed:has(> article),
  .visual-refresh-feed :is(
    .story-grid, .article-grid, .post-grid, .card-grid, .cards,
    [class*="article-list"], [class*="story-list"], [class*="post-list"]
  ) {
    grid-template-columns: 1fr !important;
  }
}
