:root {
  --fox-blue: #0b3b73;
  --fox-blue-dark: #082c55;
  --fox-red: #e61e26;
  --ink: #0f1720;
  --muted: #58616d;
  --line: #dde4ea;
  --bg: #f4f7fb;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(10, 30, 60, 0.08);
  --radius: 24px;
  --content-width: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(204, 230, 255, 0.9), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
  overflow-x: hidden;
}

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

.fox-header {
  z-index: 40;
  background: var(--fox-blue);
  box-shadow: 0 10px 25px rgba(8, 24, 48, 0.18);
}

.fox-header__topline {
  height: 4px;
  background: var(--fox-red);
}

.fox-header__bar {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: calc(var(--content-width) + 48px);
  margin: 0 auto;
  padding: 10px 24px;
}

.fox-header__brand {
  flex: 0 0 auto;
}

.fox-header__logo {
  object-fit: contain;
}

.fox-header__logo--desktop {
  width: 114px;
}

.fox-header__logo--mobile {
  display: none;
  width: 82px;
}

.fox-nav {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.fox-nav--desktop {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  white-space: nowrap;
}

.fox-nav--mobile {
  display: none;
  padding: 0 20px 18px;
  background: var(--fox-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fox-nav--mobile.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fox-nav__item {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  cursor: default;
}

.fox-nav__item::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.55);
  vertical-align: middle;
}

.fox-nav__item:nth-child(3)::after,
.fox-nav__item:nth-child(7)::after,
.fox-nav__item:nth-child(10)::after,
.fox-nav__item:nth-child(11)::after,
.fox-nav__item:nth-child(12)::after {
  border: 0;
  margin-left: 0;
}

.fox-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.fox-actions--mobile {
  display: none;
}

.fox-search {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  position: relative;
}

.fox-search::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 8px;
  height: 3px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 999px;
}

.fox-chip {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: default;
}

.fox-chip--ghost {
  background: rgba(255, 255, 255, 0.12);
}

.fox-chip--accent {
  background: var(--fox-red);
}

.fox-menu-toggle {
  display: grid;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  align-content: center;
  justify-items: center;
  cursor: pointer;
}

.fox-menu-toggle span {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
}

.page-shell {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 30px 24px 64px;
}

.article-column {
  max-width: 900px;
  margin: 0 auto;
}

.story-card--single {
  padding: 36px;
}

.article-title {
  margin: 0;
  font-size: clamp(1.9rem, 3.1vw, 2.95rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-intro {
  margin-top: 0;
  font-size: 1.16rem;
  line-height: 1.8;
  font-weight: 700;
  color: var(--fox-blue);
}

.article-inline-image {
  margin: 24px 0 28px;
}

.article-inline-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 35px rgba(13, 30, 57, 0.14);
}

.article-inline-image--secondary {
  margin-top: 28px;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(11, 59, 115, 0.06), rgba(230, 30, 38, 0.05)),
    var(--card);
  box-shadow: var(--shadow);
}

.hero-kicker,
.section-heading__eyebrow,
.comments-headline__eyebrow,
.sidebar-card__label {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fox-red);
}

.hero-copy h1,
.comments-headline h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-deck {
  margin: 16px 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fox-blue);
}

.hero-lead {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 59, 115, 0.08);
  color: var(--fox-blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 35px rgba(13, 30, 57, 0.18);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  margin-top: 30px;
}

.story-card,
.sidebar-card,
.comments-box {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-card {
  padding: 32px;
}

.story-card > p,
.story-section p,
.sidebar-card p,
.urgency-banner p {
  margin: 0 0 16px;
  font-size: 1.03rem;
  line-height: 1.9;
  color: #1d2731;
}

.story-card > p:last-child,
.story-section p:last-child,
.sidebar-card p:last-child,
.urgency-banner p:last-child {
  margin-bottom: 0;
}

.story-section + .story-section,
.story-section + .info-panel,
.info-panel + .story-section {
  margin-top: 34px;
}

.story-section h2,
.sidebar-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.story-section h3 {
  margin: 20px 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--fox-blue);
}

.story-section--cta h2 {
  margin-bottom: 12px;
}

.story-highlight {
  font-size: 1.05rem;
  color: #f43b24 !important;
}

.info-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.info-panel__block {
  padding: 24px;
  border-radius: 20px;
  background: #f7fafc;
  border: 1px solid #e5edf4;
}

.info-panel__block--accent {
  background: linear-gradient(180deg, #0b3b73, #0f4c92);
  color: #fff;
  border: 0;
}

.info-panel__block--accent p {
  color: #f3f7ff;
}

.info-panel__block h3 {
  margin-top: 0;
}

.news-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.news-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.7;
}

.news-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fox-red);
  transform: translateY(-50%);
}

.news-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
}

.sidebar-card {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(11, 59, 115, 0.05), rgba(230, 30, 38, 0.03)),
    var(--card);
}

.sidebar-card img {
  width: 100%;
  margin-top: 18px;
  border-radius: 18px;
}

.cta-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: var(--fox-blue-dark);
}

.cta-box__button {
  display: inline-block;
  margin-bottom: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--fox-red);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-box p {
  color: #dce8f8;
  margin-bottom: 0;
}

.product-section,
.comments-shell {
  margin-top: 34px;
}

.product-section {
  padding: 30px;
  border-radius: calc(var(--radius) + 4px);
  background: var(--card);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 820px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.section-heading p {
  margin: 14px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.cta-strip {
  display: flex;
  justify-content: center;
  margin: 30px 0 26px;
}

.cta-link {
  display: inline-block;
}

.cta-strip img {
  width: min(680px, 100%);
  height: auto;
  filter: drop-shadow(0 20px 24px rgba(170, 68, 0, 0.2));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.product-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.product-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff, #eef4f8);
  border: 1px solid #e2ebf2;
  min-height: 180px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.urgency-banner {
  margin-top: 24px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0a2f5d, #0f4d93);
}

.urgency-banner p {
  color: #eef6ff;
}

.urgency-banner__chip {
  display: inline-flex;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-summary-box {
  margin-top: 30px;
  padding: 34px 28px;
  border-radius: 56px;
  background: #e9ebfa;
}

.story-center-lead {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
  color: #101010;
}

.story-center-lead + .story-center-lead {
  margin-top: 28px;
}

.story-update {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #edf8f0;
}

.story-update img {
  width: 30px;
  height: auto;
  flex: 0 0 auto;
}

.story-update p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.5;
  font-weight: 800;
  color: #101010;
}

.story-update--wide {
  border-radius: 20px;
}

.cta-strip--bottom {
  margin-top: 34px;
  margin-bottom: 0;
}

.comments-headline {
  margin-bottom: 20px;
}

.comments-headline h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.comments-box {
  padding: 0 28px 24px;
}

.comments-box__toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--line);
  font-family: Tahoma, Arial, sans-serif;
  font-size: 14px;
  color: #3b5998;
}

.comments-box__toolbar span:last-child {
  font-weight: 700;
}

.comment-row {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #e2e2e2;
}

.comment-row--first {
  border-top: 0;
}

.comment-avatar {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  margin-top: 6px;
  border-radius: 4px;
  object-fit: cover;
}

.comment-body {
  min-width: 0;
  font-family: Tahoma, Arial, sans-serif;
}

.comment-name {
  margin: 0 0 5px;
  font-size: 13px;
  line-height: 14px;
  color: #3b5998;
  font-weight: 700;
}

.comment-text {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 15px;
  color: #1a1a1a;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  line-height: 1.3;
  color: #3b5998;
}

.comment-time {
  color: gray;
  border-bottom: 1px dotted gray;
}

.simple-footer {
  background:
    linear-gradient(180deg, #0d417f 0%, #082f5d 100%);
  margin-top: 24px;
  overflow: hidden;
}

.simple-footer__topline {
  height: 4px;
  background: linear-gradient(90deg, #d71920, #f04646);
}

.simple-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 28px 24px 30px;
}

.simple-footer__logo {
  width: 170px;
}

.simple-footer__logo--mobile {
  display: none;
  width: 82px;
}

.simple-footer__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.simple-footer__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.simple-footer__tags span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-footer__caption {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 1180px) {
  .fox-nav--desktop {
    gap: 16px;
  }

  .fox-nav__item {
    font-size: 15px;
  }

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

  .sidebar-card {
    position: static;
  }

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

@media (max-width: 900px) {
  .fox-header__bar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .fox-header__logo--desktop,
  .fox-nav--desktop,
  .fox-actions--desktop {
    display: none;
  }

  .fox-header__logo--mobile,
  .fox-actions--mobile {
    display: flex;
  }

  .fox-header__logo--mobile {
    display: block;
  }

  .fox-header__bar {
    justify-content: space-between;
  }

  .fox-actions--mobile {
    gap: 10px;
  }

  .fox-chip {
    padding: 10px 14px;
    font-size: 14px;
  }

  .page-shell {
    padding-top: 22px;
  }

  .story-card--single {
    padding: 26px;
  }

  .story-summary-box {
    border-radius: 34px;
    padding: 26px 18px;
  }

  .story-center-lead + .story-center-lead {
    margin-top: 22px;
  }

  .story-update {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell,
  .fox-header__bar,
  .simple-footer__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .story-card,
  .comments-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy h1,
  .comments-headline h2,
  .section-heading h2 {
    letter-spacing: -0.03em;
  }

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

  .simple-footer__inner {
    flex-direction: column;
    align-items: center;
  }

  .simple-footer__caption {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .fox-header__logo--mobile {
    width: 82px;
  }

  .fox-chip {
    padding: 8px 10px;
    font-size: 12px;
  }

  .fox-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-card,
  .story-card,
  .sidebar-card,
  .product-section,
  .comments-box {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .story-card > p,
  .story-section p,
  .section-heading p {
    font-size: 0.98rem;
  }

  .article-title {
    font-size: 1.95rem;
  }

  .product-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .story-summary-box {
    border-radius: 28px;
  }

  .story-center-lead {
    font-size: 1.4rem;
  }
}

@media (max-width: 420px) {
  .fox-header__logo--mobile {
    width: 72px;
  }

  .fox-actions--mobile {
    gap: 8px;
  }

  .fox-chip {
    padding: 7px 8px;
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .simple-footer__logo--mobile {
    width: 72px;
  }
}

@media (max-width: 900px) {
  .simple-footer__logo--desktop {
    display: none;
  }

  .simple-footer__logo--mobile {
    display: block;
  }
}
