/* ============================================================
   THE ATLAS OF TECHNOLOGY AND CIVILIZATION — stylesheet
   ============================================================ */

:root {
  --ink: #0b0a08;
  --ink-2: #14120e;
  --ink-3: #1d1a14;
  --bone: #ece4d4;
  --bone-dim: #b9ae99;
  --bone-faint: #7d7464;
  --gold: #c9a35a;
  --gold-bright: #e8c987;
  --gold-dim: rgba(201, 163, 90, .35);
  --red: #a8442e;
  --teal: #4e8a83;
  --serif: "Cormorant Garamond", Georgia, serif;
  --body-serif: "Spectral", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Persistent top rule ---------- */
#top-rule {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  z-index: 210; pointer-events: none;
}

/* ---------- Loading veil ---------- */
#veil {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
}
.veil-mark { font-size: 42px; color: var(--gold); animation: veilspin 2.4s linear infinite; }
.veil-text {
  font-family: var(--sans); font-size: 11px; letter-spacing: .4em; color: var(--bone-dim);
  text-transform: uppercase; text-align: center; line-height: 2;
  max-width: min(90vw, 520px); padding: 0 16px;
}
@keyframes veilspin { to { transform: rotate(360deg); } }

/* ---------- Ambient canvas ---------- */
#dust { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .55; }

/* ---------- Chrome ---------- */
#chrome {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px;
  background: var(--ink);
  border-bottom: 1px solid var(--gold-dim);
  pointer-events: none;
  transform: translateY(-100%); transition: transform .6s cubic-bezier(.16,1,.3,1);
}
#chrome.visible { transform: translateY(0); }
.chrome-title { display: flex; align-items: center; gap: 10px; pointer-events: auto; cursor: pointer; }
.chrome-mark { color: var(--gold); font-size: 15px; }
.chrome-name { font-family: var(--serif); font-size: 27px; letter-spacing: .04em; }
.chrome-name em { color: var(--bone-dim); font-size: 14px; }
.chrome-year {
  font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--gold-bright);
  font-variant-numeric: tabular-nums; letter-spacing: .03em;
}

/* ---------- Progress bar ---------- */
#progress-bar { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 95; background: transparent; }
#progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); box-shadow: 0 0 12px var(--gold); }

/* ---------- Skip to top ---------- */
#to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 85;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 17px; border-radius: 999px;
  background: rgba(11,10,8,.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(201,163,90,.35); color: var(--gold);
  font-family: var(--sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  cursor: pointer; opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .4s, transform .4s, background .25s, border-color .25s, color .25s;
}
#to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#to-top:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
#to-top .tt-arrow { font-size: 13px; line-height: 1; }
@media (max-width: 920px) { #to-top { bottom: 16px; right: 16px; padding: 9px 14px; } }

/* ---------- Hero ---------- */
#hero {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative; z-index: 2; padding: 24px;
}
.hero-kicker {
  font-size: 11px; letter-spacing: .5em; color: var(--gold);
  margin-top: 20px; margin-bottom: 38px; font-weight: 500;
}
.hero-title { font-family: var(--serif); font-weight: 500; line-height: .95; }
.hero-line { display: block; font-size: clamp(34px, 5vw, 64px); color: var(--bone-dim); letter-spacing: .06em; }
.hero-line-em {
  font-size: clamp(58px, 11vw, 148px); color: var(--bone); font-weight: 600;
  letter-spacing: .01em;
}
.hero-amp { font-size: clamp(30px, 4vw, 54px); color: var(--gold); font-style: italic; margin: 6px 0; }
.hero-sub {
  max-width: 560px; margin-top: 44px; font-family: var(--body-serif);
  font-weight: 300; font-size: 17px; line-height: 1.75; color: var(--bone-dim);
}
.hero-cta {
  margin-top: 64px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; color: var(--gold);
}
.hero-cta-text { font-size: 10px; letter-spacing: .45em; }
.hero-cta-arrow { font-size: 20px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(8px);} }

/* ---------- Controls ---------- */
#controls {
  position: sticky; top: var(--chrome-h, 64px); z-index: 70;
  display: flex; flex-direction: column;
  background: var(--ink);
  border-top: 1px solid var(--gold-dim);
}
#controls-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 28px;
  border-bottom: 1px solid var(--gold-dim);
}
#filter-toggle {
  display: flex; align-items: center; gap: 7px; flex-shrink: 0;
  background: transparent; border: 1px solid rgba(236,228,212,.18); border-radius: 999px;
  color: var(--bone-dim); cursor: pointer; padding: 7px 13px;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  transition: border-color .25s, color .25s;
}
#filter-toggle:hover { border-color: var(--gold); color: var(--gold-bright); }
#filter-toggle[aria-expanded="true"] { border-color: rgba(201,163,90,.5); color: var(--gold); }
.ft-icon { display: flex; flex-direction: column; gap: 3.5px; }
.ft-icon span { display: block; width: 13px; height: 1.5px; background: currentColor; transition: opacity .25s; }
.ft-caret { font-size: 9px; transition: transform .3s; }
#filter-toggle[aria-expanded="true"] .ft-caret { transform: rotate(180deg); }
#search-wrap { display: flex; align-items: center; gap: 10px; margin-left: auto; }
#search {
  background: rgba(236,228,212,.06); border: 1px solid rgba(236,228,212,.18);
  border-radius: 999px; color: var(--bone); font-family: var(--sans); font-size: 13px;
  padding: 8px 38px 8px 18px; width: 220px; outline: none; transition: border-color .25s, width .3s;
}
#search:focus { border-color: var(--gold); width: 260px; }
#search::placeholder { color: var(--bone-faint); }
.search-field { position: relative; display: flex; align-items: center; }
.search-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; color: var(--bone-faint); pointer-events: none;
  transition: color .25s;
}
.search-field:focus-within .search-icon { color: var(--gold); }
#search-count { font-size: 11px; color: var(--bone-faint); letter-spacing: .1em; }
#filters {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  width: 100%;
  max-height: 0; overflow: hidden; opacity: 0;
  box-shadow: 0 1px 0 0 transparent;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), opacity .28s, padding .38s, box-shadow .3s;
}
#filters.open { max-height: 500px; opacity: 1; padding: 12px 28px 14px; box-shadow: 0 1px 0 0 var(--gold-dim); }
.chip {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--bone-dim);
  border: 1px solid rgba(236,228,212,.18); transition: all .25s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-bright); }
.chip.on { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }

/* ---------- Atlas (timeline) ---------- */
#atlas { position: relative; z-index: 2; padding-bottom: 120px; }

/* central spine */
#atlas::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: linear-gradient(to bottom, transparent,
    var(--gold-dim) 2%, var(--gold-dim) 98%, transparent);
}

/* ---- Era headers ---- */
.era-head {
  position: relative; text-align: center; padding: 150px 24px 90px;
  z-index: 3;
}
.era-num {
  font-family: var(--serif); font-style: italic; font-size: 15px;
  color: var(--gold); letter-spacing: .35em; display: block; margin-bottom: 14px;
}
.era-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 7vw, 96px); line-height: 1.02; color: var(--bone);
}
.era-range {
  font-size: 12px; letter-spacing: .4em; color: var(--bone-faint);
  margin-top: 18px; text-transform: uppercase;
}
.era-blurb {
  max-width: 620px; margin: 30px auto 0; font-family: var(--body-serif); font-weight: 300;
  font-size: 16px; line-height: 1.8; color: var(--bone-dim); font-style: italic;
}
.era-rule {
  width: 60px; height: 1px; background: var(--gold); margin: 36px auto 0; opacity: .7;
}

/* ---- Event rows ---- */
.ev {
  position: relative; display: flex; align-items: center;
  width: 100%; max-width: 1240px; margin: 0 auto; padding: 34px 40px;
  min-height: 120px;
}
.ev-node {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--gold);
  z-index: 4; transition: all .3s;
  box-shadow: 0 0 0 4px var(--ink);
}
.ev:hover .ev-node { background: var(--gold-bright); box-shadow: 0 0 0 4px var(--ink), 0 0 18px var(--gold); }
.ev-year {
  position: absolute; left: 50%; top: 50%;
  font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--gold);
  white-space: nowrap; font-variant-numeric: tabular-nums; letter-spacing: .04em;
  z-index: 4;
}
.ev.left  .ev-year { transform: translate(26px, -50%); }
.ev.right .ev-year { transform: translate(calc(-100% - 26px), -50%); }

.ev-card {
  width: calc(50% - 70px); cursor: pointer; position: relative;
  background: linear-gradient(135deg, rgba(29,26,20,.92), rgba(20,18,14,.92));
  border: 1px solid rgba(236,228,212,.1);
  display: flex; overflow: hidden; border-radius: 3px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.ev.left  .ev-card { margin-right: auto; }
.ev.right .ev-card { margin-left: auto; flex-direction: row-reverse; }
.ev-card:hover {
  border-color: var(--gold-dim); transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0,0,0,.5);
}
.ev-thumb {
  width: 132px; flex-shrink: 0; background-size: cover; background-position: center;
  filter: saturate(.7) contrast(1.04) brightness(.92); transition: filter .4s, transform .6s;
  position: relative; min-height: 100%;
}
.ev-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 55%, rgba(20,18,14,.55));
}
.ev.right .ev-thumb::after { background: linear-gradient(-110deg, transparent 55%, rgba(20,18,14,.55)); }
.ev-card:hover .ev-thumb { filter: saturate(1) contrast(1.04) brightness(1); }
.ev-card.no-img .ev-thumb { display: none; }
.ev-meta { padding: 18px 20px 16px; flex: 1; min-width: 0; }
.ev-cat {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.ev-title {
  font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.18;
  margin-top: 7px; color: var(--bone);
}
.ev-sub {
  margin-top: 8px; font-size: 12.5px; line-height: 1.55; color: var(--bone-dim);
  font-weight: 300;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ev-open {
  margin-top: 10px; font-size: 9.5px; letter-spacing: .3em; color: var(--bone-faint);
  text-transform: uppercase; transition: color .3s;
}
.ev-card:hover .ev-open { color: var(--gold-bright); }

/* hidden by filters */
.ev.filtered { display: none; }
.era-head.filtered { display: none; }

/* ---------- Epilogue ---------- */
#epilogue {
  position: relative; z-index: 2; padding: 140px 24px 160px; text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,163,90,.08), transparent 60%);
}
.epilogue-inner { max-width: 640px; margin: 0 auto; }
.ep-kicker { font-size: 10px; letter-spacing: .5em; color: var(--gold); margin-bottom: 26px; }
#epilogue h2 { font-family: var(--serif); font-size: clamp(38px, 6vw, 72px); font-weight: 600; margin-bottom: 30px; }
#epilogue p { font-family: var(--body-serif); font-weight: 300; font-size: 16.5px; line-height: 1.85; color: var(--bone-dim); margin-bottom: 22px; }
.ep-credit { font-size: 13px !important; opacity: .75; }
.ep-top {
  margin-top: 30px; background: none; border: 1px solid var(--gold-dim); color: var(--gold);
  font-family: var(--sans); font-size: 10px; letter-spacing: .35em; padding: 14px 30px;
  cursor: pointer; border-radius: 999px; transition: all .3s;
}
.ep-top:hover { background: var(--gold); color: var(--ink); }

/* ---------- Exhibit popup ---------- */
#exhibit { position: fixed; inset: 0; z-index: 150; display: none; }
#exhibit.open { display: block; }
#exhibit-backdrop {
  position: absolute; inset: 0; background: rgba(5,4,3,.82);
  backdrop-filter: blur(10px) saturate(.7);
}
#exhibit-card {
  position: absolute; left: 50%; top: 40px; transform: translate(-50%, -50%);
  width: min(1060px, calc(100vw - 36px)); height: min(86vh, 760px);
  background: var(--ink-2); border: 1px solid rgba(201,163,90,.3); border-radius: 4px;
  display: flex; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.7), 0 0 0 1px rgba(0,0,0,.6);
}
#exhibit-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(11,10,8,.72); color: var(--bone); border: 1px solid rgba(236,228,212,.25);
  font-size: 15px; cursor: pointer; transition: all .25s;
}
#exhibit-close:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: rotate(90deg); }

#exhibit-media {
  width: 42%; flex-shrink: 0; display: flex; flex-direction: column;
  background: #060505; border-right: 1px solid rgba(201,163,90,.18);
}
#exhibit-hero-img {
  flex: 1; background-size: cover; background-position: center; position: relative;
  filter: saturate(.85);
}
#exhibit-hero-img::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,.55);
}
#exhibit-hero-img.empty {
  display: flex; align-items: center; justify-content: center;
}
#exhibit-hero-img.empty::before {
  content: "✶"; font-size: 64px; color: var(--gold-dim);
}
#exhibit-gallery {
  display: flex; gap: 6px; padding: 10px; overflow-x: auto;
  background: rgba(11,10,8,.9); min-height: 86px;
  scrollbar-width: thin; scrollbar-color: var(--gold-dim) transparent;
}
#exhibit-gallery:empty { display: none; }
.gal-thumb {
  width: 96px; height: 66px; flex-shrink: 0; background-size: cover; background-position: center;
  border: 1px solid rgba(236,228,212,.15); border-radius: 2px; cursor: pointer;
  opacity: .65; transition: all .25s;
}
.gal-thumb:hover, .gal-thumb.sel { opacity: 1; border-color: var(--gold); }

#exhibit-body {
  flex: 1; overflow-y: auto; padding: 44px 46px 40px;
  scrollbar-width: thin; scrollbar-color: var(--gold-dim) transparent;
}
.ex-era { font-size: 10px; letter-spacing: .4em; color: var(--bone-faint); text-transform: uppercase; }
.ex-date {
  font-family: var(--serif); font-size: 46px; font-weight: 600; color: var(--gold-bright);
  line-height: 1; margin-top: 14px;
}
.ex-title { font-family: var(--serif); font-size: 33px; font-weight: 600; line-height: 1.12; margin-top: 10px; }
.ex-summary {
  margin-top: 18px; font-family: var(--body-serif); font-style: italic; font-weight: 300;
  font-size: 16.5px; line-height: 1.7; color: var(--bone-dim);
  border-left: 2px solid var(--gold); padding-left: 16px;
}
.ex-section { margin-top: 30px; }
.ex-section h3 {
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.ex-ico { font-size: 13px; }
.ex-section p { font-size: 14.5px; line-height: 1.78; color: var(--bone); font-weight: 300; }
.ex-impact { margin-top: 22px; padding: 16px 18px; background: rgba(236,228,212,.04); border: 1px solid rgba(236,228,212,.08); border-radius: 3px; }
.ex-impact h3 { margin-bottom: 8px; }
.ex-impact p { font-size: 13.5px; color: var(--bone-dim); font-weight: 300; line-height: 1.7; }

#ex-threads { margin-top: 30px; }
#ex-threads h3 {
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.thread-link {
  display: flex; align-items: baseline; gap: 10px; width: 100%; text-align: left;
  background: none; border: none; border-bottom: 1px solid rgba(236,228,212,.08);
  padding: 9px 2px; cursor: pointer; color: var(--bone-dim); transition: color .25s;
}
.thread-link:hover { color: var(--gold-bright); }
.thread-dir { font-size: 13px; color: var(--gold); flex-shrink: 0; }
.thread-year { font-family: var(--serif); font-weight: 600; font-size: 15px; color: var(--bone); flex-shrink: 0; min-width: 74px; }
.thread-title { font-size: 13px; line-height: 1.45; }

.ex-source { margin-top: 34px; font-size: 11.5px; color: var(--bone-faint); line-height: 1.7; }
.ex-source a { color: var(--gold); text-decoration: none; border-bottom: 1px dotted var(--gold-dim); }
.ex-source a:hover { color: var(--gold-bright); }

/* ---------- Per-exhibit image credits ---------- */
.ex-credits { margin-top: 16px; border-top: 1px solid rgba(201,163,90,.14); padding-top: 14px; }
.ex-credits:empty { display: none; }
.ex-credits h4 {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--bone-faint); margin: 0 0 8px;
}
.ex-credits ul { list-style: none; margin: 0; padding: 0; }
.ex-credits li { font-size: 11.5px; color: var(--bone-faint); line-height: 1.65; margin-bottom: 3px; }
.ex-credits a { color: var(--gold); text-decoration: none; border-bottom: 1px dotted var(--gold-dim); }
.ex-credits a:hover { color: var(--gold-bright); }
.ex-credits-note { font-size: 10.5px; color: var(--bone-faint); opacity: .8; margin: 8px 0 0; font-style: italic; }

/* ---------- Footer ---------- */
#site-footer {
  position: relative; z-index: 2; text-align: center;
  padding: 48px 24px 60px; border-top: 1px solid rgba(201,163,90,.12);
}
.foot-line { font-size: 12px; color: var(--bone-faint); line-height: 1.8; margin: 0; }
.foot-sub { margin-top: 6px; }
#site-footer a, .foot-link {
  color: var(--gold); text-decoration: none; border-bottom: 1px dotted var(--gold-dim);
  background: none; font: inherit; cursor: pointer; padding: 0;
}
#site-footer a:hover, .foot-link:hover { color: var(--gold-bright); }

/* ---------- Credits overlay ---------- */
#credits { position: fixed; inset: 0; z-index: 160; display: none; }
#credits.open { display: block; }
#credits-backdrop {
  position: absolute; inset: 0; background: rgba(5,4,3,.85);
  backdrop-filter: blur(10px) saturate(.7);
}
#credits-card {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(820px, calc(100vw - 36px)); height: min(86vh, 820px);
  background: var(--ink-2); border: 1px solid rgba(201,163,90,.3); border-radius: 4px;
  overflow-y: auto; padding: 40px 44px 48px;
  box-shadow: 0 40px 120px rgba(0,0,0,.7), 0 0 0 1px rgba(0,0,0,.6);
}
#credits-close {
  position: sticky; float: right; top: 0; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(11,10,8,.72); color: var(--bone); border: 1px solid rgba(236,228,212,.25);
  font-size: 15px; cursor: pointer; transition: all .25s;
}
#credits-close:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: rotate(90deg); }
.credits-head { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--bone); margin: 0 0 12px; font-weight: 600; }
.credits-intro { font-size: 13px; color: var(--bone-dim); line-height: 1.7; margin: 0 0 18px; max-width: 64ch; }
.credits-count { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone-faint); margin: 0 0 14px; }
#credits-list ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 36px; }
#credits-list li { font-size: 12px; color: var(--bone-faint); line-height: 1.55; margin-bottom: 7px; break-inside: avoid; }
#credits-list a { color: var(--gold); text-decoration: none; border-bottom: 1px dotted var(--gold-dim); }
#credits-list a:hover { color: var(--gold-bright); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  #controls-bar { padding: 8px 18px; justify-content: center; }
  #search-wrap { display: none; }
  .hero-kicker { display: none; }
  #atlas::before { left: 26px; }
  .ev, .ev.left, .ev.right { padding: 22px 16px 22px 56px; }
  .ev-node { left: 26px; }
  .ev-year { left: 56px !important; top: 6px; transform: none !important; font-size: 16px; }
  .ev-card { width: 100% !important; margin-top: 22px; }
  .ev.right .ev-card { flex-direction: row; }
  .ev-thumb { width: 96px; }
  #exhibit-card {
    flex-direction: column;
    left: 16px; right: 16px; top: 16px; bottom: 16px; transform: none;
    width: auto; height: auto;
    border-radius: 4px;
  }
  #exhibit-media { width: 100%; height: 220px; flex-shrink: 0; border-right: none; border-bottom: 1px solid rgba(201,163,90,.18); }
  #exhibit-gallery { min-height: 60px; }
  .gal-thumb { width: 68px; height: 46px; }
  #exhibit-body { padding: 22px 18px 28px; overflow-y: auto; }
  .ex-date { font-size: 30px; }
  .ex-title { font-size: 22px; }
  .ex-summary { font-size: 14.5px; }
  .chrome-name em { display: none; }
  #credits-card { padding: 26px 18px 36px; }
  #credits-list ul { columns: 1; }
}
@media (max-width: 480px) {
  .ft-label { display: none; }
  #chrome { padding: 13px 18px; }
  .chrome-name { font-size: 14px; }
  .chrome-year { font-size: 21px; }
  .ev-title { font-size: 18px; }
  .ev-sub { font-size: 12px; }
  .ev-thumb { width: 80px; }
}
