/* eriellas.dad — component styles */

/* ─── Layout ─────────────────────────────────────────────────── */
.ed-main {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* ─── Header ─────────────────────────────────────────────────── */
.ed-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 880px;
  margin: 0 auto;
  padding: 18px 28px 14px;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, var(--bg) 70%, transparent);
}
.ed-logo {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text);
}
.ed-logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  display: inline-block;
}
.ed-logo-s { color: var(--accent); font-weight: 700; }

.ed-header-actions { display: flex; align-items: center; gap: 10px; }

.ed-theme-toggle {
  display: flex; align-items: center;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
}
.ed-theme-btn {
  width: 30px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.18s ease;
}
.ed-theme-btn:hover { color: var(--text); }
.ed-theme-btn.is-active {
  background: var(--accent);
  color: var(--bg);
}

.ed-icon-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  transition: all 0.18s ease;
}
.ed-icon-btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
}
.ed-icon-btn.small { padding: 4px 9px; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── Hero ───────────────────────────────────────────────────── */
.ed-hero {
  padding: 28px 0 56px;
  position: relative;
}
.ed-hero-grid {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 36px;
  align-items: start;
}
.ed-hero-avatar-wrap { position: relative; }

.ed-avatar {
  width: 156px; height: 156px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  overflow: visible;
  transition: transform 0.2s cubic-bezier(.6,.2,.2,1.3);
  user-select: none;
}
.ed-avatar:hover { transform: scale(1.02) rotate(-1deg); }
.ed-avatar.avatar-wobble-1 { animation: avatar-wob 0.42s ease; }
.ed-avatar.avatar-wobble-2 { animation: avatar-wob 0.42s ease reverse; }
.ed-avatar.avatar-wobble-0 { animation: avatar-wob 0.5s ease; }
@keyframes avatar-wob {
  0% { transform: scale(1) rotate(0); }
  30% { transform: scale(1.08) rotate(-6deg); }
  60% { transform: scale(0.97) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}

.ed-avatar-inner {
  position: absolute; inset: 6px;
  border-radius: 50%;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      135deg,
      var(--accent-soft) 0 6px,
      transparent 6px 14px
    ),
    var(--surface-2);
  display: flex; align-items: center; justify-content: center;
}
.ed-avatar-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--muted);
}
.ed-avatar-placeholder > span:first-child {
  font-family: 'Instrument Serif', serif;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--text-soft);
  letter-spacing: -0.04em;
}
.ed-avatar-sub { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }

.ed-avatar-shades {
  position: absolute; left: 50%; top: 36%;
  width: 120%; height: 40px;
  transform: translateX(-50%) rotate(-3deg);
  color: var(--text);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,0.4));
  animation: drop-in 0.45s cubic-bezier(.6,.2,.2,1.3) both;
}
@keyframes drop-in {
  0%   { opacity: 0; transform: translate(-50%, -40px) rotate(-3deg); }
  60%  { opacity: 1; transform: translate(-50%, 4px) rotate(-3deg); }
  100% { opacity: 1; transform: translate(-50%, 0) rotate(-3deg); }
}
.ed-avatar-sticker {
  position: absolute; right: -14px; top: -10px;
  background: #ffcf3a;
  color: #2b1d05;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.05;
  padding: 8px 9px;
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(14deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.35), inset 0 0 0 2px rgba(0,0,0,0.06);
  border: 2px dashed #b8881e;
  animation: sticker-pop 0.5s cubic-bezier(.5,.2,.2,1.5) both;
}
@keyframes sticker-pop {
  0%   { opacity: 0; transform: rotate(0deg) scale(0); }
  60%  { opacity: 1; transform: rotate(20deg) scale(1.15); }
  100% { opacity: 1; transform: rotate(14deg) scale(1); }
}

/* speech bubble */
.ed-speech {
  position: absolute;
  top: -8px; left: 168px;
  max-width: 240px;
  background: var(--text);
  color: var(--bg);
  font-size: 12px;
  line-height: 1.45;
  padding: 10px 13px;
  border-radius: 12px;
  box-shadow: 0 14px 28px -16px rgba(0,0,0,0.5);
  animation: speech-in 0.2s ease both;
  z-index: 5;
}
.ed-speech-tail {
  position: absolute; left: -7px; top: 16px;
  width: 14px; height: 14px;
  background: var(--text);
  transform: rotate(45deg);
  border-radius: 2px;
}
@keyframes speech-in {
  from { opacity: 0; transform: translateY(-4px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* hero text */
.ed-hero-text { padding-top: 4px; }
.ed-hello {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.ed-hello::before {
  content: "";
  width: 24px; height: 1px; background: currentColor;
  display: inline-block;
}
.ed-h1 {
  font-size: clamp(3.4rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 30px;
}
.ed-h1-italic {
  font-style: italic;
  color: var(--accent);
  display: inline-block;
}
.ed-subhead {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 28px;
  text-wrap: pretty;
}

/* pills */
.ed-pills {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ed-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
  color: var(--text);
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}
.ed-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.ed-pill-meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.ed-pill:hover .ed-pill-meta { color: var(--accent); }

/* status block */
.ed-status {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  max-width: 540px;
}
.ed-status-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.ed-status-line {
  display: inline-flex; align-items: baseline; gap: 8px;
  text-align: left;
  flex: 1;
  cursor: pointer;
  color: var(--text);
  font-size: 15px;
  border-radius: 6px;
  padding: 2px 4px;
  margin: -2px -4px;
  transition: background 0.18s ease;
}
.ed-status-line:hover { background: var(--accent-soft); }
.ed-status-arrow {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.ed-status-text {
  font-family: 'Newsreader', serif;
  flex: 1;
  animation: status-in 0.42s ease both;
}
@keyframes status-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ed-status-hint {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.18s ease;
  flex-shrink: 0;
}
.ed-status-line:hover .ed-status-hint { opacity: 1; }

/* ─── Now strip ──────────────────────────────────────────────── */
.ed-now {
  position: relative;
  margin: 4px 0 8px;
  padding: 22px 26px 18px;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0 31px,
      var(--accent-soft) 31px 32px
    ),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  /* the punched-hole left margin (legal pad vibe) */
}
.ed-now::before {
  content: "";
  position: absolute;
  left: 56px; top: 12px; bottom: 12px;
  width: 1px;
  background: rgba(229, 90, 90, 0.35);
}
.ed-now-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.ed-now-tab {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.ed-now-tab-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: now-pulse 2.4s ease-in-out infinite;
}
@keyframes now-pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-soft); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}
.ed-now-meta {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ed-now-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px;
  padding-left: 44px;
}
.ed-now-row {
  display: grid;
  grid-template-columns: 86px 16px 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}
.ed-now-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  padding-top: 2px;
}
.ed-now-arrow {
  color: var(--accent);
  font-size: 13px;
  padding-top: 1px;
}
.ed-now-text {
  text-wrap: pretty;
  font-family: 'Newsreader', serif;
}
.ed-now-foot {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.ed-now-foot a {
  color: var(--text-soft);
  border-bottom: 1px dotted var(--border-strong);
  transition: color 0.18s ease;
}
.ed-now-foot a:hover { color: var(--accent); border-color: currentColor; }

/* ─── Section heads ──────────────────────────────────────────── */
.ed-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--border);
}
.ed-section-label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Film strip ─────────────────────────────────────────────── */
.ed-strip-section {
  padding: 32px 0 40px;
  position: relative;
}
.ed-strip-viewport {
  position: relative;
  overflow: hidden;
  padding: 18px 0 28px;
  margin: 0 -28px;
  /* breakout vignette */
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  cursor: grab;
  touch-action: pan-y;
}
.ed-strip-viewport:active { cursor: grabbing; }
.ed-strip-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  width: max-content;
  padding: 0 28px;
}

.ed-polaroid {
  flex-shrink: 0;
  width: 196px;
  background: var(--polaroid);
  color: var(--polaroid-text);
  padding: 12px 12px 14px;
  border-radius: 4px;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 12px 24px -14px rgba(0,0,0,0.55), 0 2px 6px -3px rgba(0,0,0,0.4);
  transition: transform 0.25s cubic-bezier(.5,.2,.2,1.4), box-shadow 0.25s ease;
  border: 1px solid rgba(0,0,0,0.06);
}
.ed-polaroid:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.04) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 22px 40px -18px rgba(0,0,0,0.7), 0 6px 12px -6px rgba(0,0,0,0.4);
  z-index: 3;
}
.ed-polaroid-photo {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.ed-polaroid-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ed-polaroid-stripes { position: absolute; inset: 0; width: 100%; height: 100%; }
.ed-polaroid-tag {
  position: absolute; bottom: 8px; right: 8px;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.4);
  padding: 3px 6px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.ed-polaroid-caption {
  font-size: 11px;
  color: var(--polaroid-text);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ─── Lightbox ───────────────────────────────────────────────── */
.ed-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,5,2,0.86);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: fade-in 0.18s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.ed-lightbox-polaroid {
  background: var(--polaroid);
  color: var(--polaroid-text);
  padding: 24px 24px 32px;
  border-radius: 6px;
  max-width: 460px; width: 100%;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  animation: pop-in 0.22s cubic-bezier(.5,.2,.2,1.3);
  transform: rotate(-1.2deg);
}
@keyframes pop-in {
  from { opacity: 0; transform: rotate(-1.2deg) scale(0.92); }
  to   { opacity: 1; transform: rotate(-1.2deg) scale(1); }
}
.ed-lightbox-photo {
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  margin-bottom: 18px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ed-lightbox-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.ed-lightbox-photo-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-align: center;
  line-height: 1.7;
  background: rgba(0,0,0,0.35);
  padding: 10px 14px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.ed-lightbox-caption {
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.05em;
}
.ed-lightbox-close, .ed-lightbox-nav {
  position: absolute;
  color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.18s ease;
}
.ed-lightbox-close:hover, .ed-lightbox-nav:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.ed-lightbox-close { top: 24px; right: 24px; }
.ed-lightbox-nav.left  { left: 24px;  top: 50%; transform: translateY(-50%); }
.ed-lightbox-nav.right { right: 24px; top: 50%; transform: translateY(-50%); }

/* ─── Help modal ─────────────────────────────────────────────── */
.ed-modal {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(8,5,2,0.65);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade-in 0.18s ease;
}
.ed-modal-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 30px 70px -16px rgba(0,0,0,0.7);
  animation: pop-in-modal 0.2s cubic-bezier(.5,.2,.2,1.3);
}
@keyframes pop-in-modal {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.ed-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.ed-modal-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.ed-modal-body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.ed-help-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px;
  align-items: center;
  font-size: 13px;
}
.ed-help-keys {
  display: inline-block;
  padding: 5px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11.5px;
  color: var(--text);
  letter-spacing: 0.03em;
  width: fit-content;
}
.ed-help-does { color: var(--text-soft); }
.ed-modal-foot {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ─── Dad ticker ─────────────────────────────────────────────── */
.ed-ticker {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: flex; align-items: stretch;
  background: var(--text);
  color: var(--bg);
  border-top: 3px double var(--accent);
  font-size: 12px;
  letter-spacing: 0.04em;
  animation: ticker-slide 0.32s cubic-bezier(.5,.2,.2,1.2);
}
@keyframes ticker-slide {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.ed-ticker-tag {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 10px 14px;
  display: inline-flex; align-items: center;
}
.ed-ticker-window {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center;
}
.ed-ticker-track {
  white-space: nowrap;
  animation: ticker-scroll 90s linear infinite;
  padding: 10px 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Toast ──────────────────────────────────────────────────── */
.ed-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  background: var(--text);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 32px -14px rgba(0,0,0,0.6);
  animation: toast-in 0.3s cubic-bezier(.5,.2,.2,1.3);
}
@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, -16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ─── Confetti hearts ────────────────────────────────────────── */
.ed-confetti {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 400;
  overflow: hidden;
}
.ed-heart {
  position: absolute;
  display: inline-block;
  font-family: serif;
  animation: heart-fly 1.7s cubic-bezier(.2,.6,.4,1) forwards;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
@keyframes heart-fly {
  0%   { opacity: 0; transform: translate(0,0) rotate(0deg) scale(0.4); }
  18%  { opacity: 1; transform: translate(calc(var(--dx) * 0.2), calc(var(--dy) * 0.2)) rotate(calc(var(--rot) * 0.2)) scale(1.2); }
  100% { opacity: 0; transform: translate(var(--dx), calc(var(--dy) + 300px)) rotate(var(--rot)) scale(0.6); }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.ed-footer {
  padding: 36px 0 56px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 36px;
}
.ed-footer-row {
  display: inline-flex; align-items: center; gap: 10px;
  flex-wrap: wrap; justify-content: center;
}
.ed-footer .ed-dot { color: var(--border-strong); }
.ed-footer a, .ed-footer-link {
  color: var(--muted);
  transition: color 0.18s ease;
  border-bottom: 1px dotted transparent;
}
.ed-footer a:hover, .ed-footer-link:hover {
  color: var(--accent);
  border-color: currentColor;
}
.ed-footer-build {
  margin-top: 12px;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 680px) {
  .ed-main, .ed-header { padding-left: 20px; padding-right: 20px; }
  .ed-hero { padding: 12px 0 36px; }
  .ed-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: start;
  }
  .ed-avatar { width: 116px; height: 116px; }
  .ed-avatar-placeholder > span:first-child { font-size: 2.6rem; }
  .ed-avatar-sticker { width: 42px; height: 42px; font-size: 9px; right: -8px; top: -6px; }
  .ed-h1 { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .ed-subhead { font-size: 1rem; }
  .ed-speech { position: static; max-width: 100%; margin-top: 10px; }
  .ed-speech-tail { display: none; }
  .ed-help-row { grid-template-columns: 1fr; gap: 4px; }
  .ed-pill { padding: 11px 14px; min-height: 44px; }
  .ed-pill-meta { display: none; }
  .ed-status { flex-direction: column; align-items: stretch; gap: 6px; }
  .ed-strip-viewport { margin: 0 -20px; }
  .ed-polaroid { width: 160px; }
  .ed-now { padding: 18px 18px 14px; }
  .ed-now::before { display: none; }
  .ed-now-list { padding-left: 0; }
  .ed-now-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--border);
  }
  .ed-now-row:last-child { border-bottom: none; }
  .ed-now-label { text-align: left; padding-top: 0; }
  .ed-now-arrow { display: none; }
  .ed-lightbox { padding: 20px; }
  .ed-lightbox-nav.left  { left: 8px; }
  .ed-lightbox-nav.right { right: 8px; }
  .ed-ticker { font-size: 11px; }
  .ed-ticker-tag { padding: 8px 10px; font-size: 10px; }
}
