:root {
  --navy: #070b12;
  --navy-2: #0a3278;
  --yellow: #f5c400;
  --ink: #172033;
  --muted: #5b6578;
  --line: #e4e8ef;
  --bg: #f4f6fa;
  --card: #fff;
  --max: 72rem;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-wrap: break-word;
}

a {
  color: var(--navy-2);
}

img {
  max-width: 100%;
}

.wrap {
  width: min(var(--max), calc(100% - 1.4rem));
  margin-inline: auto;
}

.draft-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.45rem 0 0;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.draft-switch a {
  color: #9aa8c3;
  text-decoration: none;
}

.draft-switch a.is-on,
.draft-switch a:hover {
  color: var(--yellow);
}

.site-header {
  background: var(--navy);
  color: #fff;
}

.site-header__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.7rem 0 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
}

.brand:hover {
  color: #fff;
}

.brand img {
  width: 2.6rem;
  height: 2.6rem;
}

.brand b {
  font-family: Oswald, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
}

.brand small {
  display: block;
  color: #9aa8c3;
  font-size: 0.72rem;
}

.nav-toggle {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.35rem 0.65rem;
  font: inherit;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-basis: 100%;
  flex-direction: column;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.45rem 0;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.site-nav a[aria-current="page"] {
  color: var(--yellow);
}

.subnav {
  background: var(--navy-2);
}

.subnav__inner {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.subnav a {
  flex: 0 0 auto;
  color: #fff;
  text-decoration: none;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.sponsor-bar {
  background: var(--yellow);
  color: var(--navy);
}

.sponsor-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  min-height: 3.2rem;
  padding: 0.45rem 0;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsor-bar span {
  font-size: 0.78rem;
}

.sponsor-bar strong {
  font-size: 1.15rem;
}

.hero {
  position: relative;
  min-height: min(68vh, 38rem);
  overflow: hidden;
  background: #0a1a3c;
}

.slide {
  position: relative;
  display: none;
  min-height: min(68vh, 38rem);
  align-items: end;
  text-decoration: none;
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 11, 18, 0.55)),
    radial-gradient(circle at 70% 20%, rgba(245, 196, 0, 0.28), transparent 36%),
    linear-gradient(135deg, #102247, #070b12 58%);
}

.slide.is-on {
  display: grid;
}

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

.slide.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 11, 18, 0.42));
  pointer-events: none;
}

.slide--2 {
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 11, 18, 0.55)),
    linear-gradient(160deg, #1554b8, #070b12);
}

.slide--3 {
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 11, 18, 0.55)),
    linear-gradient(200deg, #0c3d8c, #070b12);
}

.hero__label {
  position: relative;
  z-index: 1;
  justify-self: end;
  margin: 0 0 0;
  background: rgba(10, 50, 120, 0.88);
  color: #fff;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.15rem;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
}

.hero__btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero__btn--prev {
  left: 0.6rem;
}

.hero__btn--next {
  right: 0.6rem;
}

.site-main {
  flex: 1;
  padding-bottom: 2.8rem;
}

.section,
.page {
  padding-top: 1.8rem;
}

.section h2 {
  margin: 0 0 1rem;
  color: var(--navy-2);
  font-family: Oswald, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.tiles {
  display: grid;
  gap: 1rem;
}

.tile {
  display: grid;
  background: var(--card);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(16, 32, 51, 0.06);
}

.tile:hover h3 {
  color: var(--navy);
}

.tile__media {
  overflow: hidden;
  min-height: 11.5rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(245, 196, 0, 0.28), transparent 40%),
    linear-gradient(145deg, #16356d, #070b12);
}

.tile:nth-child(2) .tile__media {
  background: linear-gradient(160deg, #1c4fd6, #070b12);
}

.tile:nth-child(3) .tile__media {
  background: linear-gradient(200deg, #0a3278, #071833);
}

.tile:nth-child(4) .tile__media {
  background: linear-gradient(140deg, #f5c400, #0a3278);
}

.tile:nth-child(5) .tile__media {
  background: linear-gradient(180deg, #102247, #070b12);
}

.tile__media img {
  display: block;
  width: 100%;
  height: 11.5rem;
  object-fit: cover;
}

.article-photo {
  display: block;
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  margin: 0 0 1rem;
}

.tile__body {
  padding: 0.9rem 1rem 1.05rem;
}

.tile h3 {
  margin: 0 0 0.45rem;
  color: var(--navy-2);
  font-size: 1.12rem;
  line-height: 1.28;
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tile time {
  display: block;
  margin-top: 0.7rem;
  color: #8a93a3;
  font-size: 0.8rem;
}

.page h1 {
  margin: 0 0 0.6rem;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
}

.lede {
  color: var(--muted);
}

.panel {
  background: var(--card);
  padding: 1rem;
}

.partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.partners span {
  display: grid;
  place-items: center;
  min-height: 4.2rem;
  background: var(--card);
  color: var(--navy-2);
  font-family: Oswald, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.site-footer {
  background: var(--navy);
  color: #9aa8c3;
  padding: 1.1rem 0;
  font-size: 0.85rem;
}

.site-footer a {
  color: #fff;
}

@media (min-width: 600px) {
  .tiles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    display: flex;
    flex-basis: auto;
    flex-direction: row;
    gap: 1.1rem;
  }

  .partners {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 960px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
