/* ══════════════════════════════════════════════
   DSH.GR — Shared Styles
   ISLA dark atmospheric design
   ══════════════════════════════════════════════ */

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

/* ══ CUSTOM PROPERTIES ══ */
:root {
  --bg: #06060c;
  --bg2: #0b0b14;
  --bg3: #10101c;
  --fg: #ede9e2;
  --dim: rgba(255, 255, 255, .42);
  --dimmer: rgba(255, 255, 255, .16);
  --glass: rgba(255, 255, 255, .03);
  --border: rgba(255, 255, 255, .06);
  --bh: rgba(255, 255, 255, .12);
  --gold: #c9a24d;
  --gold-d: rgba(201, 162, 77, .12);
  --blue: #5b9bd5;
  --blue-d: rgba(91, 155, 213, .1);
  --green: #69db7c;
  --green-d: rgba(105, 219, 124, .1);
  --red: #ff6b6b;
  --red-d: rgba(255, 107, 107, .1);
  --crete: #b8845a;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono: 'DM Mono', 'Courier New', monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ══ REDUCED MOTION ══ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ══ BASE ══ */
html {
  scroll-behavior: smooth;
  scrollbar-color: var(--dimmer) transparent;
}

body {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(13.5px, 1.5vw, 15px);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--gold-d);
  color: var(--gold);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity .15s;
}

a:hover {
  opacity: .75;
}

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

/* ══ GRAIN OVERLAY ══ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ══ SCROLL PROGRESS ══ */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  z-index: 200;
  width: 0;
  transition: width .08s linear;
}

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 40px);
  height: 56px;
  background: rgba(6, 6, 12, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--fg);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--fg);
  background: var(--glass);
  opacity: 1;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6, 6, 12, .96);
    backdrop-filter: blur(16px);
    padding: 12px 16px;
    gap: 2px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
  }

  .hamburger {
    display: block;
  }
}

/* ══ LAYOUT ══ */
.page {
  padding-top: 56px;
}

.section {
  padding: clamp(40px, 7vw, 80px) clamp(16px, 5vw, 40px);
}

.inner {
  max-width: 680px;
  margin: 0 auto;
}

.wide {
  max-width: 960px;
  margin: 0 auto;
}

.divider {
  width: 1px;
  height: 48px;
  margin: 0 auto;
  background: linear-gradient(transparent, var(--dimmer), transparent);
}

/* ══ TYPOGRAPHY ══ */
h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}

h1 em {
  color: var(--gold);
}

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
  margin-bottom: 12px;
}

h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.3;
  margin-bottom: 8px;
}

.label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}

.sub {
  color: var(--dim);
  font-size: clamp(13px, 1.4vw, 15px);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ══ REVEAL ANIMATIONS ══ */
.r {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.r.v {
  opacity: 1;
  transform: none;
}

.r1 { transition-delay: .12s; }
.r2 { transition-delay: .24s; }
.r3 { transition-delay: .36s; }
.r4 { transition-delay: .48s; }
.r5 { transition-delay: .6s; }

/* ══ HERO ══ */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 50% 45%, rgba(201, 162, 77, .05), transparent),
    radial-gradient(ellipse 35% 30% at 60% 55%, rgba(91, 155, 213, .03), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--dim);
  margin-bottom: 20px;
  letter-spacing: .06em;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero p {
  color: var(--dim);
  font-size: clamp(14px, 1.6vw, 16px);
  max-width: 440px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══ BUTTONS ══ */
.btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid var(--border);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn-primary:hover {
  opacity: .85;
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
}

.btn-ghost:hover {
  background: var(--glass);
  border-color: var(--bh);
  opacity: 1;
}

/* ══ QUICK STATS BAR ══ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 48px);
  padding: 20px 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  flex-wrap: wrap;
}

.qstat {
  text-align: center;
}

.qstat-n {
  font-family: var(--mono);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.qstat-l {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ══ TABS ══ */
.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dim);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  font-family: var(--mono);
}

.tab:hover {
  border-color: var(--bh);
  color: var(--fg);
}

.tab.active {
  background: var(--gold-d);
  border-color: rgba(201, 162, 77, .25);
  color: var(--gold);
}

/* ══ CARDS (announcements, events) ══ */
.card-list {
  display: grid;
  gap: 12px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .2s, transform .15s;
  cursor: pointer;
}

.card:hover {
  border-color: var(--bh);
  transform: translateY(-1px);
}

.card-date {
  flex-shrink: 0;
  text-align: center;
  min-width: 44px;
  padding-top: 2px;
}

.card-date .d {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.card-date .m {
  font-size: 9px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.card-body h4 {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 3px;
  line-height: 1.4;
}

.card-body p {
  font-size: 12.5px;
  color: var(--dim);
  line-height: 1.6;
}

.tag {
  display: inline-block;
  font-size: 9.5px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tag-urgent { background: var(--red-d); color: var(--red); }
.tag-event  { background: var(--blue-d); color: var(--blue); }
.tag-info   { background: var(--green-d); color: var(--green); }
.tag-press  { background: var(--gold-d); color: var(--gold); }

/* ══ BOARD MEMBERS ══ */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.board-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: border-color .2s;
}

.board-card:hover {
  border-color: var(--bh);
}

.board-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-d);
  border: 1px solid rgba(201, 162, 77, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
}

.board-name {
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 2px;
}

.board-role {
  font-size: 11px;
  color: var(--dim);
}

/* ══ CALCULATOR ══ */
.calc {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(20px, 4vw, 32px);
  max-width: 540px;
  margin: 0 auto;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) {
  .calc-row {
    grid-template-columns: 1fr;
  }
}

.calc-group {
  margin-bottom: 16px;
}

.calc-group label {
  display: block;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.calc-input,
.calc-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
}

.calc-input:focus,
.calc-select:focus {
  border-color: var(--gold);
}

.calc-input::placeholder {
  color: var(--dimmer);
}

.calc-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  font-size: 13px;
}

.calc-result {
  margin-top: 20px;
  padding: 18px;
  background: var(--gold-d);
  border: 1px solid rgba(201, 162, 77, .18);
  border-radius: 10px;
  text-align: center;
}

.calc-total {
  font-family: var(--mono);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.calc-total-label {
  font-size: 11px;
  color: var(--dim);
  margin-top: 4px;
}

.calc-breakdown {
  margin-top: 14px;
  display: grid;
  gap: 6px;
}

.cb-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 10px;
  background: var(--glass);
  border-radius: 6px;
  font-size: 12px;
}

.cb-row .l { color: var(--dim); }
.cb-row .v { color: var(--fg); }

/* ══ MEMBER DIRECTORY ══ */
.dir-search {
  position: relative;
  margin-bottom: 16px;
}

.dir-search input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

.dir-search input:focus {
  border-color: var(--gold);
}

.dir-search input::placeholder {
  color: var(--dimmer);
}

.dir-search .ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dimmer);
  font-size: 14px;
}

.dir-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.dir-count {
  font-size: 11px;
  color: var(--dimmer);
  margin-bottom: 10px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.m-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  transition: border-color .2s;
}

.m-card:hover {
  border-color: var(--bh);
}

.m-name {
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 2px;
}

.m-spec {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 6px;
}

.m-meta {
  font-size: 10.5px;
  color: var(--dimmer);
  display: flex;
  gap: 10px;
}

/* ══ EVENTS ══ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.event-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, transform .15s;
  cursor: pointer;
}

.event-card:hover {
  border-color: var(--bh);
  transform: translateY(-2px);
}

.event-banner {
  height: 6px;
  width: 100%;
}

.event-banner.science {
  background: linear-gradient(90deg, var(--blue), var(--blue) 60%, transparent);
}

.event-banner.culture {
  background: linear-gradient(90deg, var(--gold), var(--gold) 60%, transparent);
}

.event-banner.sports {
  background: linear-gradient(90deg, var(--green), var(--green) 60%, transparent);
}

.event-body {
  padding: 16px;
}

.event-body h4 {
  font-family: var(--serif);
  font-size: 15px;
  margin-bottom: 4px;
  line-height: 1.4;
}

.event-body p {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.5;
}

.event-meta {
  font-size: 11px;
  color: var(--dimmer);
  margin-top: 8px;
  display: flex;
  gap: 12px;
}

/* ══ JOURNAL (Radamanthys) ══ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.journal-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: border-color .2s, transform .15s;
  cursor: pointer;
}

.journal-card:hover {
  border-color: var(--bh);
  transform: translateY(-2px);
}

.journal-issue {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 4px;
}

.journal-year {
  font-size: 12px;
  color: var(--dim);
}

.journal-title {
  font-size: 11px;
  color: var(--dimmer);
  margin-top: 8px;
  line-height: 1.5;
}

/* ══ CONTACT ══ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.contact-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.contact-card h4 {
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.7;
}

/* ══ FOOTER ══ */
footer {
  padding: 32px clamp(16px, 5vw, 40px);
  border-top: 1px solid var(--border);
  background: var(--bg2);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--dim);
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 11px;
  color: var(--dimmer);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--fg);
  opacity: 1;
}

.footer-copy {
  font-size: 10.5px;
  color: var(--dimmer);
}

.footer-copy a {
  color: var(--dim);
}

/* ══ BACK TO TOP ══ */
.btt {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--dim);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s;
  z-index: 90;
}

.btt.v {
  opacity: 1;
  transform: none;
}

.btt:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ══ SECTION NAV (dots) ══ */
.dots {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}

@media (max-width: 860px) {
  .dots {
    display: none;
  }
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dimmer);
  cursor: pointer;
  transition: background .3s, transform .2s;
  position: relative;
}

.dot:hover {
  transform: scale(1.5);
}

.dot.active {
  background: var(--gold);
}

.dot::after {
  content: attr(data-l);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 9px;
  color: var(--dim);
  opacity: 0;
  transition: opacity .15s;
  pointer-events: none;
}

.dot:hover::after {
  opacity: 1;
}

/* ══ CANVAS ══ */
#p {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .25;
}

/* ══ SVG KEYFRAMES ══ */
@keyframes cw  { to { transform: rotate(360deg); } }
@keyframes ccw { to { transform: rotate(-360deg); } }


/* ══════════════════════════════════════════════
   PAGE-SPECIFIC BODY CLASSES
   ══════════════════════════════════════════════ */

/* --- Homepage: dots visible, hero full height --- */
.page-home .dots {
  display: flex;
}

.page-home .hero {
  min-height: 80vh;
}

/* --- Secondary pages: hide dots, lighter hero --- */
.page-meli .dots,
.page-ergaleia .dots,
.page-dioikisi .dots,
.page-ekdiloseis .dots,
.page-radamanthys .dots,
.page-epikoinonia .dots {
  display: none;
}

/* ══ PAGE HEADER (secondary pages) ══ */
.page-header {
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  align-items: center;
  padding-top: 56px;
}

.page-header .hero-glow {
  opacity: .6;
}

/* ══ QUICK LINKS (homepage grid) ══ */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

@media (min-width: 860px) {
  .quick-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-links .card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 18px;
}

.quick-links .card h4 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 2px;
}

.quick-links .card p {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.5;
}

.quick-links .card .card-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

/* ══ HISTORY TIMELINE ══ */
.history-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.history-item:last-child {
  border-bottom: none;
}

.history-year {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  min-width: 60px;
}

.history-era {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 4px;
}

.history-text {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
}
