/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Design tokens ─── */
:root {
  --mp-ink:             #1a1208;
  --mp-parchment:       #f7f3ea;
  --mp-cream:           #faf7f0;
  --mp-gold:            #c8963e;
  --mp-gold-light:      #e8c47a;
  --mp-gold-accessible: #7a5c1e; /* dark amber — gold text on light backgrounds (≥4.5:1) */
  --mp-rust:            #8b3a2a;
  --mp-sage:            #4a5e4c;
  --mp-mist:            #e8e2d5;
  --mp-shadow:          rgba(26,18,8,0.10);
}

/* ─── Base ─── */
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--mp-cream);
  color: var(--mp-ink);
  font-size: 16px;
  line-height: 1.6;
}
.inner-section { min-height: 50vh; }
a { color: var(--mp-rust); text-decoration: none; }
a:hover { color: var(--mp-gold); }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ─── Utilities ─── */
.eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mp-gold-accessible);
  margin-bottom: 0.6rem;
}
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--mp-gold);
  margin-top: 0.75rem;
}

/* ─── Navigation ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,243,234,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mp-mist);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; display: block; }
.nav-links {
  display: flex;
  list-style: none;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-links a {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mp-ink);
  opacity: 0.65;
  padding: 0.5rem 0.85rem;
  border-bottom: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--mp-gold-accessible);
  border-bottom-color: var(--mp-gold);
}
.nav-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  background: var(--mp-gold);
  color: var(--mp-ink);
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--mp-ink); color: var(--mp-gold); text-decoration: none; }

/* ─── Hamburger (hidden on desktop) ─── */
.nav-toggle-input { display: none; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--mp-ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle-input:checked + .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-input:checked + .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked + .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Nav menu wrapper ─── */
.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .nav-inner {
    position: relative;
    flex-wrap: nowrap;
    height: 64px;
    padding: 0 1.5rem;
  }
  .nav-logo { flex: 1; }
  .nav-hamburger {
    display: flex;
    margin-left: auto;
    z-index: 101;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--mp-parchment);
    border-top: 1px solid var(--mp-mist);
    box-shadow: 0 8px 24px rgba(26,18,8,0.12);
    padding: 0.5rem 1.5rem 1.5rem;
    z-index: 100;
  }
  .nav-toggle-input:checked ~ .nav-menu { display: flex; }
  .nav-links {
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
  }
  .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--mp-mist);
    opacity: 1;
    font-size: 0.82rem;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    display: block;
    width: 100%;
  }
}

/* ─── Hero ─── */
.hero {
  background: var(--mp-parchment);
  border-bottom: 1px solid var(--mp-mist);
  padding: 5rem 1.5rem 4.5rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: center;
}
.hero-content .eyebrow { animation: fadeUp 0.5s ease both 0.1s; }
.hero-content h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--mp-ink);
  animation: fadeUp 0.5s ease both 0.2s;
}
.hero-content h1 em { font-style: italic; color: var(--mp-rust); }
.hero-subtitle {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mp-ink);
  opacity: 0.6;
  max-width: 420px;
  margin-top: 1.25rem;
  line-height: 1.8;
  animation: fadeUp 0.5s ease both 0.35s;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: fadeUp 0.5s ease both 0.5s;
}
.hero-card {
  background: var(--mp-cream);
  border-left: 3px solid var(--mp-gold);
  padding: 2rem 1.75rem;
  box-shadow: 0 16px 48px var(--mp-shadow), 0 4px 16px var(--mp-shadow);
  animation: floatCard 6s ease-in-out infinite, fadeUp 0.5s ease both 0.65s;
  will-change: transform, opacity;
}
.hero-card-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mp-gold);
  margin-bottom: 1rem;
}
.hero-card-excerpt {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--mp-ink);
  opacity: 0.85;
}
.hero-card-author {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mp-rust);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-card-meta {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  opacity: 0.55;
  margin-top: 0.4rem;
  padding-left: 28px;
}
.hero-card-author::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--mp-rust);
  flex-shrink: 0;
}
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
}

/* ─── Focus styles (keyboard navigation) ─── */
:focus-visible {
  outline: 2px solid var(--mp-ink);
  outline-offset: 3px;
}
/* Buttons and CTAs on dark backgrounds need a light outline */
.btn-outline-light:focus-visible,
.btn-light:focus-visible,
.contest-section a:focus-visible,
.winner-list a:focus-visible,
.social-btn:focus-visible {
  outline-color: var(--mp-parchment);
}
/* Nav CTA already has enough contrast with ink outline on gold bg */
.nav-cta:focus-visible { outline-color: var(--mp-ink); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: var(--mp-gold); color: var(--mp-ink); }
.btn-primary:hover { background: var(--mp-ink); color: var(--mp-gold); }
.btn-outline { background: transparent; color: var(--mp-ink); border: 1px solid var(--mp-ink); }
.btn-outline:hover { background: var(--mp-ink); color: var(--mp-parchment); }
.btn-light { background: var(--mp-parchment); color: var(--mp-rust); }
.btn-light:hover { background: var(--mp-gold-light); color: var(--mp-ink); }
.btn-outline-light { background: transparent; color: var(--mp-parchment); border: 1px solid rgba(247,243,234,0.4); }
.btn-outline-light:hover { background: var(--mp-ink); color: var(--mp-gold); }

/* ─── Stats band ─── */
.stats-band { background: var(--mp-ink); padding: 2.5rem 1.5rem; }
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 1rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--mp-gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
}

/* ─── Main layout ─── */
.main-section { padding: 4rem 1.5rem; }
.main-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 820px) {
  .main-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── Section heading ─── */
.section-head { margin-bottom: 2rem; }
.section-head h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--mp-ink);
  line-height: 1.2;
}
.section-head h2 em { font-style: italic; color: var(--mp-rust); }

/* ─── Poem cards ─── */
.poem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--mp-mist);
}
@media (max-width: 560px) { .poem-grid { grid-template-columns: 1fr; } }
.poem-card {
  background: var(--mp-parchment);
  padding: 1.5rem;
  position: relative;
  border-left: 3px solid transparent;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.poem-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--mp-gold);
  transition: width 0.35s ease;
}
.poem-card:hover { background: var(--mp-cream); border-left-color: var(--mp-gold); transform: translateX(2px); }
.poem-card:hover::before { width: 100%; }
.poem-genre {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mp-gold-accessible);
  margin-bottom: 0.5rem;
}
.poem-title {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--mp-ink);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.poem-title:hover { color: var(--mp-rust); text-decoration: none; }
.poem-excerpt {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--mp-ink);
  opacity: 0.7;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.poem-ago {
  float: right;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
}
.poem-author {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mp-rust);
}
.poem-empty {
  grid-column: 1 / -1;
  background: var(--mp-parchment);
  padding: 2.5rem;
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--mp-ink);
  opacity: 0.6;
}
.poem-empty a { color: var(--mp-rust); font-style: normal; font-size: 0.8rem; }
.see-all-wrap { margin-top: 1.5rem; text-align: right; }

/* ─── Sidebar ─── */
.sidebar-block { border-top: 2px solid var(--mp-gold); padding-top: 1.25rem; margin-bottom: 2rem; }
.sidebar-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mp-gold-accessible);
  margin-bottom: 1rem;
}
.sidebar-label-light { color: var(--mp-gold-light); }
.category-list { list-style: none; }
.category-list li { border-bottom: 1px solid var(--mp-mist); }
.category-list li:last-child { border-bottom: none; }
.category-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0 0.6rem 0.4rem;
  font-size: 0.82rem;
  color: var(--mp-ink);
  opacity: 0.75;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.category-list a:hover { opacity: 1; color: var(--mp-rust); border-left-color: var(--mp-gold); padding-left: 0.75rem; text-decoration: none; }
.cat-marker { font-size: 0.55rem; color: var(--mp-gold); flex-shrink: 0; }
.sidebar-promo { background: var(--mp-ink); padding: 1.5rem; }
.sidebar-promo h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--mp-parchment);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.sidebar-promo h3 em { font-style: italic; color: var(--mp-gold-light); }
.sidebar-promo p { font-size: 0.8rem; font-weight: 300; color: rgba(247,243,234,0.55); margin-bottom: 1.25rem; line-height: 1.65; }

/* ─── Contest section ─── */
.contest-section { background: var(--mp-rust); padding: 4.5rem 1.5rem; }
.contest-inner { max-width: 780px; margin: 0 auto; }
.contest-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mp-gold-light);
  margin-bottom: 0.75rem;
}
.pulse-dot {
  width: 6px; height: 6px;
  background: var(--mp-gold-light);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.contest-section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--mp-parchment);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.contest-section h2 em { font-style: italic; color: var(--mp-gold-light); }
.winner-list { list-style: none; margin: 1.5rem 0 2rem; }
.winner-list li { border-bottom: 1px solid rgba(247,243,234,0.12); }
.winner-list li:last-child { border-bottom: none; }
.winner-list a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mp-gold-light);
  letter-spacing: 0.02em;
  transition: color 0.2s, padding-left 0.2s;
}
.winner-list a:hover { color: #fff; padding-left: 0.4rem; text-decoration: none; }
.contest-desc { font-size: 0.85rem; font-weight: 300; color: rgba(247,243,234,0.65); line-height: 1.75; margin-bottom: 2rem; }

/* ─── Footer ─── */
.site-footer { background: var(--mp-ink); border-top: 1px solid rgba(255,255,255,0.06); padding: 3.5rem 1.5rem 2rem; }
.footer-grid {
  max-width: 1280px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { display: inline-block; margin-bottom: 0.75rem; }
.footer-logo img { height: 46px; display: block; opacity: 0.85; }
.footer-logo:hover img { opacity: 1; }
.footer-tagline { font-family: Georgia, 'Times New Roman', serif; font-size: 0.9rem; font-style: italic; color: var(--mp-parchment); opacity: 0.65; line-height: 1.65; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.5rem; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 600;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--mp-gold); color: var(--mp-gold); text-decoration: none; }
.footer-col-title { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mp-gold); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--mp-parchment); opacity: 0.65; transition: opacity 0.2s, color 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--mp-gold); text-decoration: none; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.68rem;
  color: var(--mp-parchment);
  opacity: 0.55;
}

/* ─── Shared inner page header ─── */
.page-header {
  background: var(--mp-parchment);
  border-bottom: 1px solid var(--mp-mist);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}
.page-header h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--mp-ink);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.page-header h1 em { font-style: italic; color: var(--mp-rust); }
.page-header p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mp-ink);
  opacity: 0.6;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── Shared inner content area ─── */
.inner-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.inner-section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--mp-ink);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--mp-mist);
}
.inner-section h2 em { font-style: italic; color: var(--mp-rust); }
.inner-section h2:first-child { margin-top: 0; }
.inner-section p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--mp-ink);
  opacity: 0.8;
  margin-bottom: 1rem;
}
.inner-section strong { font-weight: 600; color: var(--mp-ink); }
.inner-section a { color: var(--mp-rust); }
.inner-section a:hover { color: var(--mp-gold); }
.inner-section ol,
.inner-section ul {
  padding-left: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--mp-ink);
  opacity: 0.8;
  margin-bottom: 1rem;
}
.inner-section ol li,
.inner-section ul li { margin-bottom: 0.4rem; }

/* ─── Metrica tool ─── */
.tool-form {
  background: var(--mp-parchment);
  border-top: 2px solid var(--mp-gold);
  padding: 1.75rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tool-form label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mp-gold);
}
.tool-form input[type="text"] {
  -webkit-flex: 1;
  flex: 1;
  min-width: 200px;
  padding: 0.6rem 0.9rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--mp-ink);
  background: var(--mp-cream);
  border: 1px solid var(--mp-mist);
  border-bottom: 2px solid var(--mp-gold);
  outline: none;
}
.tool-form input[type="text"]:focus { background: #fff; }
.tool-form input[type="submit"] {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  background: var(--mp-gold);
  color: var(--mp-ink);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tool-form input[type="submit"]:hover { background: var(--mp-ink); color: var(--mp-gold); }

.result-block {
  margin-top: 1.75rem;
  border-left: 3px solid var(--mp-gold);
  padding: 1.25rem 1.5rem;
  background: var(--mp-parchment);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mp-ink);
}
.result-block p { margin-bottom: 0.4rem; opacity: 0.85; }
.result-syllabified {
  font-size: 1.1rem;
  color: var(--mp-rust);
  font-style: italic;
  margin: 0.5rem 0 1rem;
  opacity: 1;
}
.result-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--mp-ink);
  opacity: 0.5;
  line-height: 1.75;
  margin-top: 1.5rem;
}
.credits {
  font-size: 0.72rem;
  color: var(--mp-ink);
  opacity: 0.35;
  border-top: 1px solid var(--mp-mist);
  margin-top: 1.5rem;
  padding-top: 1rem;
}
.credits a { color: var(--mp-rust); }
