:root {
  --bg: #faf9f7;
  --surface: #fffdfb;
  --surface-alt: #f4efea;
  --text: #1f1f1f;
  --muted: #5d5a57;
  --line: rgba(91, 15, 23, 0.12);
  --burgundy: #5b0f17;
  --crimson: #7a1f2b;
  --gold: #c6a15b;
  --gold-soft: rgba(198, 161, 91, 0.14);
  --shadow: 0 24px 70px rgba(47, 19, 24, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1220px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(198, 161, 91, 0.09), transparent 28%),
    radial-gradient(circle at right top, rgba(122, 31, 43, 0.08), transparent 24%),
    linear-gradient(180deg, #fcfbf9 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header,
.site-footer,
.app-main {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
  background: rgba(250, 249, 247, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(91, 15, 23, 0.09);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(47, 19, 24, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--burgundy), var(--crimson));
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy span {
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(91, 15, 23, 0.14);
  background: var(--surface);
  border-radius: 50%;
  gap: 0.35rem;
}

.nav-toggle span {
  width: 1rem;
  height: 1.5px;
  background: var(--burgundy);
  border-radius: 999px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
}

.site-nav a {
  padding: 0.7rem 0.95rem;
  color: var(--muted);
  border-radius: 999px;
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--burgundy);
  background: rgba(91, 15, 23, 0.07);
}

.app-main {
  flex: 1;
  width: min(100%, var(--container));
  padding: 1.5rem 1.25rem 4rem;
}

.page {
  display: grid;
  gap: 1.5rem;
  animation: fadeUp 420ms var(--ease);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(91, 15, 23, 0.98), rgba(122, 31, 43, 0.93)),
    radial-gradient(circle at top right, rgba(198, 161, 91, 0.25), transparent 20%);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -4rem;
  right: -1rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.24), transparent 66%);
}

.hero::after {
  left: -4rem;
  bottom: -5rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(198, 161, 91, 0.14);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
  gap: 1.5rem;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero h1,
.section-heading,
.page-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.93;
  max-width: 10ch;
}

.hero-subtitle {
  max-width: 58ch;
  margin: 1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 160ms var(--ease),
    background 160ms var(--ease),
    border-color 160ms var(--ease),
    color 160ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #fff;
  color: var(--burgundy);
  font-weight: 700;
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost {
  color: var(--burgundy);
  background: rgba(91, 15, 23, 0.05);
  border-color: rgba(91, 15, 23, 0.08);
}

.hero-panel {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(8px);
}

.hero-panel h2 {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

.hero-metrics {
  display: grid;
  gap: 0.8rem;
}

.metric-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-row:last-child {
  border-bottom: 0;
  padding-bottom: 0.2rem;
}

.metric-row strong {
  font-size: 1.8rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.metric-row span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  max-width: 18ch;
  text-align: right;
}

.section {
  padding: 1.4rem 0 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--burgundy);
}

.section-copy {
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.paper-card,
.info-card,
.stat-card,
.timeline-card,
.board-card,
.issue-card,
.news-card,
.page-card,
.form-card,
.guide-card,
.panel {
  background: rgba(255, 253, 251, 0.9);
  border: 1px solid rgba(91, 15, 23, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(47, 19, 24, 0.05);
}

.feature-card {
  grid-column: span 4;
  overflow: hidden;
}

.feature-media,
.paper-media {
  position: relative;
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(91, 15, 23, 0.96), rgba(122, 31, 43, 0.88)),
    linear-gradient(45deg, rgba(198, 161, 91, 0.2), transparent);
}

.feature-media::before,
.paper-media::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top right, rgba(198, 161, 91, 0.34), transparent 28%);
}

.feature-media-content,
.paper-media-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  color: #fff;
}

.cover-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cover-journal {
  align-self: flex-end;
  max-width: 14ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.02;
  text-align: right;
}

.feature-body,
.paper-body,
.info-body,
.board-body,
.issue-body,
.news-body,
.page-body,
.form-body,
.guide-body,
.timeline-body {
  padding: 1rem 1.05rem 1.15rem;
}

.feature-body h3,
.paper-body h3,
.issue-body h3,
.news-body h3,
.page-body h3,
.guide-body h3,
.board-body h3,
.timeline-body h3 {
  margin: 0 0 0.45rem;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
}

.feature-body p,
.paper-body p,
.info-body p,
.board-body p,
.issue-body p,
.news-body p,
.page-body p,
.guide-body p,
.timeline-body p,
.form-body p,
.section-subcopy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.meta-pill,
.tag-pill,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.44rem 0.7rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--burgundy);
  border: 1px solid rgba(198, 161, 91, 0.25);
  font-size: 0.76rem;
  font-weight: 600;
}

.meta-pill.secondary,
.chip.secondary {
  background: rgba(91, 15, 23, 0.05);
  color: var(--muted);
  border-color: rgba(91, 15, 23, 0.08);
}

.paper-card {
  grid-column: span 6;
  overflow: hidden;
}

.paper-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0;
}

.paper-issue {
  color: var(--burgundy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paper-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.08;
  margin: 0.8rem 0 0.6rem;
}

.paper-meta {
  display: grid;
  gap: 0.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.paper-actions,
.issue-actions,
.news-actions,
.page-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--burgundy);
  font-weight: 700;
}

.mini-link::after {
  content: "→";
  transition: transform 160ms var(--ease);
}

.mini-link:hover::after {
  transform: translateX(3px);
}

.info-card,
.stat-card,
.board-card,
.news-card,
.timeline-card,
.guide-card,
.form-card,
.panel {
  overflow: hidden;
}

.info-card {
  grid-column: span 4;
  padding: 1.1rem;
}

.info-card h3,
.stat-card h3 {
  margin-bottom: 0.45rem;
}

.stat-card {
  grid-column: span 3;
  padding: 1.15rem;
  text-align: left;
}

.stat-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: "Playfair Display", Georgia, serif;
  color: var(--burgundy);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.5;
}

.news-card {
  grid-column: span 4;
}

.news-card.featured {
  grid-column: span 6;
}

.news-card time {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.issue-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: 1rem;
  align-items: end;
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(91, 15, 23, 0.96), rgba(122, 31, 43, 0.9)),
    radial-gradient(circle at top right, rgba(198, 161, 91, 0.25), transparent 20%);
  color: #fff;
}

.issue-hero .section-heading {
  color: #fff;
  max-width: 12ch;
}

.issue-hero .page-title {
  color: #fff;
}

.issue-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.issue-card {
  grid-column: span 6;
}

.issue-card article {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 100%;
}

.issue-card .paper-media {
  min-height: 100%;
}

.issue-card .paper-body {
  display: flex;
  flex-direction: column;
}

.issue-card .paper-body p {
  flex: 1;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 1rem;
  align-items: start;
}

.page-card {
  padding: 1.2rem;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--burgundy);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.article-meta .meta-pill {
  background: rgba(91, 15, 23, 0.06);
}

.article-content {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.2rem;
}

.article-section h3 {
  margin: 0 0 0.45rem;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--burgundy);
}

.article-section p,
.article-section li {
  color: var(--muted);
  line-height: 1.8;
}

.article-section ul {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}

.side-nav {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem;
}

.side-nav h3 {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.side-nav a {
  color: var(--muted);
  padding: 0.48rem 0.62rem;
  border-radius: 10px;
}

.side-nav a:hover,
.side-link:hover {
  background: rgba(91, 15, 23, 0.06);
  color: var(--burgundy);
}

.side-link {
  appearance: none;
  border: 0;
  text-align: left;
  background: transparent;
  color: var(--muted);
  padding: 0.48rem 0.62rem;
  border-radius: 10px;
}

.archive-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(91, 15, 23, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  outline: none;
  transition:
    border-color 160ms var(--ease),
    box-shadow 160ms var(--ease),
    transform 160ms var(--ease);
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(91, 15, 23, 0.35);
  box-shadow: 0 0 0 4px rgba(91, 15, 23, 0.08);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.filter-btn {
  border: 1px solid rgba(91, 15, 23, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
}

.filter-btn.active {
  background: rgba(91, 15, 23, 0.08);
  border-color: rgba(91, 15, 23, 0.22);
  color: var(--burgundy);
}

.archive-list {
  display: grid;
  gap: 0.9rem;
}

.archive-item {
  padding: 1rem 1.05rem;
}

.archive-item .archive-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.archive-item h3 {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
}

.archive-item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.submit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1rem;
}

.guide-list {
  display: grid;
  gap: 0.8rem;
}

.guide-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.guide-step strong {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(91, 15, 23, 0.08);
  color: var(--burgundy);
  font-size: 0.88rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--burgundy);
}

.textarea {
  min-height: 160px;
  resize: vertical;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  padding: 1rem 1.05rem;
}

.timeline-card time {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.board-card {
  grid-column: span 4;
}

.board-photo {
  height: 170px;
  background:
    linear-gradient(135deg, rgba(91, 15, 23, 0.98), rgba(122, 31, 43, 0.86)),
    radial-gradient(circle at top right, rgba(198, 161, 91, 0.2), transparent 22%);
}

.board-body .role {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.contact-panel {
  padding: 1.15rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 500ms var(--ease),
    transform 500ms var(--ease);
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 0 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.site-footer strong {
  color: var(--burgundy);
}

.empty-state {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(91, 15, 23, 0.16);
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(198, 161, 91, 0.14);
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.citation {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(91, 15, 23, 0.04);
  border: 1px solid rgba(91, 15, 23, 0.08);
  line-height: 1.8;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.share-row a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(91, 15, 23, 0.06);
  color: var(--burgundy);
  font-weight: 600;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .issue-hero,
  .page-layout,
  .submit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .board-card,
  .news-card,
  .feature-card,
  .paper-card,
  .info-card,
  .stat-card,
  .issue-card {
    grid-column: span 12;
  }

  .archive-toolbar,
  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(250, 249, 247, 0.98);
    border-radius: 24px;
    border: 1px solid rgba(91, 15, 23, 0.1);
    box-shadow: var(--shadow);
  }

  .site-header[data-open="true"] .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-panel {
    margin-top: 0.5rem;
  }

  .form-grid,
  .grid-two,
  .archive-toolbar,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .issue-card article {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: start;
  }

  .paper-card,
  .news-card.featured {
    grid-column: span 12;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.85rem 0.9rem;
  }

  .brand-copy strong {
    max-width: 14ch;
    white-space: normal;
  }

  .app-main {
    padding-inline: 0.85rem;
  }

  .hero,
  .issue-hero,
  .page-card,
  .contact-panel,
  .form-card,
  .guide-card,
  .timeline-card,
  .panel {
    border-radius: 22px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 14vw, 4.2rem);
  }

  .hero-actions,
  .paper-actions,
  .issue-actions,
  .news-actions,
  .page-actions,
  .form-actions,
  .share-row {
    flex-direction: column;
  }

  .btn,
  .share-row a {
    width: 100%;
  }
}
