

:root {
  color-scheme: light;
  --background: #e6ddbf;
  --page: #fbfbfb;
  --ink: #202020;
  --soft-ink: #59534b;
  --accent: hsl(209 20% 52%);
  --accent-dark: rgb(17, 29, 40);
  --rule: #d6c05f;
  --pink-rule: #be87b0;
  --edge: #9c9c9c;
  --shadow: 0 0 0 1px rgba(0, 0, 0, 0.18), 0 8px 28px rgba(42, 33, 17, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 20px;
  background:
    radial-gradient(ellipse at 14% 12%, rgba(255, 255, 255, 0.74) 0 8%, transparent 22%),
    radial-gradient(ellipse at 82% 10%, rgba(255, 255, 255, 0.72) 0 9%, transparent 24%),
    radial-gradient(ellipse at 20% 42%, rgba(255, 255, 255, 0.66) 0 10%, transparent 27%),
    radial-gradient(ellipse at 72% 40%, rgba(255, 255, 255, 0.62) 0 9%, transparent 25%),
    radial-gradient(ellipse at 12% 78%, rgba(255, 255, 255, 0.7) 0 11%, transparent 28%),
    radial-gradient(ellipse at 88% 82%, rgba(255, 255, 255, 0.68) 0 10%, transparent 28%),
    repeating-radial-gradient(circle at 50% 50%, rgba(112, 103, 68, 0.11) 0 1px, transparent 1px 5px),
    #e7ddbd;
  background-attachment: fixed;
}

a {
  color: inherit;
}

.page-frame {
  width: min(790px, calc(100% - 28px));
  min-height: 100vh;
  margin: 28px auto 0;
  background: var(--page);
  border: 1px solid var(--edge);
  box-shadow: var(--shadow);
}

.site-header {
  padding: 12px 8px 0;
  text-align: center;
}

.submission-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--accent-dark);
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.submission-banner strong {
  font-weight: 700;
}

.submission-banner a {
  text-underline-offset: 3px;
}

.masthead {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.masthead::before {
  position: absolute;
  z-index: 0;
  top: 44px;
  left: 16px;
  right: 16px;
  height: 19px;
  content: "";
  background: var(--accent);
}

.masthead-small {
  display: block;
  position: relative;
  z-index: 1;
  width: max-content;
  margin-left: 20px;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 4.8vw, 2.25rem);
  font-weight: 800;
  line-height: 0.85;
  text-transform: lowercase;
}

.masthead-large {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: -4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(4.15rem, 14.2vw, 7.65rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: lowercase;
  -webkit-text-fill-color: var(--page);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.12);
}

.masthead-rule {
  display: block;
  margin-top: 8px;
  padding: 0 8px 9px;
  border-bottom: 1px solid var(--rule);
  font-family: Georgia, serif;
  font-size: clamp(0.7rem, 2vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 5vw, 42px);
  padding: 7px 0 8px;
  border-bottom: 1px solid var(--rule);
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent-dark);
}

main {
  padding: 0 22px;
}

.archive-list {
  padding: 26px 0 64px;
}

.issue-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 8px 0 42px;
  text-align: center;
}

.issue-card + .issue-card {
  border-top: 1px solid var(--pink-rule);
  padding-top: 30px;
}

.issue-copy {
  max-width: 680px;
}

.issue-label {
  margin: 0 0 4px;
  color: var(--soft-ink);
  font-size: 1rem;
  font-style: italic;
}

.issue-copy h2,
.empty-state h2,
.about-body h1 {
  margin: 0;
  color: var(--accent);
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.issue-copy h2 {
  font-size: clamp(1.55rem, 4.4vw, 2rem);
}

.issue-copy h2 a {
  text-decoration: none;
}

.issue-copy h2 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.issue-copy p:not(.issue-label) {
  max-width: 560px;
  margin: 8px auto 2px;
  color: var(--soft-ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.issue-cover {
  display: block;
  width: min(280px, 76vw);
  aspect-ratio: 8.5 / 11;
  overflow: hidden;
  color: inherit;
  background:
    linear-gradient(120deg, rgba(17, 29, 40, 0.18), transparent 38%),
    linear-gradient(0deg, rgba(214, 192, 95, 0.2), rgba(214, 192, 95, 0.2)),
    #f8f5ec;
  border: 1px solid #cfcfcf;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.issue-cover:hover {
  outline: 3px solid rgba(17, 29, 40, 0.24);
  outline-offset: 4px;
}

.issue-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.cover-fallback span {
  color: var(--accent-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 9vw, 3.6rem);
  font-weight: 800;
  line-height: 0.95;
}

.issue-link {
  color: var(--accent-dark);
  font-size: 1.35rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.issue-link:hover {
  color: var(--ink);
}

.empty-state,
.about-body {
  max-width: 610px;
  margin: 0 auto;
  padding: 44px 0 76px;
}

.empty-state h2,
.about-body h1 {
  font-size: clamp(1.8rem, 5vw, 2.35rem);
}

.empty-state p,
.about-body p {
  margin: 18px auto 0;
  color: var(--soft-ink);
  font-size: 1.22rem;
  line-height: 1.45;
}

.contact-card {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--pink-rule);
  text-align: center;
}

.contact-card h2 {
  margin: 0;
  color: var(--accent);
  font-size: 1.35rem;
}

.contact-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
}

.contact-links a,
.footer-contact a {
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

.about-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--pink-rule);
  font-size: 1rem !important;
}

code {
  padding: 0.05em 0.24em;
  background: #f3f3f3;
  border: 1px solid #ddd;
  font-size: 0.88em;
}

.site-footer {
  padding: 14px 12px 24px;
  border-top: 1px solid var(--rule);
  color: var(--soft-ink);
  font-size: 0.95rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-contact {
  margin-top: 6px !important;
}

@media (max-width: 560px) {
  body {
    font-size: 18px;
  }

  .page-frame {
    width: 100%;
    margin-top: 0;
    border-left: 0;
    border-right: 0;
  }

  .site-header {
    padding-top: 10px;
  }

  .submission-banner {
    align-items: center;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
  }

  .masthead::before {
    top: 34px;
    left: 10px;
    right: 10px;
    height: 13px;
  }

  .masthead-large {
    -webkit-text-stroke-width: 1px;
  }

  .masthead-rule {
    font-size: 0.66rem;
  }

  .site-nav {
    gap: 28px;
    font-size: 1rem;
  }

  main {
    padding: 0 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}