:root {
  --ink: #17355f;
  --purple: #5b2d87;
  --cream: #fbf5e8;
  --paper: #fffdf7;
  --teal: #17777a;
  --gold: #d49a1a;
  --line: #d9cfbd;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)),
    repeating-linear-gradient(
      0deg,
      #f6efdf 0,
      #f6efdf 31px,
      #e9dfcb 32px
    );
}

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

a { color: var(--purple); }

.wrap {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  padding: 64px 0 48px;
  text-align: center;
  background: var(--paper);
  border-bottom: 6px solid var(--purple);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: Arial Black, Impact, sans-serif;
  font-size: clamp(56px, 11vw, 122px);
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--ink);
}

.tagline {
  margin: 18px 0 0;
  font-size: clamp(21px, 3vw, 32px);
  color: var(--purple);
  font-weight: 700;
}

main.wrap { padding: 48px 0 72px; }

.intro {
  max-width: 760px;
  margin-bottom: 56px;
  font-size: 21px;
  line-height: 1.6;
}

h2, h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
}

h2 { font-size: clamp(30px, 4vw, 46px); margin: 0 0 12px; }
h3 { font-size: clamp(25px, 3vw, 38px); margin: 8px 0 14px; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 24px;
}

.issue-card,
.coming-card,
.about {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 rgba(23,53,95,.13);
}

.issue-card {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) 1.15fr;
  overflow: hidden;
}

.cover-link {
  background: #eee6d7;
  padding: 20px;
}

.cover-link img {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.issue-copy {
  padding: clamp(28px, 5vw, 58px);
  align-self: center;
  font-size: 20px;
  line-height: 1.55;
}

.issue-number {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--purple);
  color: white;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: .04em;
}

.button {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.button:hover { background: var(--purple); }

.coming { margin-top: 64px; }

.coming-card {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) 1.15fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
}

.coming-card img {
  border-radius: 10px;
  max-height: 420px;
  width: 100%;
  object-fit: cover;
  object-position: left center;
}

.about {
  margin-top: 64px;
  padding: clamp(28px, 5vw, 52px);
  font-size: 19px;
  line-height: 1.6;
}

.small { font-size: 15px; line-height: 1.5; }

footer {
  padding: 28px 0;
  background: var(--ink);
  color: white;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

footer p { margin: 6px 0; }

.issue-header {
  background: var(--ink);
  color: white;
  padding: 16px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.issue-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.issue-nav a { color: white; text-decoration: none; }

.issue-page {
  width: min(1200px, calc(100% - 24px));
  margin: 28px auto 48px;
}

.issue-page img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 38px rgba(0,0,0,.22);
}

@media (max-width: 760px) {
  .issue-card,
  .coming-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .coming-card img {
    max-height: none;
  }

  .issue-nav {
    font-size: 14px;
  }
}
