/* ============================================================
   SoulStyleTV — theme + layout
   Colors: navy background · gold outlines · medium-blue cards · light-blue buttons
   ============================================================ */
:root {
  --bg:        #0b1b34;   /* deep navy */
  --bg-2:      #0f2748;   /* raised navy (live band, header) */
  --card:      #1d3c6b;   /* medium-blue cards */
  --card-2:    #244a82;   /* card hover */
  --btn:       #5aa0e0;   /* light-blue buttons */
  --btn-2:     #74b4ee;   /* button hover */
  --gold:      #e8c468;   /* outlines + accents */
  --gold-deep: #d4af37;
  --text:      #eaf1fb;
  --text-muted:#9fb4d4;
  --line:      rgba(232, 196, 104, 0.35);  /* gold hairline */
  --radius:    10px;
  --radius-sm: 7px;
  --maxw:      1240px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }
/* Make the HTML [hidden] attribute authoritative (it's overridden by display rules otherwise) */
[hidden] { display: none !important; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.text-muted { color: var(--text-muted); }

/* ---------- Nav (words only, gold underline) ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 27, 52, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 62px; }
.nav__brand {
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: 0.02em;
  color: var(--text); white-space: nowrap; display: inline-flex; align-items: center; gap: 9px;
}
.nav__brand img { height: 30px; width: auto; }
.nav__brand b { color: var(--gold); font-weight: 800; }
.nav__links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav__links a {
  color: var(--text-muted); font-weight: 500; font-size: 0.96rem; padding: 4px 0;
  border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--text); border-bottom-color: var(--gold); }

.nav__toggle {
  display: none; background: none; border: 1px solid var(--line); color: var(--gold);
  font-size: 1.2rem; line-height: 1; width: 40px; height: 38px; border-radius: var(--radius-sm); cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--btn); color: #07203d; }
.btn--primary:hover { background: var(--btn-2); color: #07203d; }
.btn--ghost { background: transparent; border-color: var(--gold-deep); color: var(--gold); }
.btn--ghost:hover { background: rgba(232,196,104,0.12); }
.btn--block { width: 100%; }

/* ============================================================
   Live band (top ~20vh)
   ============================================================ */
.live-band { background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 16px 0; }
.live-band__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.live-band__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: 9px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff4d4d; box-shadow: 0 0 0 0 rgba(255,77,77,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,77,77,.6)} 70%{box-shadow:0 0 0 9px rgba(255,77,77,0)} 100%{box-shadow:0 0 0 0 rgba(255,77,77,0)} }

/* Live band: up to 3 channels playing at once; the focused one centers + reveals
   its title/description (left) and SoulSite card (right); the others dim. */
.live-stage { display: flex; align-items: center; justify-content: center; gap: 14px; min-width: 0; }
.live-tile { display: flex; align-items: stretch; gap: 14px; min-width: 0; flex: 0 1 200px; opacity: 0.5; transition: opacity 0.25s ease, flex-basis 0.25s ease; }
.live-tile.is-active { flex: 1 1 auto; opacity: 1; }

.live-tile__meta, .live-tile__soul { display: none; min-width: 0; }
.live-tile.is-active .live-tile__meta { display: flex; flex-direction: column; justify-content: center; flex: 0 0 180px; }
.live-tile.is-active .live-tile__soul { display: block; flex: 0 0 210px; }
.live-tile.is-active .live-tile__soul .soulcard { padding: 0; height: 100%; justify-content: center; }

.live-tile__screen { position: relative; flex: 1 1 auto; aspect-ratio: 16/9; min-width: 0; background: #000; border: 1px solid var(--gold-deep); border-radius: var(--radius); overflow: hidden; }
.live-tile.is-active .live-tile__screen { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-deep), 0 10px 30px rgba(0,0,0,0.4); }
.live-tile__screen iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.live-tile__focus { position: absolute; inset: 0; z-index: 3; background: transparent; border: 0; cursor: pointer; }
.live-tile.is-active .live-tile__focus { display: none; }
.live-tile:not(.is-active) .live-tile__screen::after { content: ""; position: absolute; inset: 0; z-index: 2; background: rgba(7,18,38,0.5); transition: background 0.2s; }
.live-tile:not(.is-active):hover { opacity: 0.85; }
.live-tile:not(.is-active):hover .live-tile__screen::after { background: rgba(7,18,38,0.2); }

.live-tile__livetag { position: absolute; top: 8px; left: 8px; z-index: 4; background: #ff4d4d; color: #fff; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; padding: 3px 7px; border-radius: 4px; }
.live-tile__chip { position: absolute; left: 8px; bottom: 8px; z-index: 4; max-width: calc(100% - 16px); background: rgba(7,18,38,0.82); color: var(--text); font-size: 0.72rem; font-weight: 600; padding: 3px 8px; border-radius: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-tile.is-active .live-tile__chip { display: none; }

.live-tile__eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.live-tile__eyebrow.is-live { color: #ff8a8a; }
.live-tile__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.25; margin: 0 0 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.live-tile__desc { color: var(--text-muted); font-size: 0.85rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* Empty live state: message + SoulSite cards */
.live-empty { text-align: center; padding: 6px 0 4px; }
.live-empty__msg { color: var(--text-muted); margin-bottom: 14px; }
.live-empty__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }

/* ============================================================
   Filter bar
   ============================================================ */
.filters { padding: 18px 0 6px; }
.filters__row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  background: transparent; border: 1px solid var(--gold-deep); color: var(--gold);
  border-radius: 999px; padding: 7px 14px; font-size: 0.86rem; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.chip:hover { background: rgba(232,196,104,0.12); }
.chip.is-active { background: var(--btn); border-color: var(--btn); color: #07203d; }
.chip--live.is-active { background: #ff4d4d; border-color: #ff4d4d; color: #fff; }

/* ============================================================
   TV-guide member grid (three-tier cards)
   ============================================================ */
.tv { padding: 16px 0 48px; }
.tv__grid { display: grid; gap: 12px; }
.tv-card {
  display: grid; grid-template-columns: 200px 1fr 220px; gap: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.tv-card:hover { border-color: var(--gold); }
/* left: thumbnail (click to play) */
.tv-card__media { position: relative; cursor: pointer; background: #000; aspect-ratio: 16/9; }
.tv-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tv-card__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(7,20,40,0.15); transition: background 0.15s;
}
.tv-card__media:hover .tv-card__play { background: rgba(7,20,40,0.35); }
.tv-card__play svg { width: 52px; height: 52px; color: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.tv-card__livetag { position: absolute; top: 8px; left: 8px; background: #ff4d4d; color: #fff; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; padding: 3px 7px; border-radius: 4px; }
/* middle: title + description */
.tv-card__body { padding: 10px 14px; border-left: 1px solid var(--line); border-right: 1px solid var(--line); min-width: 0; }
.tv-card__title { font-weight: 600; font-size: 0.92rem; margin: 0 0 4px; line-height: 1.3; }
.tv-card__desc { color: var(--text-muted); font-size: 0.83rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tv-card__cats { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.tv-card__cat { font-size: 0.68rem; color: var(--gold); border: 1px solid var(--line); border-radius: 999px; padding: 2px 8px; }
/* right: SoulSite card */
.soulcard { padding: 10px 14px; display: flex; flex-direction: column; gap: 6px; }
.soulcard__head { display: flex; align-items: center; gap: 9px; }
.soulcard__avatar { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--gold); object-fit: cover; flex-shrink: 0; background: var(--bg-2); }
.soulcard__name { font-weight: 700; font-size: 0.92rem; }
.soulcard__label { font-size: 0.64rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.soulcard__blurb { color: var(--text-muted); font-size: 0.82rem; margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.soulcard__btn { margin-top: auto; padding: 6px 12px; font-size: 0.82rem; }

/* infinite-scroll sentinel + loader */
.tv__more { height: 1px; }
.tv__loading { text-align: center; color: var(--text-muted); padding: 16px; font-size: 0.9rem; }

/* ============================================================
   Lightbox player
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(4,10,22,0.94); backdrop-filter: blur(4px); }
.lightbox.open { display: flex; }
.lightbox__inner { width: min(960px, 94vw); aspect-ratio: 16/9; border: 1px solid var(--gold-deep); border-radius: var(--radius); overflow: hidden; background: #000; }
.lightbox__inner iframe { width: 100%; height: 100%; border: 0; }
.lightbox__close { position: absolute; top: 14px; right: 22px; font-size: 2.2rem; line-height: 1; color: #fff; background: none; border: 0; cursor: pointer; }

/* ============================================================
   Concierge (AI) widget
   ============================================================ */
.ss-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--gold);
  background: var(--btn); color: #07203d; cursor: pointer; box-shadow: 0 8px 22px rgba(0,0,0,.4);
}
.ss-fab svg { width: 26px; height: 26px; margin: 0 auto; }
.ss-panel {
  position: fixed; right: 20px; bottom: 86px; z-index: 90; width: min(360px, calc(100vw - 40px)); height: 480px; max-height: calc(100vh - 120px);
  display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--gold-deep); border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.ss-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.ss-head__id { font-weight: 700; font-size: 0.92rem; display: flex; align-items: center; gap: 8px; }
.ss-head__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--btn); }
.ss-head__x { background: none; border: 0; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; line-height: 1; }
.ss-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.ss-msg { max-width: 85%; padding: 9px 12px; border-radius: 12px; font-size: 0.9rem; line-height: 1.45; }
.ss-msg--me { align-self: flex-end; background: var(--btn); color: #07203d; border-bottom-right-radius: 4px; }
.ss-msg--bot { align-self: flex-start; background: var(--card); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.ss-msg--bot a { color: var(--gold); font-weight: 600; }
.ss-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.ss-chip { border: 1px solid var(--gold-deep); color: var(--gold); background: transparent; border-radius: 999px; padding: 6px 11px; font-size: 0.8rem; cursor: pointer; font-family: inherit; }
.ss-chip:hover { background: rgba(232,196,104,0.12); }
.ss-input { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--line); }
.ss-input textarea { flex: 1; resize: none; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text); padding: 9px 11px; font-family: inherit; font-size: 0.9rem; max-height: 110px; }
.ss-input textarea:focus { outline: none; border-color: var(--gold-deep); }
.ss-send { background: var(--btn); color: #07203d; border: 0; border-radius: var(--radius-sm); width: 42px; cursor: pointer; font-size: 1.1rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 24px 0 16px; color: var(--text-muted); font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.9fr 1fr 1fr; gap: 22px; padding-bottom: 16px; align-items: start; }
.footer-brand__logo { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--text); display: inline-flex; align-items: center; gap: 8px; }
.footer-brand__logo b { color: var(--gold); }
.footer-brand__logo img { height: 64px; width: auto; display: block; }
.footer-brand p { margin: 8px 0; max-width: 42ch; font-size: 0.86rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-social a, .footer-col a { color: var(--text-muted); }
.footer-social a:hover, .footer-col a:hover { color: var(--gold); }
.footer-col h4 { font-family: var(--font-display); color: var(--text); font-size: 0.95rem; margin: 0 0 12px; }
.footer-col a { display: block; padding: 3px 0; font-size: 0.88rem; }
.footer-powered { text-align: center; padding: 2px 0 12px; font-size: 0.98rem; }
.footer-powered em { font-style: italic; color: var(--gold); }
.footer-powered a { color: var(--gold); font-weight: 600; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; font-size: 0.84rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { color: var(--text-muted); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .live-stage { flex-direction: column; align-items: stretch; }
  .live-tile { flex: 1 1 auto; opacity: 1; }
  .live-tile.is-active { flex-direction: column; }
  .live-tile.is-active .live-tile__meta,
  .live-tile.is-active .live-tile__soul { flex: 0 0 auto; }
  .live-tile.is-active .live-tile__screen { order: -1; }
  .tv-card { grid-template-columns: 1fr; }
  .tv-card__body { border-left: 0; border-right: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none; position: absolute; top: 62px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 6px 20px 14px;
  }
  .nav.open .nav__links { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Mobile live: single top player + category button handled in markup */
.mobile-cat { display: none; }
@media (max-width: 620px) {
  .mobile-cat { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
}

/* ============================================================
   Forms, panels, prose (apply + legal pages)
   ============================================================ */
.section { padding: 44px 0; }
.section--tight { padding: 30px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 700; color: var(--gold); margin: 0 0 12px; }
h1.display { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.08; margin: 0 0 14px; }
.section-intro { color: var(--text-muted); max-width: 60ch; margin: 0 auto; }
.text-center { text-align: center; }

.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; max-width: 680px; margin: 0 auto; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.form-row .req { color: var(--gold); }
.form-help { color: var(--text-muted); font-size: 0.88rem; margin: -2px 0 9px; }
.form-row input, .form-row textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--text); padding: 11px 13px; font-family: inherit; font-size: 1rem;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--gold-deep); }
.form-row textarea { resize: vertical; min-height: 100px; }
.choices { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.choice { display: flex; align-items: center; gap: 9px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 9px 11px; cursor: pointer; font-size: 0.9rem; }
.choice:hover { border-color: var(--gold-deep); }
.choice input { width: 16px; height: 16px; accent-color: var(--btn); }
.form-status { color: #ff9d9d; font-size: 0.92rem; margin-top: 12px; }
.form-confirm { text-align: center; padding: 26px 8px; }
.form-confirm__mark { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%; border: 2px solid var(--gold-deep); color: var(--gold); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; }
.form-confirm p { font-size: 1.08rem; max-width: 42ch; margin: 0 auto; }

.prose { max-width: 740px; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-size: 1.25rem; color: var(--text); margin: 28px 0 8px; }
.prose p, .prose li { color: var(--text-muted); line-height: 1.7; }
.prose ul { padding-left: 20px; }
.prose a { color: var(--gold); }
.legal-meta { color: var(--text-muted); font-size: 0.9rem; }
.legal-note { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 15px 17px; color: var(--text-muted); font-size: 0.9rem; margin: 0 auto 26px; max-width: 740px; }

/* ============================================================
   Collapsible filter bar (opens to the right, collapses into "All")
   ============================================================ */
.filterbar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.filter-toggle {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--btn); color: #07203d; border: 1px solid var(--btn);
  border-radius: 999px; padding: 8px 15px; font-weight: 700; font-size: 0.88rem;
  cursor: pointer; font-family: inherit;
}
.filter-toggle__caret { transition: transform 0.25s; font-size: 0.85rem; }
.filterbar.open .filter-toggle__caret { transform: rotate(90deg); }
.filter-strip {
  flex: 1 1 auto; min-width: 0;
  display: none; flex-wrap: wrap; gap: 9px; align-items: center;
}
.filterbar.open .filter-strip { display: flex; }
.chip--fav.is-active { background: var(--gold); border-color: var(--gold); color: #07203d; }

/* ============================================================
   Members directory (members.html)
   ============================================================ */
.members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.member-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; gap: 10px; transition: border-color 0.15s; }
.member-card:hover { border-color: var(--gold); }
.member-card__head { display: flex; align-items: center; gap: 12px; }
.member-card__avatar { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--gold); object-fit: cover; background: var(--bg-2); flex-shrink: 0; }
.member-card__name { font-weight: 700; font-size: 1.05rem; }
.member-card__cats { display: flex; flex-wrap: wrap; gap: 6px; }
.member-card__cat { font-size: 0.68rem; color: var(--gold); border: 1px solid var(--line); border-radius: 999px; padding: 2px 8px; }
.member-card__blurb { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin: 0; }
.fav-btn { position: absolute; top: 10px; right: 12px; background: none; border: 0; cursor: pointer; font-size: 1.5rem; line-height: 1; color: var(--text-muted); transition: transform 0.1s; }
.fav-btn:hover { transform: scale(1.15); }
.fav-btn.is-fav { color: var(--gold); }

/* ============================================================
   Support button (footer)
   ============================================================ */
.footer-support { margin-top: 12px; }

/* ============================================================
   Auto-scrolling listings viewport (TV-guide channel)
   ============================================================ */
.tv__viewport {
  height: clamp(360px, 60vh, 760px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(15, 39, 72, 0.35);
}
.tv__viewport::-webkit-scrollbar { width: 8px; }
.tv__viewport::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 8px; }
.tv__hint { text-align: center; color: var(--text-muted); font-size: 0.8rem; margin: 8px 0 0; }
