:root {
  --red: #ed1c24;
  --red-deep: #b8131a;
  --gold: #c6ba82;
  --ink: #211f1a;
  --muted: #615c54;
  --line: #e8ded3;
  --paper: #ffffff;
  --soft: #fbf5ed;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

body::before {
  content: "";
  display: block;
  height: 10px;
  background: var(--red);
}

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

.site-header {
  display: flex;
  justify-content: center;
  padding: 44px 24px 28px;
  background: var(--paper);
}

.brand-logo {
  width: 280px;
}

.announcement {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.2fr);
  gap: 56px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.announcement-intro {
  align-self: start;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.date {
  margin: 0 0 28px;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--red);
  font-size: 3.45rem;
  line-height: 1.02;
  font-weight: 700;
}

.announcement-copy {
  max-width: 700px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1.72;
}

.announcement-copy p {
  margin: 0;
}

.announcement-copy p + p {
  margin-top: 26px;
}

.announcement-copy p:first-child::first-letter {
  color: var(--red);
  float: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.7rem;
  line-height: 0.8;
  margin: 10px 10px 0 0;
}

.legacy {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin: 0;
  padding: 42px max(24px, calc((100% - 1120px) / 2));
  color: var(--paper);
  background: var(--red);
}

.legacy-number {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 0.95;
}

.legacy p:last-child {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  line-height: 1.65;
}

.legacy strong {
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 36px 24px 44px;
  background: var(--soft);
}

.site-footer img {
  width: 280px;
  mix-blend-mode: multiply;
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 34px;
  }

  .brand-logo {
    width: 220px;
  }

  .announcement {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 32px, 680px);
    padding: 42px 0;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.55rem;
  }

  .announcement-copy {
    font-size: 1rem;
  }

  .announcement-copy p:first-child::first-letter {
    font-size: 3.7rem;
  }

  .legacy {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .legacy-number {
    font-size: 2.65rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .brand-logo {
    width: 190px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .announcement-copy p:first-child::first-letter {
    float: none;
    display: inline;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
  }

  .site-footer img {
    width: 220px;
  }
}

@media print {
  body::before,
  .legacy {
    display: none;
  }

  .site-header,
  .site-footer {
    padding: 18px 0;
  }

  .announcement {
    width: 100%;
    padding: 28px 0;
  }
}
