:root {
  color: #f3eee4;
  background: #11111a;
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(237, 178, 82, 0.16), transparent 28rem),
    linear-gradient(135deg, #11111a 0%, #191827 60%, #101016 100%);
}

main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.issue,
.eyebrow,
footer {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.issue {
  margin: 0;
  color: #edb252;
}

.masthead {
  align-self: center;
  max-width: 58rem;
  padding: 4rem 0;
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: #bcb8b2;
  line-height: 1.5;
}

h1 {
  max-width: 8.5ch;
  margin: 0;
  font-size: clamp(4.3rem, 14vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.rule {
  width: min(11rem, 45vw);
  height: 0.35rem;
  margin: clamp(2.5rem, 7vw, 5.5rem) 0 1.5rem;
  background: #edb252;
}

.message {
  max-width: 27ch;
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.35;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #bcb8b2;
  line-height: 1.5;
}

footer p {
  margin: 0;
}

@media (max-width: 520px) {
  .masthead {
    padding: 3rem 0;
  }

  footer {
    display: block;
  }

  footer p + p {
    margin-top: 0.45rem;
  }
}
