:root {
  color: #171717;
  background: #f6f4ef;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
}

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

.test-banner {
  padding: 8px 16px;
  background: #f1e6bd;
  color: #554817;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  border-bottom: 1px solid #d9d7d1;
  background: #fff;
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand,
.footer-inner strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.brand span,
.footer-inner strong span {
  color: #c7322b;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px;
}

main {
  overflow: hidden;
}

article {
  padding: 64px 0 96px;
}

.article-header,
.article-body,
.closing-copy {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
}

.section,
.eyebrow {
  margin: 0 0 16px;
  color: #bd312b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.dek {
  margin: 28px 0;
  color: #56534e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.48;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #dedbd4;
  font-size: 13px;
}

.article-meta div:last-child {
  display: grid;
  gap: 3px;
}

.article-meta span {
  color: #77736d;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #171717;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  width: min(1100px, calc(100% - 40px));
  height: 420px;
  margin: 52px auto 48px;
  overflow: hidden;
  background: #183c39;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.hero::before {
  width: 560px;
  height: 560px;
  top: -260px;
  right: -80px;
  background: #d4e8a8;
}

.hero::after {
  width: 300px;
  height: 300px;
  bottom: -170px;
  left: 18%;
  background: #d96f55;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 38px 38px;
}

.hero-copy {
  position: absolute;
  left: clamp(28px, 6vw, 70px);
  bottom: clamp(28px, 7vw, 64px);
  z-index: 1;
  display: grid;
  color: #fff;
}

.hero-copy span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy strong {
  max-width: 600px;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 84px);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.article-body p {
  margin: 0 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.72;
}

.article-body .lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.embed-section {
  width: min(720px, calc(100% - 32px));
  margin: 54px auto 44px;
}

.embed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 0 4px 18px;
}

.embed-heading .eyebrow {
  margin-bottom: 5px;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5b5a55;
  font-size: 12px;
  font-weight: 700;
}

.live-indicator i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #58a66d;
}

.embed-frame {
  height: 720px;
  overflow: hidden;
  border: 1px solid #d3d1cb;
  border-radius: 4px;
  background: #e9e7e1;
  box-shadow: 0 18px 60px rgb(25 31 27 / 15%);
}

.embed-frame amp-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-caption {
  margin: 12px 4px 0;
  color: #6c6962;
  font-size: 12px;
  line-height: 1.5;
}

.closing-copy {
  margin-top: 46px;
}

footer {
  padding: 52px 0;
  background: #171717;
  color: white;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-inner p {
  max-width: 520px;
  margin: 14px 0 0;
  color: #aaa8a2;
  font-size: 13px;
}

@media (max-width: 700px) {
  .header-inner {
    height: 64px;
  }

  nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  article {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .dek {
    font-size: 19px;
  }

  .hero {
    height: 340px;
    margin-top: 40px;
  }

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

  .embed-section {
    width: 100%;
    margin-top: 42px;
  }

  .embed-heading,
  .embed-caption {
    margin-inline: 16px;
  }

  .embed-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  h2 {
    font-size: 32px;
  }

  .embed-frame {
    height: 720px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
