:root {
  --bg: #eef3f8;
  --bg-deep: #dde7f2;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --surface-tint: rgba(247, 250, 253, 0.92);
  --ink: #132033;
  --muted: #617187;
  --line: rgba(19, 32, 51, 0.12);
  --accent: #d96c2f;
  --accent-strong: #b55220;
  --accent-soft: rgba(217, 108, 47, 0.09);
  --navy: #183153;
  --navy-soft: rgba(24, 49, 83, 0.08);
  --gold: #b5892b;
  --shadow: 0 20px 48px rgba(24, 34, 52, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --bg-photo: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(24, 49, 83, 0.1), transparent 24%),
    radial-gradient(circle at top right, rgba(217, 108, 47, 0.09), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 243, 248, 0.86)),
    url("https://images.unsplash.com/photo-1461896836934-ffe607ba8211?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: multiply;
}

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

button,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.front-header,
.site-header,
.sport-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.1rem;
}

.front-strip-date-row {
  display: flex;
  justify-content: center;
  padding: 0.1rem 0 0.45rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.front-strip {
  display: block;
  padding: 0.45rem 0 0.55rem;
}

.front-strip-date {
  text-align: center;
}

.front-strip-scores {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.1rem;
  scrollbar-width: thin;
}

.front-strip-loading {
  white-space: nowrap;
}

.score-league-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #f8fbff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
}

.score-league-mlb {
  background: linear-gradient(135deg, #0b2a4a, #d33b3b);
}

.score-league-nba {
  background: linear-gradient(135deg, #9a3412, #f59e0b);
}

.score-league-nhl {
  background: linear-gradient(135deg, #111827, #4b5563);
}

.score-league-nfl {
  background: linear-gradient(135deg, #5a3117, #c97b2c);
}

.score-chip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  white-space: nowrap;
  flex: 0 0 auto;
}

.score-chip-status {
  color: var(--accent-strong);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.score-chip-matchup {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.score-chip-league {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.masthead {
  padding: 1rem 0 0.45rem;
  text-align: center;
  border-bottom: 3px solid var(--ink);
}

.masthead-kicker,
.masthead-tagline {
  margin: 0;
}

.masthead-kicker {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.masthead-title {
  margin: 0.15rem 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 9vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.masthead-tagline {
  max-width: 44rem;
  margin-inline: auto;
  padding-bottom: 0.95rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.masthead-byline {
  padding-bottom: 0.7rem;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.topbar {
  position: sticky;
  top: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.topbar.is-resting {
  position: relative;
  top: 0;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand,
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}

.brand-home {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-home-copy {
  line-height: 1;
}

.brand-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(24, 49, 83, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.brand-social-icon {
  width: 21px;
  height: 21px;
  display: block;
}

.brand-social-link:hover,
.brand-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(24, 49, 83, 0.28);
  background: var(--navy);
  color: #f8fbff;
}

.brand-scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(1px);
  text-shadow: 0 6px 14px rgba(24, 34, 52, 0.12);
  animation: scroll-nudge 1.8s ease-in-out infinite;
}

.brand-home:hover .brand-scroll-cue,
.brand-home:focus-visible .brand-scroll-cue {
  color: var(--accent-strong);
  transform: translate(2px, 3px);
}

@keyframes scroll-nudge {
  0%,
  100% {
    transform: translateY(1px);
  }

  50% {
    transform: translate(2px, 4px);
  }
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.topbar-home,
.topbar-league,
.topbar-dropdown-toggle,
.dropdown-sport-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.topbar-league {
  background: transparent;
}

.topbar-home.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #f8fbff;
}

.topbar-dropdown {
  position: relative;
}

.topbar-dropdown[open] {
  z-index: 12;
}

.topbar-dropdown-toggle {
  list-style: none;
  gap: 0.55rem;
  cursor: pointer;
  user-select: none;
  background: transparent;
}

.topbar-dropdown-toggle::-webkit-details-marker {
  display: none;
}

.topbar-chevron {
  font-size: 0.95rem;
  transition: transform 160ms ease;
}

.topbar-dropdown[open] .topbar-chevron {
  transform: rotate(180deg);
}

.topbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(760px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 52px rgba(16, 24, 40, 0.14);
}

.dropdown-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.dropdown-heading p,
.dropdown-heading span {
  margin: 0;
}

.dropdown-heading p {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.dropdown-heading span {
  max-width: 24rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: right;
}

.dropdown-sport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.dropdown-sport-link {
  justify-content: flex-start;
  gap: 0.7rem;
  min-height: 54px;
  border-radius: 18px;
  background: rgba(247, 250, 253, 0.98);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  font-weight: 700;
}

.dropdown-sport-link.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #f8fbff;
}

.dropdown-sport-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 34px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--navy-soft);
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.dropdown-sport-link.is-active .dropdown-sport-mark {
  background: rgba(255, 255, 255, 0.18);
  color: #f8fbff;
}

.topbar-home:hover,
.topbar-home:focus-visible,
.topbar-dropdown-toggle:hover,
.topbar-dropdown-toggle:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: #f8fbff;
  transform: translateY(-2px);
}

.topbar-league:hover,
.topbar-league:focus-visible,
.dropdown-sport-link:hover,
.dropdown-sport-link:focus-visible,
.article-link:hover,
.hub-link:hover,
.snapshot-head a:hover,
.section-cover:hover {
  transform: translateY(-2px);
}

.topbar-league:hover,
.topbar-league:focus-visible {
  background: var(--navy-soft);
  border-color: rgba(24, 49, 83, 0.18);
  color: var(--navy);
}

.dropdown-sport-link:hover,
.dropdown-sport-link:focus-visible {
  background: var(--navy-soft);
  border-color: rgba(24, 49, 83, 0.18);
  color: var(--navy);
}

.front-page {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.home-visual-page {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-top: 1rem;
}

.masthead-home-visual {
  padding-bottom: 1.1rem;
}

.visual-hero,
.logo-launchpad {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.visual-hero::before,
.logo-launchpad::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/U%20S%20Armed%20Forces%20supports%20NFL%20game%20%288111035%29.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  pointer-events: none;
}

.visual-hero > *,
.logo-launchpad > * {
  position: relative;
  z-index: 1;
}

.visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 1rem;
  padding: 1rem;
}

.visual-hero-main,
.visual-promo,
.home-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 6px);
  box-shadow: var(--shadow);
}

.visual-hero-main {
  min-height: 460px;
}

.visual-hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(18, 32, 51, 0.08), rgba(18, 32, 51, 0.76)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/NBA%20Game.jpg");
  background-size: cover;
  background-position: center;
}

.visual-hero-copy,
.visual-promo-copy,
.home-poster-copy {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 1;
  color: #f8fbff;
}

.visual-hero-copy .panel-label,
.visual-promo-copy .panel-label,
.home-poster-copy .panel-label {
  color: rgba(248, 251, 255, 0.76);
}

.visual-hero-copy h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.94;
  max-width: 8ch;
}

.visual-hero-copy p:last-child,
.visual-promo-copy,
.home-poster-copy {
  line-height: 1.55;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(248, 251, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f8fbff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-action-pill:hover,
.hero-action-pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(248, 251, 255, 0.52);
}

.visual-promo-copy h3,
.home-poster-copy h3 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 0.96;
}

.visual-hero-side {
  display: grid;
  gap: 1rem;
}

.visual-promo {
  min-height: 220px;
}

.visual-promo::before,
.home-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(18, 32, 51, 0.12), rgba(18, 32, 51, 0.76)), var(--promo-photo);
  background-size: cover;
  background-position: center;
}

.visual-promo-college {
  --promo-photo: url("https://commons.wikimedia.org/wiki/Special:FilePath/Little%20Rock%20vs.%20UT%20Arlington%20men%27s%20basketball%202020%2009%20%28in-game%20action%29.jpg");
}

.visual-promo-baseball {
  --promo-photo: url("https://commons.wikimedia.org/wiki/Special:FilePath/Taichung%20Intercontinental%20Baseball%20Stadium01.jpg");
}

.visual-promo-football {
  --promo-photo: url("https://images.unsplash.com/photo-1508098682722-e99c643e7485?auto=format&fit=crop&w=1200&q=80");
}

.visual-promo-basketball {
  --promo-photo: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1200&q=80");
}

.logo-launchpad {
  padding: 1.1rem;
}

.logo-launchpad-compact {
  width: 100%;
  margin: 0 auto;
  padding: 0.9rem;
}

.logo-launchpad-compact .section-heading {
  padding-bottom: 0.65rem;
}

.logo-launchpad-compact .logo-button-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.55rem;
}

.logo-launchpad-compact .logo-button {
  gap: 0.35rem;
  min-height: 108px;
  padding: 0.65rem 0.45rem;
  border-radius: 18px;
}

.logo-launchpad-compact .logo-mark {
  min-width: 54px;
  min-height: 54px;
  padding: 0.45rem;
  font-size: 1.2rem;
}

.logo-launchpad-compact .logo-name {
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.home-blank-space {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.home-blank-space::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.92)),
    linear-gradient(90deg, rgba(24, 49, 83, 0.02), rgba(217, 108, 47, 0.03), rgba(24, 49, 83, 0.02));
  pointer-events: none;
}

.home-blank-space > * {
  position: relative;
  z-index: 1;
}

.home-magazine-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(96px, auto);
  gap: 0.85rem;
  padding: 0.95rem;
}

.home-magazine-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 190px;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(13, 20, 33, 0.1), rgba(13, 20, 33, 0.86)),
    var(--magazine-photo);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.home-magazine-card:hover,
.home-magazine-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 42px rgba(24, 34, 52, 0.14);
}

.home-magazine-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.04), rgba(12, 18, 28, 0.82));
}

.home-magazine-card > * {
  position: relative;
  z-index: 1;
}

.home-magazine-hero {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 420px;
}

.home-magazine-tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 420px;
}

.home-magazine-wide {
  grid-column: span 6;
  min-height: 210px;
}

.home-magazine-headlines {
  grid-column: span 12;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.home-magazine-card .panel-label,
.home-magazine-meta,
.home-magazine-summary,
.home-magazine-headlines p {
  color: rgba(248, 251, 255, 0.88);
}

.home-magazine-card .panel-label {
  margin-bottom: 0.35rem;
}

.home-magazine-card h2,
.home-magazine-card h3 {
  margin: 0 0 0.55rem;
  color: #f8fbff;
  line-height: 1.02;
}

.home-magazine-hero h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  max-width: 11ch;
}

.home-magazine-tall h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  max-width: 12ch;
}

.home-magazine-wide h3 {
  font-size: clamp(1.3rem, 2.15vw, 1.8rem);
  max-width: 15ch;
}

.home-magazine-summary {
  margin: 0 0 0.65rem;
  max-width: 36rem;
  font-size: 0.94rem;
  line-height: 1.5;
}

.home-magazine-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-magazine-headlines .section-heading-paper {
  padding-bottom: 0.65rem;
  margin-bottom: 0.7rem;
}

.home-magazine-headline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.home-magazine-headline {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.home-magazine-headline:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-magazine-headline h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  line-height: 1.08;
}

.home-magazine-headline p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.article-julio-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(13, 20, 33, 0.14), rgba(13, 20, 33, 0.84)),
    var(--article-photo);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.article-julio-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.06), rgba(12, 18, 28, 0.8));
}

.article-julio-hero > * {
  position: relative;
  z-index: 1;
}

.article-julio-hero .panel-label,
.article-julio-hero p,
.article-julio-hero h2 {
  color: #f8fbff;
}

.article-julio-hero h2 {
  margin: 0 0 0.7rem;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.article-julio-hero p:last-child {
  margin: 0;
  max-width: 42rem;
  line-height: 1.6;
}

.article-julio-notes {
  margin-top: 0;
}


.logo-button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.logo-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 168px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  text-align: center;
}

.logo-button:hover,
.logo-button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(24, 34, 52, 0.12);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 92px;
  padding: 0.9rem;
  border-radius: 999px;
  color: #f8fbff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(18, 32, 51, 0.18);
}

.logo-name {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.logo-button-college .logo-mark {
  background: linear-gradient(135deg, #183e9f, #2e66d3);
}

.logo-button-baseball .logo-mark {
  background: linear-gradient(135deg, #0b2a4a, #d33b3b);
}

.logo-button-soccer .logo-mark {
  background: linear-gradient(135deg, #153a67, #0f766e);
}

.logo-button-hockey .logo-mark {
  background: linear-gradient(135deg, #20232a, #5b6472);
}

.logo-button-ufc .logo-mark {
  background: linear-gradient(135deg, #111111, #c0392b);
}

.logo-button-golf .logo-mark {
  background: linear-gradient(135deg, #0f5132, #c79c2c);
}

.logo-button-football .logo-mark {
  background: linear-gradient(135deg, #5a3117, #c97b2c);
}

.logo-button-basketball .logo-mark {
  background: linear-gradient(135deg, #9a3412, #f59e0b);
}

.logo-button-tennis .logo-mark {
  background: linear-gradient(135deg, #0f766e, #65a30d);
}

.logo-button-racing .logo-mark {
  background: linear-gradient(135deg, #111827, #ef4444);
}

.logo-button-wrestling .logo-mark {
  background: linear-gradient(135deg, #4c1d95, #dc2626);
}

.logo-button-boxing .logo-mark {
  background: linear-gradient(135deg, #7f1d1d, #ef4444);
}

.logo-button-volleyball .logo-mark {
  background: linear-gradient(135deg, #1d4ed8, #f59e0b);
}

.home-poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.home-poster {
  min-height: 280px;
  transition: transform 160ms ease;
}

.home-poster-copy {
  inset: auto 1.1rem 1.1rem 1.1rem;
}

.home-poster:hover,
.home-poster:focus-visible,
.visual-promo:hover,
.visual-promo:focus-visible,
.visual-hero-main:hover,
.visual-hero-main:focus-visible {
  transform: translateY(-3px);
}

.home-poster-soccer {
  --promo-photo: url("https://commons.wikimedia.org/wiki/Special:FilePath/Soccer%20match.jpg");
}

.home-poster-hockey {
  --promo-photo: url("https://commons.wikimedia.org/wiki/Special:FilePath/DerekDorsett.jpg");
}

.home-poster-ufc {
  --promo-photo: url("https://commons.wikimedia.org/wiki/Special:FilePath/UFC%20129.jpg");
}

.home-poster-golf {
  --promo-photo: url("https://commons.wikimedia.org/wiki/Special:FilePath/Gary%20Woodland%20at%202015%20PGA%20Championship.jpg");
}

.home-poster-football {
  --promo-photo: url("https://images.unsplash.com/photo-1508098682722-e99c643e7485?auto=format&fit=crop&w=1200&q=80");
}

.home-poster-basketball {
  --promo-photo: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1200&q=80");
}

.home-poster-tennis {
  --promo-photo: url("https://images.unsplash.com/photo-1542144582-1ba00456b5e3?auto=format&fit=crop&w=1200&q=80");
}

.home-poster-racing {
  --promo-photo: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80");
}

.welcome-banner,
.front-column,
.lead-story-panel,
.front-secondary,
.front-secondary-column,
.paper-section,
.sport-hub-card,
.snapshot-panel,
.briefing-card,
.sport-hero,
.section-intro-card,
.section-feed-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.welcome-banner::before,
.front-column::before,
.lead-story-panel::before,
.front-secondary-column::before,
.paper-section::before,
.sport-hub-card::before,
.snapshot-panel::before,
.briefing-card::before,
.sport-hero::before,
.section-intro-card::before,
.section-feed-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88)),
    var(--bg-photo);
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  pointer-events: none;
}

.welcome-banner > *,
.front-column > *,
.lead-story-panel > *,
.front-secondary-column > *,
.paper-section > *,
.sport-hub-card > *,
.snapshot-panel > *,
.briefing-card > *,
.sport-hero > *,
.section-intro-card > *,
.section-feed-shell > * {
  position: relative;
  z-index: 1;
}

.welcome-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 1.25rem;
  padding: 1.4rem;
  --bg-photo: url("https://images.unsplash.com/photo-1508098682722-e99c643e7485?auto=format&fit=crop&w=1600&q=80");
}

.welcome-copy h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.welcome-copy p:last-child {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.7;
}

.welcome-stats {
  display: grid;
  gap: 0.85rem;
}

.welcome-stat {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(24, 49, 83, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
}

.welcome-stat span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
}

.welcome-stat p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.front-lead {
  display: grid;
  gap: 1.25rem;
}

.front-lead-magazine {
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.5fr) minmax(250px, 0.82fr);
  align-items: start;
}

.front-column,
.lead-story-panel,
.front-secondary-column {
  padding: 1.15rem;
}

.front-column {
  min-height: 100%;
}

.front-column-left {
  --bg-photo: url("https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1400&q=80");
}

.front-column-right {
  --bg-photo: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1400&q=80");
}

.column-head,
.section-heading-paper {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.front-mini-list,
.news-column-list,
.magazine-note-stack {
  display: grid;
}

.front-mini-list,
.news-column-list,
.magazine-note-stack {
  gap: 0.95rem;
  padding-top: 0.85rem;
}

.mini-story,
.news-column-story,
.magazine-note {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.mini-story:last-child,
.news-column-story:last-child,
.magazine-note:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mini-story-kicker,
.hub-kicker,
.eyebrow,
.panel-label {
  margin: 0 0 0.35rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mini-story h3,
.news-column-story h3,
.magazine-note h3,
.snapshot-head h3,
.hub-copy h3,
.section-cover-copy h3 {
  margin: 0 0 0.45rem;
  font-size: 1.42rem;
  line-height: 1.08;
}

.mini-story p,
.news-column-story p,
.magazine-note p,
.briefing-card p,
.sport-hero-side p,
.section-intro-card p,
.hero-text,
.article-summary,
.hub-copy p,
.snapshot-head a,
.empty-state,
.loading-state {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.lead-story {
  display: grid;
  gap: 1rem;
}

.lead-story-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 8px);
  box-shadow: 0 12px 28px rgba(24, 34, 52, 0.08);
}

.lead-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lead-story-copy h2 {
  margin: 0.4rem 0 0.7rem;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.lead-summary {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.front-secondary {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
  gap: 1.25rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.briefing-card {
  padding: 1rem;
  --bg-photo: url("https://images.unsplash.com/photo-1518091043644-c1d4457512c6?auto=format&fit=crop&w=1400&q=80");
}

.paper-section {
  padding: 1.1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.75rem;
}

.sport-hub-grid,
.snapshot-grid,
.articles-grid,
.section-cover-grid,
.section-section-grid {
  display: grid;
  gap: 1rem;
}

.sport-hub-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.snapshot-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.articles-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.section-cover-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section-section-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section-cover {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 160ms ease;
}

.section-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(18, 24, 38, 0.1), rgba(18, 24, 38, 0.72)), var(--cover-photo);
  background-size: cover;
  background-position: center;
}

.section-cover-copy {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 1;
  color: #f8fbff;
}

.section-cover-copy .panel-label {
  color: rgba(248, 251, 255, 0.76);
}

.section-cover-college {
  --cover-photo: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1200&q=80");
}

.section-cover-baseball {
  --cover-photo: url("https://images.unsplash.com/photo-1508344928928-7165b67de128?auto=format&fit=crop&w=1200&q=80");
}

.section-cover-soccer {
  --cover-photo: url("https://images.unsplash.com/photo-1518091043644-c1d4457512c6?auto=format&fit=crop&w=1200&q=80");
}

.section-cover-hockey {
  --cover-photo: url("https://images.unsplash.com/photo-1547347298-4074fc3086f0?auto=format&fit=crop&w=1200&q=80");
}

.section-cover-ufc {
  --cover-photo: url("https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?auto=format&fit=crop&w=1200&q=80");
}

.section-cover-golf {
  --cover-photo: url("https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=1200&q=80");
}

.sport-hub-card,
.snapshot-panel,
.article-card,
.section-intro-card,
.section-feed-shell {
  padding: 1.15rem;
}

.sport-hub-card {
  --bg-photo: url("https://images.unsplash.com/photo-1461896836934-ffe607ba8211?auto=format&fit=crop&w=1400&q=80");
}

.hub-visual {
  position: relative;
  height: 170px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.hub-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.74));
}

.hub-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  padding: 0.4rem 0.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.hub-copy {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.article-card {
  position: relative;
  overflow: hidden;
}

.article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    var(--card-photo);
  background-size: cover;
  background-position: center;
  opacity: 0.36;
  pointer-events: none;
}

.article-card > * {
  position: relative;
  z-index: 1;
}

.article-card[data-feed-card="world"] {
  --card-photo: url("https://images.unsplash.com/photo-1461896836934-ffe607ba8211?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="college"] {
  --card-photo: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="baseball"] {
  --card-photo: url("https://images.unsplash.com/photo-1508344928928-7165b67de128?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="soccer"] {
  --card-photo: url("https://images.unsplash.com/photo-1518091043644-c1d4457512c6?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="hockey"] {
  --card-photo: url("https://images.unsplash.com/photo-1547347298-4074fc3086f0?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="mma"] {
  --card-photo: url("https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="golf"] {
  --card-photo: url("https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="football"] {
  --card-photo: url("https://images.unsplash.com/photo-1508098682722-e99c643e7485?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="basketball"] {
  --card-photo: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="tennis"] {
  --card-photo: url("https://images.unsplash.com/photo-1542144582-1ba00456b5e3?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="racing"] {
  --card-photo: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="wrestling"] {
  --card-photo: url("https://images.unsplash.com/photo-1511886929837-354d827aae26?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="boxing"] {
  --card-photo: url("https://images.unsplash.com/photo-1517438984742-1262db08379e?auto=format&fit=crop&w=1200&q=80");
}

.article-card[data-feed-card="volleyball"] {
  --card-photo: url("https://images.unsplash.com/photo-1612872087720-bb876e2e67d1?auto=format&fit=crop&w=1200&q=80");
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.article-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--navy-soft);
  color: var(--navy);
}

.article-link,
.hub-link,
.snapshot-head a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

.hub-link {
  color: var(--accent-strong);
}

.snapshot-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.75rem;
}

.magazine-section {
  gap: 1.2rem;
}

.sport-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: 1rem;
  padding: 1.5rem;
}

.sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="baseball"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1508344928928-7165b67de128?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="soccer"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1518091043644-c1d4457512c6?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="hockey"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1547347298-4074fc3086f0?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="mma"] .sport-hero-rich,
body[data-sport="ufc"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="golf"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="football"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1508098682722-e99c643e7485?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="basketball"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="tennis"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1542144582-1ba00456b5e3?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="racing"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="wrestling"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1511886929837-354d827aae26?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="boxing"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1517438984742-1262db08379e?auto=format&fit=crop&w=1600&q=80");
}

body[data-sport="volleyball"] .sport-hero-rich {
  --bg-photo: url("https://images.unsplash.com/photo-1612872087720-bb876e2e67d1?auto=format&fit=crop&w=1600&q=80");
}

.sport-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.sport-hero-side {
  align-self: end;
  padding: 1rem;
  border: 1px solid rgba(24, 49, 83, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.section-intro-card {
  --bg-photo: url("https://images.unsplash.com/photo-1508098682722-e99c643e7485?auto=format&fit=crop&w=1400&q=80");
}

.section-intro-card h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section-feed-shell {
  --bg-photo: url("https://images.unsplash.com/photo-1461896836934-ffe607ba8211?auto=format&fit=crop&w=1600&q=80");
}

.section-articles {
  margin-top: 0.4rem;
}

.empty-state,
.loading-state {
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(24, 49, 83, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
  .topbar,
  .welcome-banner,
  .sport-hero,
  .front-lead-magazine,
  .front-secondary,
  .visual-hero {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: start;
    flex-direction: column;
  }

  .topbar-actions,
  .topbar-links {
    justify-content: start;
  }

  .brand-cluster {
    flex-wrap: wrap;
  }

  .topbar-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .topbar-dropdown {
    width: 100%;
  }

  .topbar-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0.7rem;
  }

  .dropdown-heading {
    align-items: start;
    flex-direction: column;
  }

  .dropdown-heading span {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 1320px);
    padding-top: 0.5rem;
  }

  .masthead-title {
    font-size: clamp(2.9rem, 15vw, 4.8rem);
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .front-strip {
    padding-top: 0.35rem;
  }

  .front-strip-scores {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .welcome-banner,
  .front-column,
  .lead-story-panel,
  .front-secondary-column,
  .paper-section,
  .sport-hub-card,
  .snapshot-panel,
  .briefing-card,
  .sport-hero,
  .section-intro-card,
  .section-feed-shell {
    padding: 1rem;
    border-radius: 22px;
  }

  .visual-hero-main {
    min-height: 340px;
  }

  .logo-launchpad-compact {
    width: 100%;
  }

  .logo-launchpad-compact .logo-button-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .home-blank-space {
    min-height: 760px;
  }

  .home-magazine-grid {
    grid-template-columns: 1fr;
  }

  .home-magazine-hero,
  .home-magazine-tall,
  .home-magazine-wide,
  .home-magazine-headlines {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .home-poster {
    min-height: 230px;
  }

  .snapshot-head {
    flex-direction: column;
  }

  .section-cover {
    min-height: 210px;
  }
}
