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

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
}

a {
  color: #821247;
  font-weight: 700;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 3px solid rgb(214 25 118 / 28%);
  outline-offset: 4px;
}

header,
main,
footer {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid rgb(12 9 11 / 12%);
}

.brand {
  color: #0c090b;
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
}

.home-link {
  font-size: 0.86rem;
}

main {
  padding: 90px 0 110px;
}

.eyebrow {
  margin: 0 0 20px;
  color: #9f1557;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.effective-date {
  margin: 28px 0 76px;
  color: #6d6267;
  font-size: 0.9rem;
}

section {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1.35fr);
  gap: 46px;
  padding: 42px 0;
  border-top: 1px solid rgb(12 9 11 / 12%);
}

h2 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

section p {
  grid-column: 2;
  margin: 0;
  color: #51474c;
  font-size: 1.02rem;
  line-height: 1.75;
}

section p + p {
  margin-top: -24px;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 38px 0 54px;
  color: #6d6267;
  border-top: 1px solid rgb(12 9 11 / 12%);
  font-size: 0.86rem;
}

footer p {
  margin: 0;
}

@media (max-width: 680px) {
  header,
  main,
  footer {
    width: min(calc(100% - 28px), 920px);
  }

  header {
    min-height: 76px;
  }

  main {
    padding: 68px 0 86px;
  }

  .effective-date {
    margin-bottom: 54px;
  }

  section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 0;
  }

  section p {
    grid-column: 1;
  }

  section p + p {
    margin-top: -8px;
  }
}
