/* ============================================================
   DAABSTRA · styles.css
   ============================================================ */

:root {
  --bg:           #fefdfb;
  --text:         #1a1612;
  --text-muted:   #888780;
  --text-faded:   #b4b2a9;
  --rule:         #cfccc4;
  --amber:        #ba7517;
  --amber-bg:     #faeeda;
  --red:          #a32d2d;
  --green-live:   #1faa59;
  --whatsapp:     #1faa59;
  --olive:        #5c5a3a;
  --olive-bg:     #f4f1e8;
  --sage:         #6b8e3d;
  --sage-bg:      #e8efd5;
  --purple:       #4a6c8c;     /* AANKONDIGING accent */
  --purple-bg:    #e6edf3;     /* AANKONDIGING zachte tint */

  --mood-c-stralend: #f5b942;
  --mood-c-blij:     #88a85a;
  --mood-c-neutraal: #c8c4b8;
  --mood-c-bezorgd:  #b76b3a;
  --mood-c-daab:     #a32d2d;

  --mood-bg-stralend: #fdf3d9;
  --mood-bg-blij:     #e3ecd1;
  --mood-bg-neutraal: #ece8de;
  --mood-bg-bezorgd:  #ecd9c5;
  --mood-bg-daab:     #f5dada;

  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-serif:   'Spectral', Georgia, 'Times New Roman', serif;

  --gutter:       20px;

  --mood-stralend: none;
  --mood-blij:     none;
  --mood-neutraal: none;
  --mood-bezorgd:  none;
  --mood-daab:     none;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
input { font: inherit; }
hr { border: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- BLUEPRINT CORNERS ---------- */
.corner {
  position: fixed;
  width: 14px; height: 14px;
  z-index: 100;
  pointer-events: none;
}
.corner-tl { top: 10px; left: 10px;     border-top: 1.5px solid var(--text);    border-left:  1.5px solid var(--text); }
.corner-tr { top: 10px; right: 10px;    border-top: 1.5px solid var(--text);    border-right: 1.5px solid var(--text); }
.corner-bl { bottom: 10px; left: 10px;  border-bottom: 1.5px solid var(--text); border-left:  1.5px solid var(--text); }
.corner-br { bottom: 10px; right: 10px; border-bottom: 1.5px solid var(--text); border-right: 1.5px solid var(--text); }

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 0 80px;
  position: relative;
}

.hero-masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.masthead-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.masthead-week {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-live);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.brand        { font-weight: 600; color: var(--text); }
.dot, .sep    { color: var(--text-muted); }
.live-pill {
  background: var(--green-live);
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 3px 8px;
  border-radius: 3px;
}
.masthead-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-family: var(--font-mono);
  text-align: right;
}
.datetime-line {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.datetime-line .sep { padding: 0 3px; }
.edition-line {
  font-size: 11px;
  letter-spacing: 0.12em;
}
.edition-label{ color: var(--text-muted); margin-right: 6px; }
.edition-no   { color: var(--amber); font-weight: 600; }

.masthead-week .week-cells {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  width: 100%;
  max-width: 360px;
}

.week-cell {
  aspect-ratio: 1.1 / 1;
  background: var(--mood-bg-neutraal);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.week-cell:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.week-cell .day-num {
  position: absolute;
  bottom: 3px;
  left: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}

.week-cell .mood-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.week-cell.today {
  outline: 1.5px solid var(--amber);
  outline-offset: -1.5px;
}

.week-cell.future {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 4px,
      rgba(136, 135, 128, 0.16) 4px,
      rgba(136, 135, 128, 0.16) 5px
    ),
    var(--bg);
  cursor: default;
}
.week-cell.future:hover { transform: none; box-shadow: none; }
.week-cell.future .day-num { color: var(--text-muted); }

.week-cell.mood-stralend { background: var(--mood-bg-stralend); color: var(--mood-c-stralend); }
.week-cell.mood-blij     { background: var(--mood-bg-blij);     color: var(--mood-c-blij); }
.week-cell.mood-neutraal { background: var(--mood-bg-neutraal); color: var(--mood-c-neutraal); }
.week-cell.mood-bezorgd  { background: var(--mood-bg-bezorgd);  color: var(--mood-c-bezorgd); }
.week-cell.mood-daab     { background: var(--mood-bg-daab);     color: var(--mood-c-daab); }

/* ---------- SCENE ---------- */
.hero-scene {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  min-height: 320px;
}

.scene-image {
  max-height: 70vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  filter: var(--scene-filter, none);
  opacity: 0;
  transition: opacity 0.4s ease, filter 0.5s ease;
}
.scene-image.scene-ready {
  opacity: 1;
}

/* ---------- NEWS CARD ---------- */
.news-card {
  background: #fff;
  border: 1px solid var(--text);
  border-radius: 5px;
  padding: 12px 18px;
  margin: 0 0 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.news-mood {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  flex-shrink: 0;
}
.mood-tag {
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 3px 7px;
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
  background: var(--mood-c-daab);
}
.mood-tag.mood-tag-stralend { background: var(--mood-c-stralend); color: var(--text); }
.mood-tag.mood-tag-blij     { background: var(--mood-c-blij); }
.mood-tag.mood-tag-neutraal { background: var(--mood-c-neutraal); color: var(--text); }
.mood-tag.mood-tag-bezorgd  { background: var(--mood-c-bezorgd); }
.mood-tag.mood-tag-daab     { background: var(--mood-c-daab); }
.mood-stat {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.mood-stat .sep { padding: 0 3px; }

.news-headline {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
  text-align: center;
}

.news-source {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  white-space: nowrap;
}

.scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--rule);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  animation: bob 2.4s ease-in-out infinite;
  z-index: 20;
}
.scroll-down:hover {
  color: var(--text);
  border-color: var(--text);
  transform: translateX(-50%) translateY(-2px);
  animation-play-state: paused;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(4px); }
}

/* ============================================================
   BELOW THE FOLD
   ============================================================ */
.below-fold {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0 60px;
}

.rule-dashed {
  border-top: 0.5px dashed var(--text-muted);
  margin: 0 0 24px;
  height: 0;
}

/* ---------- INPUT BAR ---------- */
.input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1efe8;
  border-radius: 28px;
  padding: 6px 6px 6px 10px;
  margin-bottom: 8px;
}

.input-plus {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: var(--amber);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.15s, background 0.15s, filter 0.15s;
  animation: plus-pulse 2.6s ease-out infinite;
}
.input-plus:hover {
  filter: brightness(0.92);
  animation-play-state: paused;
}
.input-plus:active {
  transform: scale(0.95);
}

@keyframes plus-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(186, 117, 23, 0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(186, 117, 23, 0); }
  100% { box-shadow: 0 0 0 0 rgba(186, 117, 23, 0); }
}

.input-text {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
  min-width: 0;
}
.input-text::placeholder { color: var(--text-muted); }

.input-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.15s, background 0.15s;
}
.input-send:hover  { background: #1c9a51; transform: scale(1.05); }
.input-send:active { transform: scale(0.95); }
.input-send svg    { transform: translateX(-1px); }

.input-disclaimer {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin: 0 0 28px;
  padding: 0 14px;
  text-align: center;
}

/* ---------- FEED ---------- */
.feed { margin-top: 8px; }

.feed-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
}
.feed-title { color: var(--text); font-weight: 600; }
.feed-meta  { color: var(--text-muted); letter-spacing: 0.04em; font-style: italic; }

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message-thread {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ---- Bericht (basis) ---- */
.message {
  background: #fff;
  border: 1px solid #ece9e0;
  border-radius: 6px;
  padding: 12px 14px 10px;
  position: relative;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.message-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.message-author { color: var(--text); }
.message-time   { color: var(--text-muted); }

.message-body {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 8px;
}

.vote-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-faded);
  transition: color 0.15s;
  padding: 2px 4px;
  border-radius: 3px;
}
.vote-btn:hover { color: var(--text); }
.vote-btn.up.active   { color: var(--whatsapp); }
.vote-btn.down.active { color: var(--red); }
.vote-btn .count { font-weight: 500; }
.vote-btn svg { display: block; }
.vote-btn.down svg { transform: rotate(180deg); }

.message-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--text-muted);
}
.message-status.urgent { color: var(--red); font-weight: 500; }

.message.fading {
  opacity: 0.45;
  filter: grayscale(0.6);
}
.message.fading::after {
  content: 'WEGGEDUIMD';
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(-8deg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 3px 8px;
  border-radius: 2px;
  opacity: 0.7;
  pointer-events: none;
}

/* ---- Bericht: PROMO ---- */
.message.promo {
  background: var(--amber-bg);
  border: 1px solid var(--amber);
  border-left-width: 3px;
}
.message.promo .message-meta { color: var(--amber); }
.message.promo .message-author {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--amber);
}
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: 1px;
}
.tag-promo { background: var(--amber); color: #fff; }
.promo-guarantee {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--amber);
  margin-top: 4px;
  font-style: italic;
}

/* ---- Bericht: SPONSOR (goed-doel) ---- */
.message.goed-doel {
  background: var(--sage-bg);
  border: 1px solid var(--sage);
  border-left-width: 3px;
}
.message.goed-doel .message-meta { color: var(--sage); }
.message.goed-doel .message-author {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--sage);
}
.tag-sponsor { background: var(--sage); color: #fff; }

.sponsor-amount {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--sage);
  margin: -2px 0 8px;
  letter-spacing: 0.01em;
}

.message.goed-doel .promo-guarantee {
  color: var(--sage);
}

/* ---- Bericht: BROODJE DAAB / RUBRIEK ---- */
.message.redactie {
  background: var(--olive-bg);
  border: 1px solid var(--olive);
  border-left-width: 3px;
}
.message.redactie .message-meta { color: var(--olive); }
.message.redactie .message-author {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--olive);
}
.tag-rubriek { background: var(--olive); color: #fff; }
.rubriek-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  line-height: 1.35;
}
.rubriek-rating {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--olive);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ---- Bericht: AANKONDIGING (auto-getriggerd door scene-betaling) ---- */
.message.aankondiging {
  background: var(--purple-bg);
  border: 1px solid var(--purple);
  border-left-width: 3px;
}
.message.aankondiging .message-meta { color: var(--purple); }
.tag-aankondiging {
  background: var(--purple);
  color: #fff;
}
.message.aankondiging .message-body {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.aankondiging-status {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--purple);
  letter-spacing: 0.06em;
  margin-top: 6px;
  opacity: 0.75;
  font-style: italic;
}

.message.pinned::before {
  content: '📌';
  position: absolute;
  top: -8px;
  left: 12px;
  background: var(--bg);
  padding: 0 4px;
  font-size: 11px;
}

/* ============================================================
   DAABSTRA-REACTIE — ingesprongen card, neemt de mood van
   het moederbericht over zodat de thread visueel verbindt.
   ============================================================ */
.message-reply {
  margin-left: 28px;
  background: #fbfaf6;
  border: 1px solid #ece9e0;
  border-left: 2px solid var(--text-muted);
  border-radius: 0 6px 6px 0;
  padding: 10px 13px;
  position: relative;
}

.message-reply-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.message-reply-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--text);
}
.message-reply-time {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.message-reply-content {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.message.goed-doel + .message-reply {
  background: #f3f7ea;
  border-left-color: var(--sage);
}
.message.promo + .message-reply {
  background: #fdf6ec;
  border-left-color: var(--amber);
}
.message.redactie + .message-reply {
  background: #f9f8f3;
  border-left-color: var(--olive);
}
.message.aankondiging + .message-reply {
  background: #f5f0fa;
  border-left-color: var(--purple);
}

/* ---------- FOOTER ---------- */
.footer { margin-top: 40px; }
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
}

/* ============================================================
   INPUT-BAR + KEUZE-POPOVER
   ============================================================ */
.input-bar-wrapper {
  position: relative;
}

.input-plus.active {
  transform: rotate(45deg);
  color: #fff;
  background: var(--text);
  animation: none;
  box-shadow: none;
}

.choice-popover {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  z-index: 50;
  animation: popover-in 0.18s ease-out;
}
.choice-popover[hidden] { display: none; }

.choice-popover::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 22px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transform: rotate(45deg);
}

@keyframes popover-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.choice-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.choice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.choice-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ece9e0;
  border-radius: 6px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.choice-row:hover {
  border-color: var(--text);
  background: #f7f5ee;
}
.choice-row[aria-checked="true"] {
  border-color: var(--text);
  background: #f7f5ee;
}

.choice-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: #fff;
  flex-shrink: 0;
  position: relative;
}
.choice-row[aria-checked="true"] .choice-radio {
  border-color: var(--text);
}
.choice-row[aria-checked="true"] .choice-radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text);
}

.choice-label {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}
.choice-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.choice-arrow {
  font-family: var(--font-mono);
  color: var(--text-faded);
  font-size: 14px;
}

.choice-cta {
  display: block;
  width: 100%;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  padding: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s;
}
.choice-cta:hover:not(:disabled) {
  background: #000;
}
.choice-cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .hero-masthead    {
    flex-wrap: wrap;
    gap: 12px;
    row-gap: 14px;
  }
  .masthead-left    { order: 1; }
  .masthead-right   { order: 2; }
  .masthead-week    { order: 3; flex-basis: 100%; }
  .masthead-week .week-cells { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .live-pill        { font-size: 9px; padding: 2px 6px; }
  .datetime-line    { font-size: 9px; }
  .edition-line     { font-size: 10px; }
  .news-card        {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 14px;
  }
  .news-headline    { font-size: 15px; text-align: left; }
  .news-source      { justify-content: space-between; }
  .scene-image      { max-height: 60vh; }
  .week-cell .day-num { font-size: 8px; bottom: 2px; left: 4px; }
  .masthead-week .week-cells { max-width: 280px; }

  .message-reply { margin-left: 16px; padding: 9px 11px; }
  .message-reply-content { font-size: 13px; }

  .choice-popover { padding: 14px; }
  .choice-row { padding: 9px 10px; }
  .choice-label { font-size: 13px; }
}

@media (min-width: 720px) {
  .scene-image      { max-height: 70vh; }
}
