/* ============================================================
   Abstract — archive
   A quiet, dark listening room. The artwork carries the color.
   ============================================================ */

:root {
  --bg: #141210;
  --bg-raised: #1c1917;
  --ink: #e8e2d9;
  --ink-dim: #9a9188;
  --ink-faint: #5f584f;
  --accent: #d8b06a;
  --line: #2a2622;
  --serif: "Charter", "Iowan Old Style", "Palatino", "Georgia", serif;
  --sans: -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --player-h: 84px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* kill double-tap-to-zoom; pinch is blocked via gesture events in app.js */
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--player-h) + 24px);
}

a { color: inherit; }

/* ---------- header ---------- */

.site-header {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px 8px;
  text-align: center;
}

.wordmark {
  font-size: clamp(44px, 8vw, 76px);
  letter-spacing: .34em;
  text-indent: .34em; /* balance tracking */
  text-transform: lowercase;
  font-weight: 400;
  text-decoration: none;
  display: block;
  color: var(--ink);
}

.site-sub {
  margin: 6px 0 0;
  color: var(--ink-dim);
  font-style: italic;
  letter-spacing: .04em;
}

.version-tag {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ink-faint);
  margin-left: 6px;
  vertical-align: 1px;
}

.site-nav {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.textbtn {
  background: none;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.textbtn:hover { color: var(--accent); border-color: var(--accent); }

#search {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  width: 240px;
  outline: none;
}
#search:focus { border-color: var(--ink-faint); }
#search::placeholder { color: var(--ink-faint); }

/* ---------- main ---------- */

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px;
  outline: none;
}

.section-title {
  font-size: 15px;
  font-family: var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 56px 0 20px;
  text-align: center;
}

/* ---------- album grid ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px 24px;
}

.card {
  text-decoration: none;
  display: block;
}

.cover {
  position: relative;
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-raised);
  box-shadow: 0 1px 4px rgba(0,0,0,.5);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover .cover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.55); }

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

/* typographic cover for albums without artwork */
.cover-typo {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  font-size: 19px;
  line-height: 1.25;
  font-style: italic;
  color: rgba(238, 230, 218, .92);
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.07), transparent 60%),
    var(--typo-bg, #33302b);
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
  word-break: break-word;
}

/* marks covers drawn from Jeff's photos rather than original album art;
   remove (or set display:none) to drop the marker site-wide */
.ig-badge {
  position: absolute;
  top: 7px; right: 7px;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(238, 230, 218, .8);
  background: rgba(20, 18, 16, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  pointer-events: none;
}
.ig-badge svg { width: 13px; height: 13px; display: block; }

.card-title {
  margin: 10px 2px 0;
  font-size: 16.5px;
  line-height: 1.3;
}
.card-year {
  margin: 2px 2px 0;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: .06em;
}

/* ---------- album page ---------- */

.album-page { padding-top: 32px; }

.backlink {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-decoration: none;
}
.backlink:hover { color: var(--accent); }

.album-head {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  margin: 28px 0 34px;
  flex-wrap: wrap;
}

.album-head .cover {
  width: 300px;
  flex: none;
}

.album-info h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.12;
  margin: 0 0 8px;
  font-weight: 400;
  max-width: 560px;
}
.album-info .aka {
  color: var(--ink-dim);
  font-style: italic;
  margin: 0 0 6px;
}
.album-info .meta {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-faint);
  letter-spacing: .05em;
  margin: 0 0 18px;
}

.album-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- tracklist ---------- */

.tracks { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }

.track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .15s;
}
.track:hover { background: var(--bg-raised); }

.track .t-num {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-faint);
  width: 26px;
  text-align: right;
  flex: none;
  font-variant-numeric: tabular-nums;
}
.track:hover .t-num { color: var(--accent); }

.track .t-title { flex: 1; min-width: 0; }

.track.playing .t-title { color: var(--accent); }
.track.playing .t-num::before { content: "♪"; }
.track.playing .t-num { color: var(--accent); font-size: 12px; }
.track.playing .t-num span { display: none; }

.track .t-time {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  flex: none;
}

.track .t-dl {
  font-family: var(--sans);
  color: var(--ink-faint);
  text-decoration: none;
  font-size: 15px;
  padding: 2px 8px;
  border-radius: 4px;
  flex: none;
  opacity: 0;
  transition: opacity .15s, color .15s;
}
.track:hover .t-dl { opacity: 1; }
.track .t-dl:hover { color: var(--accent); }
@media (hover: none) { .track .t-dl { opacity: .7; } }

.version-note { margin-top: 40px; font-size: 12.5px; letter-spacing: .1em; }

/* ---------- installed-app chrome & sorting ---------- */

/* Driven by body.has-chrome, NOT the `hidden` attribute — a class selector
   beats the UA stylesheet's [hidden]{display:none}, so `display:flex` here
   would leave these buttons on screen in a normal browser tab, visible but
   with no click handlers bound. */
.web-chrome {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 6px);
  left: 10px;
  z-index: 70;
  display: none;
  gap: 4px;
}
body.has-chrome .web-chrome { display: flex; }
.web-chrome button {
  background: rgba(24, 21, 19, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 34px; height: 34px;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.web-chrome button svg { width: 17px; height: 17px; }
.web-chrome button:active { color: var(--accent); }

/* keep page content clear of the floating chrome */
body.has-chrome main,
body.has-chrome .site-header { padding-top: calc(env(safe-area-inset-top, 0px) + 48px); }

.sort-row {
  text-align: center;
  margin: 30px 0 -22px;
  font-family: var(--sans);
}
.sort-opt {
  background: none;
  border: none;
  color: var(--ink-faint);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 8px;
}
.sort-opt:hover { color: var(--ink); }
.sort-opt.on { color: var(--accent); }
.sort-dot { color: var(--ink-faint); }

.t-albumlink {
  color: var(--ink-faint);
  text-decoration: none;
}
.t-albumlink:hover { color: var(--accent); text-decoration: underline; }

/* ---------- settings ---------- */

.nav-gear {
  color: var(--ink-faint);
  display: flex;
  padding: 8px;
}
.nav-gear svg { width: 17px; height: 17px; }
.nav-gear:hover { color: var(--accent); }

.settings-page { max-width: 460px; margin: 0 auto; }

.setting { margin: 34px 0; }

.setting-label {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.setting-input {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  padding: 10px 14px;
  border-radius: 6px;
  outline: none;
}
.setting-input:focus { border-color: var(--ink-faint); }
.setting-input::placeholder { color: var(--ink-faint); font-style: italic; }

.setting-note {
  color: var(--ink-dim);
  font-size: 15.5px;
  margin: 0 0 12px;
}
.setting-note.unlocked { color: var(--accent); font-style: italic; }

/* per-track recording date (dreams, sketches) */
.t-year {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: .04em;
  flex: none;
  font-variant-numeric: tabular-nums;
}

/* ---------- search results ---------- */

.result-note {
  text-align: center;
  color: var(--ink-dim);
  font-style: italic;
  margin: 40px 0 8px;
}

/* ---------- footer / about ---------- */

.site-footer {
  max-width: 720px;
  margin: 96px auto 48px;
  padding: 0 24px;
}

.about {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

.about img {
  width: 168px;
  border-radius: 3px;
  flex: none;
  filter: grayscale(28%);
}

.about-text p { margin: 0 0 14px; color: var(--ink-dim); }
.about-text em { color: var(--ink); }

.stats {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- player ---------- */

.player {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--player-h);
  background: rgba(24, 21, 19, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  z-index: 50;
  transition: transform .35s ease;
}
.player.hidden { transform: translateY(110%); }

.p-art {
  width: 52px; height: 52px;
  border-radius: 3px;
  object-fit: cover;
  background: var(--bg-raised);
  flex: none;
}

.p-meta { min-width: 0; width: 200px; flex: none; }
.p-title {
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-album {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-faint);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.p-album:hover { color: var(--accent); }

.p-controls { display: flex; align-items: center; gap: 6px; flex: none; }

.pbtn {
  background: none;
  border: none;
  color: var(--ink-dim);
  font-size: 20px;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 6px;
  transition: color .15s;
  font-family: var(--sans);
}
.pbtn:hover { color: var(--ink); }
.pbtn-main {
  font-size: 22px;
  color: var(--ink);
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pbtn-main:hover { border-color: var(--accent); color: var(--accent); }

.p-timeline {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.p-time {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  flex: none;
}

/* custom seek bar: tap anywhere to jump, drag from anywhere (fat hit area) */
.seekbar {
  flex: 1;
  min-width: 0;
  height: 28px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;     /* the page must not steal the drag */
  outline: none;
}
.seek-rail {
  position: relative;
  width: 100%;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
}
.seek-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--ink-dim);
  border-radius: 2px;
}
.seek-thumb {
  position: absolute;
  top: 50%; left: 0%;
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--ink);
}
.seekbar:hover .seek-thumb,
.seekbar:focus-visible .seek-thumb { background: var(--accent); }

.p-dl {
  font-family: var(--sans);
  color: var(--ink-faint);
  text-decoration: none;
  font-size: 18px;
  flex: none;
  padding: 4px 8px;
}
.p-dl:hover { color: var(--accent); }

.p-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px;
  margin: -4px;
}
.p-left:hover { background: rgba(255,255,255,.04); }

/* ---------- now playing sheet ---------- */

.np {
  position: fixed;
  inset: 0;
  z-index: 60;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.04), transparent 55%),
    var(--bg);
  transform: translateY(103%);
  transition: transform .38s cubic-bezier(.32,.72,.24,1);
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: none;   /* the sheet owns its gestures (swipe down = close) */
}
.np.open { transform: translateY(0); }

.np-close {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  color: var(--ink-faint);
  cursor: pointer;
  padding: 8px 20px;
}
.np-close svg { width: 26px; height: 26px; display: block; }
.np-close:hover { color: var(--ink); }

.np-inner {
  max-width: 560px;
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 32px 48px;
  gap: 6px;
}

.np-art img {
  width: min(60vh, 440px);
  height: min(60vh, 440px);
  max-width: 82vw;
  max-height: 82vw;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 60px rgba(0,0,0,.6);
  background: var(--bg-raised);
  margin-bottom: 26px;
}

.np-title {
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.2;
  text-align: center;
}
.np-album {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-faint);
  text-decoration: none;
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.np-album:hover { color: var(--accent); }

.np-seekwrap { width: 100%; }
.np-times {
  display: flex;
  justify-content: space-between;
  margin-top: -2px;
}

.np-controls {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 14px;
}
.np-skip { font-size: 30px; }
.np-main {
  width: 66px; height: 66px;
  font-size: 26px;
}

.np-extra {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}
.np-icon {
  background: none;
  border: none;
  color: var(--ink-faint);
  cursor: pointer;
  padding: 8px;
  display: flex;
}
.np-icon svg { width: 22px; height: 22px; }
.np-icon:hover { color: var(--ink); }
.np-icon.faved { color: var(--accent); }
.np-icon.faved svg path { fill: currentColor; }

/* track-row heart */
.t-fav {
  background: none;
  border: none;
  color: var(--ink-faint);
  cursor: pointer;
  padding: 2px 6px;
  flex: none;
  display: flex;
  opacity: 0;
  transition: opacity .15s, color .15s;
}
.t-fav svg { width: 15px; height: 15px; }
.track:hover .t-fav { opacity: 1; }
.t-fav:hover { color: var(--ink); }
.t-fav.faved { opacity: 1; color: var(--accent); }
.t-fav.faved svg path { fill: currentColor; }
@media (hover: none) { .t-fav { opacity: .6; } .t-fav.faved { opacity: 1; } }

/* ---------- install gate (phones & tablets, not yet installed) ---------- */

.install-gate { display: none; }

/* .gate-on is set on <html> by the inline script in index.html, before paint */
html.gate-on .site-header,
html.gate-on main,
html.gate-on .site-footer,
html.gate-on .player,
html.gate-on .np,
html.gate-on .web-chrome { display: none !important; }

html.gate-on { overflow: hidden; }
html.gate-on body { padding-bottom: 0; overflow: hidden; }

html.gate-on .install-gate {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ig-inner {
  width: 100%;
  max-width: 420px;
  padding: calc(env(safe-area-inset-top, 0px) + 32px) 28px
           calc(env(safe-area-inset-bottom, 0px) + 32px);
  text-align: center;
  margin: auto;
}

.ig-icon {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  display: block;
  margin: 0 auto 18px;
  box-shadow: 0 6px 26px rgba(0, 0, 0, .5);
}

.ig-wordmark {
  font-size: 30px;
  letter-spacing: .28em;
  text-indent: .28em;
  text-transform: lowercase;
  font-weight: 400;
  margin: 0;
}

.ig-sub {
  margin: 6px 0 0;
  color: var(--ink-dim);
  font-style: italic;
  font-size: 14px;
}

.ig-btn {
  display: block;
  width: 100%;
  margin: 30px 0 0;
  padding: 16px 20px;
  background: var(--accent);
  color: #241d10;
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.ig-btn:active { opacity: .8; }

.ig-steps {
  margin-top: 26px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color .3s, background-color .3s;
}
.ig-steps.flash { border-color: var(--accent); background: rgba(216, 176, 106, .07); }

.ig-lead {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.ig-steps ol {
  margin: 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}
.ig-steps ol li { margin-bottom: 5px; }
.ig-steps ol li:last-child { margin-bottom: 0; }

.ig-steps ol li.ig-alt {
  list-style: none;
  margin-left: -20px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-dim);
}

.ig-steps b {
  font-weight: 400;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 14px;
}

/* the glyph chips that stand in for iOS toolbar icons */
.ig-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 5px;
  margin: 0 1px;
  vertical-align: -5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-raised);
  color: var(--ink);
}
.ig-key svg { width: 14px; height: 14px; }

.ig-why {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-dim);
}

.ig-skip {
  display: block;
  margin: 24px auto 0;
  background: none;
  border: none;
  color: var(--ink-faint);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .06em;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 8px;
}

/* ---------- responsive ---------- */

@media (max-width: 760px) {
  /* compact header — the music should be near the top of the screen */
  .site-header { padding: 14px 12px 4px; }
  .wordmark { font-size: 29px; letter-spacing: .2em; text-indent: .2em; }
  .site-sub { font-size: 12px; margin-top: 1px; }
  .site-nav { margin-top: 12px; gap: 8px; flex-wrap: nowrap; }
  .textbtn {
    font-size: 11px;
    padding: 7px 13px;
    letter-spacing: .08em;
    white-space: nowrap;
    flex: none;
  }
  #search {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    font-size: 13px;
    padding: 7px 13px;
  }
  .nav-gear { flex: none; }
  body.has-chrome main,
  body.has-chrome .site-header { padding-top: calc(env(safe-area-inset-top, 0px) + 44px); }

  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px 16px; }
  .album-head { gap: 24px; }
  .album-head .cover { width: min(300px, 62vw); }
  .about { flex-direction: column; align-items: center; text-align: center; }
  .p-meta { width: auto; flex: 1; }

  /* pull the grid up under the header */
  main { padding: 10px 12px 24px; }
  .sort-row { margin-top: 10px; margin-bottom: -20px; }
  .section-title { margin-top: 30px; margin-bottom: 14px; }

  /* tighter track rows — use the width */
  .track { padding: 9px 2px; gap: 9px; }
  .track .t-num { width: 20px; }
  .track .t-title { font-size: 16px; }
  .track .t-dl { padding: 2px 4px; }
  .t-fav { padding: 2px 3px; }
  .album-page { padding-top: 16px; }

  /* slim seek bar pinned across the top edge of the player */
  .p-timeline {
    position: absolute;
    top: -14px; left: 0; right: 0;
    padding: 0 4px;
    gap: 0;
  }
  .p-timeline .p-time { display: none; }
  .seek-thumb { width: 16px; height: 16px; margin: -8px 0 0 -8px; }
  .p-dl { display: none; }
  body { padding-bottom: calc(var(--player-h) + 12px); }

  .np-inner { padding: 56px 28px 40px; }
  .np-art img, .np-art .np-noart { width: min(78vw, 420px); height: min(78vw, 420px); }
}
