:root {
  --ink: #101318;
  --muted: #5c6675;
  --soft: #f4f6f9;
  --line: #dde3ec;
  --white: #ffffff;
  --red: #d71920;
  --red-dark: #a80f18;
  --navy: #0b1220;
  --blue: #1b4ed8;
  --gold: #f3b61f;
  --footer: #080d16;
  --shadow: 0 18px 48px rgba(16, 19, 24, .11);
  --max: 1180px;
  --font: "Inter", "Segoe UI", Arial, sans-serif;
  --display: "Arial Black", "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }

.container, .site-header__inner, .utility__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.utility {
  background: var(--navy);
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.utility__inner {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.utility b { color: var(--gold); }
.utility a { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-right: auto;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  box-shadow: 0 12px 24px rgba(215,25,32,.18);
  font-size: 18px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: #313946;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active {
  background: #fff0f1;
  color: var(--red);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.btn {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(215,25,32,.22);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.breaking {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.breaking__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.breaking__label {
  flex: 0 0 auto;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.breaking__track {
  min-width: 0;
  overflow: hidden;
  color: #303844;
  font-size: 13px;
  font-weight: 800;
}
.breaking__move {
  display: inline-flex;
  gap: 34px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}

.section { padding: 74px 0; }
.section-tight { padding: 46px 0; }
.section-soft { background: var(--soft); }
.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 26px;
  margin-bottom: 30px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
.section__head h2, .page-hero h1, .hero h1 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -.055em;
  line-height: .94;
}
.section__head h2 { font-size: clamp(34px, 4.8vw, 58px); max-width: 760px; }
.section__head p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  padding: 38px 0 46px;
  align-items: start;
}
.lead-card, .story-card, .feature-card, .category-card, .policy-card, .contact-panel, .form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(16,19,24,.05);
}
.lead-card { position: relative; min-height: 610px; }
.lead-card img { height: 610px; object-fit: cover; }
.lead-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.05));
}
.label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.label.alt { background: var(--navy); }
.label.light { background: #fff0f1; color: var(--red); }
.hero h1 {
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 76px);
}
.lead-card p {
  max-width: 700px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.65;
}
.lead-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.side-stack { display: grid; gap: 18px; }
.story-card {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 170px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.story-card:hover, .feature-card:hover, .category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.story-card img { height: 100%; object-fit: cover; }
.story-card__body { padding: 18px; }
.story-card h2, .story-card h3, .feature-card h3, .category-card h3 {
  margin: 10px 0 8px;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.story-card h2 { font-size: 24px; }
.story-card p, .feature-card p, .category-card p, .policy-card p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}
.meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.category-strip {
  background: var(--navy);
  color: var(--white);
}
.category-strip__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.sport-tab {
  padding: 20px 12px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.sport-tab:hover { background: var(--red); color: var(--white); }
.sport-tab.active { background: var(--red); color: var(--white); }
.sport-tab.active:hover { background: var(--red); color: var(--white); }
.pagination {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--white);
  text-decoration: none;
}
.page-link.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.page-link:hover {
  border-color: var(--red);
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.feature-card img { height: 230px; object-fit: cover; }
.feature-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.feature-card h3 { font-size: 25px; }
.feature-card__footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.read-link { color: var(--red); font-weight: 950; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-card {
  position: relative;
  min-height: 265px;
  color: var(--white);
}
.category-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.category-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,.08));
}
.category-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 20px;
}
.category-card h3 { font-size: 25px; }
.category-card p { color: rgba(255,255,255,.78); }

.split-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.split-layout img {
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.copy-block h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: .96;
  letter-spacing: -.055em;
}
.copy-block p, .copy-block li {
  color: var(--muted);
  line-height: 1.78;
  font-size: 16px;
}
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
}

.newsletter-band, .cta-band {
  border-radius: 8px;
  padding: clamp(26px, 5vw, 48px);
  background: linear-gradient(135deg, var(--navy), #19253a);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.newsletter-band h2, .cta-band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: .96;
  letter-spacing: -.055em;
}
.newsletter-band p, .cta-band p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 640px;
}

.page-hero {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fafc, var(--white));
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 { font-size: clamp(42px, 6vw, 76px); }
.page-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 180px;
}

.blog-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.search-box {
  width: min(100%, 430px);
  display: flex;
  gap: 8px;
}
.search-box input {
  min-height: 46px;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  outline: none;
}
.blog-detail {
  max-width: 890px;
  margin: 0 auto;
}
.blog-detail h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5.8vw, 70px);
  line-height: .96;
  letter-spacing: -.055em;
}
.blog-detail__hero {
  margin: 28px 0;
  border-radius: 8px;
  max-height: 520px;
  object-fit: cover;
}
.blog-detail p, .blog-detail li {
  color: var(--muted);
  line-height: 1.86;
  font-size: 18px;
}
.blog-detail h2 {
  margin-top: 38px;
  font-size: 32px;
  letter-spacing: -.035em;
}
.empty-state {
  grid-column: 1 / -1;
  padding: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.contact-panel {
  padding: 30px;
  color: var(--white);
  background: var(--navy);
}
.contact-panel h2 { margin: 0 0 14px; font-size: 30px; letter-spacing: -.035em; }
.contact-panel p, .contact-panel a { color: rgba(255,255,255,.78); line-height: 1.7; }
.contact-item { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.form-card, .policy-card { padding: clamp(22px, 4vw, 34px); }
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 12px;
  font-weight: 950;
  color: #3b4655;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px 14px;
  outline: none;
}
.field textarea { min-height: 138px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(215,25,32,.09);
}
.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.checkbox input { width: 18px; height: 18px; accent-color: var(--red); margin-top: 2px; }
.form-error { display: none; color: #b42318; font-weight: 850; margin: 0; }
.form-error.show { display: block; }
.form-note {
  display: none;
  margin: 0;
  border: 1px solid #badbcc;
  background: #e9f7ef;
  color: #0f5132;
  border-radius: 8px;
  padding: 12px;
}
.form-note.show { display: block; }

.policy-card {
  max-width: 940px;
  margin: 0 auto;
}
.policy-card h2 { margin-top: 34px; font-size: 30px; letter-spacing: -.035em; }
..policy-card ul { color: var(--muted); line-height: 1.8; }
.policy-card .btn { margin-top: 28px; }

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 16px;
}
.not-found h1 {
  margin: 0;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(90px, 18vw, 180px);
  letter-spacing: -.08em;
  line-height: .8;
}
.not-found p { color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 620px; }

.footer {
  background: var(--footer);
  color: var(--white);
  padding: 58px 0 26px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}
.footer h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -.05em;
}
.footer h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer p, .footer a {
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  font-size: 14px;
}
.footer a { display: block; margin: 7px 0; }
.footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.48);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  background: var(--navy);
  color: var(--white);
  border-top: 3px solid var(--red);
}
.cookie-banner.show { display: block; }
.cookie-banner__inner {
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Ensure outline button is visible on dark cookie banner */
.cookie-banner .btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
}
.cookie-banner .btn-outline:hover { background: rgba(255,255,255,.04); }

.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.show { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,13,22,.74); }
.modal__panel {
  position: relative;
  margin: 22px auto;
  width: min(640px, calc(100% - 28px));
  max-height: calc(100vh - 44px);
  overflow: auto;
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.modal__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: .98;
  letter-spacing: -.05em;
}
.modal-close {
  border: 1px solid var(--line);
  background: var(--soft);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 950;
  cursor: pointer;
}

.foxlike-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #e8edf4;
}
.foxlike-header__inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.foxlike-brand {
  display: inline-grid;
  line-height: .78;
  color: #073b6f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 31px;
  font-weight: 950;
  letter-spacing: -.09em;
  text-transform: uppercase;
  margin-right: 8px;
}
.foxlike-brand span {
  color: #0b5794;
}
.foxlike-nav {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
  flex: 1;
}
.foxlike-nav a {
  color: #073b6f;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}
.foxlike-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-search {
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: #7e9ab6;
  font-size: 22px;
  cursor: pointer;
}
.mini-login, .watch-btn {
  min-height: 30px;
  border: 0;
  border-radius: 2px;
  padding: 0 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}
.mini-login { background: #073b6f; }
.watch-btn { background: #d71920; }

.foxlike-home {
  padding: 0 0 72px;
}
.foxlike-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 295px;
  gap: 42px;
  align-items: start;
}
.foxlike-title {
  margin: 0 0 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 46px;
  font-weight: 950;
  letter-spacing: -.06em;
  color: #202020;
}
.foxlike-section-title {
  margin: 0 0 16px;
  color: #1e2938;
  font-size: 18px;
  letter-spacing: -.02em;
}
.top-story-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}
.top-tile {
  border-right: 1px solid #e5e9ef;
  padding-right: 14px;
}
.top-tile:last-child {
  border-right: 0;
  padding-right: 0;
}
.top-tile img {
  height: 112px;
  object-fit: cover;
  margin-bottom: 10px;
}
.top-tile span {
  display: inline-block;
  color: #e2141b;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
  margin-right: 6px;
}
.top-tile small {
  color: #8792a1;
  font-size: 10px;
  font-weight: 800;
}
.top-tile h3 {
  margin: 5px 0 0;
  color: #003b70;
  font-size: 16px;
  line-height: 1.16;
  letter-spacing: -.03em;
}
.foxlike-feed {
  display: grid;
  gap: 0;
}
.feed-item {
  border-top: 1px solid #e5e9ef;
  padding: 19px 0;
}
.feed-item a {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: start;
}
.feed-item img {
  height: 104px;
  object-fit: cover;
}
.feed-item time {
  color: #8c96a4;
  font-size: 11px;
  font-weight: 800;
}
.feed-item h3 {
  margin: 4px 0 5px;
  color: #003b70;
  font-size: 18px;
  line-height: 1.16;
  letter-spacing: -.025em;
}
.feed-item p {
  margin: 0;
  color: #66707c;
  font-size: 13px;
  line-height: 1.45;
}
.right-rail {
  position: sticky;
  top: 76px;
}
.right-rail h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.03em;
}
.right-rail > p {
  margin: 3px 0 10px;
  color: #8a94a1;
  font-size: 11px;
}
.quote-search {
  display: grid;
  grid-template-columns: 1fr 36px;
  margin-bottom: 14px;
}
.quote-search input {
  min-height: 34px;
  border: 1px solid #d7dce4;
  padding: 0 10px;
  font-size: 12px;
}
.quote-search button {
  border: 0;
  background: #45a319;
  color: var(--white);
  font-weight: 950;
  cursor: pointer;
}
.market-card {
  position: relative;
  overflow: hidden;
  padding: 11px 15px 12px;
  margin-bottom: 12px;
  background: #0b622b;
  color: var(--white);
}
.market-card strong {
  display: block;
  margin: -11px -15px 8px;
  padding: 7px 10px;
  background: #f2f4f6;
  color: #1e2938;
  font-size: 12px;
  text-transform: uppercase;
}
.market-card b {
  display: block;
  font-size: 28px;
  letter-spacing: -.04em;
}
.market-card span {
  color: #88ef78;
  font-size: 12px;
  font-weight: 900;
}
.market-card i {
  position: absolute;
  right: 12px;
  bottom: 20px;
  width: 96px;
  height: 42px;
  background:
    linear-gradient(90deg, transparent 0 18%, #2bde41 19% 21%, transparent 22% 35%, #2bde41 36% 39%, transparent 40%),
    repeating-linear-gradient(0deg, transparent, transparent 12px, rgba(255,255,255,.3) 13px);
  clip-path: polygon(0 55%, 12% 63%, 19% 22%, 29% 83%, 41% 42%, 55% 66%, 70% 34%, 100% 44%, 100% 100%, 0 100%);
  opacity: .9;
}
.foxlike-footer {
  background: #003b70;
  padding-top: 50px;
}
.foxlike-footer .footer__grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 36px;
}
.foxlike-footer h3 {
  color: var(--white);
  font-size: 14px;
  text-transform: none;
  letter-spacing: -.02em;
}
.foxlike-footer a {
  margin: 5px 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,255,255,.86);
}
.foxlike-footer .footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: rgba(255,255,255,.68);
}
.footer-logo {
  font-family: var(--display);
  color: var(--white);
  font-size: 24px;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__grid, .section, .page-hero, .feature-card, .story-card { animation: fadeUp .6s ease both; }
}

@media (max-width: 1040px) {
  .menu-toggle { display: inline-flex; }
  .site-header__inner { flex-wrap: wrap; padding: 14px 0; }
  .nav-links, .header-actions { display: none; width: 100%; }
  .site-header.open .nav-links, .site-header.open .header-actions { display: flex; flex-wrap: wrap; }
  .foxlike-header__inner { flex-wrap: wrap; padding: 10px 0; }
  .foxlike-nav, .foxlike-actions { display: none; width: 100%; }
  .foxlike-header.open .foxlike-nav, .foxlike-header.open .foxlike-actions { display: flex; flex-wrap: wrap; }
  .foxlike-grid { grid-template-columns: 1fr; }
  .right-rail { position: static; }
  .top-story-row { grid-template-columns: repeat(2, 1fr); }
  .foxlike-footer .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .hero__grid, .split-layout, .contact-grid { grid-template-columns: 1fr; }
  .lead-card, .lead-card img { min-height: 520px; height: 520px; }
  .magazine-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-strip__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .utility__inner, .section__head, .newsletter-band, .cta-band, .footer__bottom, .cookie-banner__inner, .blog-tools {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .brand { font-size: 25px; }
  .foxlike-brand { font-size: 28px; }
  .top-story-row { grid-template-columns: 1fr; }
  .top-tile { border-right: 0; border-bottom: 1px solid #e5e9ef; padding: 0 0 16px; }
  .feed-item a { grid-template-columns: 128px 1fr; gap: 12px; }
  .feed-item img { height: 88px; }
  .foxlike-title { font-size: 42px; }
  .foxlike-footer .footer__grid { grid-template-columns: 1fr 1fr; }
  .foxlike-footer .footer__bottom { grid-template-columns: 1fr; }
  .story-card { grid-template-columns: 1fr; }
  .story-card img { height: 220px; }
  .lead-card, .lead-card img { min-height: 470px; height: 470px; }
  .lead-card__content { padding: 22px; }
  .magazine-grid, .category-grid, .category-strip__grid, .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .page-hero { padding: 56px 0; }
  .btn, .search-box, .search-box .btn, .header-actions .btn, .lead-actions .btn, .newsletter-band .btn, .cta-band .btn, .cookie-actions, .cookie-actions .btn { width: 100%; }
  .cookie-actions { flex-direction: column; }
}
