/* Ball Sniffer components — sniff bar, ranked place list, scores, sheets,
   badges, chat, gallery, members, builder. Loaded after app.css. */

/* ── Sniff bar (sticky search + filters) ─────────────────── */
.sniffbar {
    position: sticky; top: var(--topbar-h); z-index: 30;
    background: var(--bg);
    margin: 0 -16px 14px; padding: 8px 16px 10px;
    border-bottom: 1px solid var(--border);
}
.sniffbar__row { display: flex; gap: 8px; align-items: center; }
.sniffbar__row + .sniffbar__row { margin-top: 8px; }
.sniffbar__row--filters { flex-wrap: wrap; }
.searchbox { position: relative; flex: 1; min-width: 0; }
.searchbox svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--muted); pointer-events: none; }
.searchbox .input { padding-left: 38px; border-radius: 999px; background: var(--surface); }
.sniffbar__sort { flex: 0 0 auto; max-width: 46%; }

/* Category chips — horizontal scroll */
.chips-bar {
    display: flex; gap: 7px; overflow-x: auto; margin: 8px -16px 0; padding: 2px 16px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.chips-bar::-webkit-scrollbar { display: none; }
.chip {
    flex: 0 0 auto; padding: 7px 14px; border-radius: 999px;
    border: 1px solid var(--border); background: var(--surface);
    cursor: pointer; font-weight: 600; font-size: .86rem; color: var(--text);
    transition: background .15s, border-color .15s, color .15s;
    white-space: nowrap;
}
.chip:hover { border-color: var(--muted); }
.chip.is-selected { background: var(--text); color: var(--surface); border-color: var(--text); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* Segmented control (All / Tried / To try) */
.seg { display: inline-flex; background: var(--surface-2); border-radius: 999px; padding: 3px; gap: 2px; }
.seg__btn {
    border: 0; background: none; padding: 6px 13px; border-radius: 999px;
    font-weight: 600; font-size: .84rem; color: var(--muted); cursor: pointer;
    transition: background .15s, color .15s;
}
.seg__btn.is-selected { background: var(--surface); color: var(--text); box-shadow: 0 1px 3px rgba(33,29,38,.12); }

/* ── Ranked place list ───────────────────────────────────── */
.place-list { list-style: none; margin: 0; padding: 0; counter-reset: rank; }
.place-row {
    counter-increment: rank;
    display: flex; align-items: center; gap: 12px;
    padding: 13px 4px; border-bottom: 1px solid var(--border);
    cursor: pointer; transition: background .12s;
}
.place-row:hover { background: var(--surface); }
.place-row__rank {
    flex: 0 0 26px; text-align: center;
    color: var(--muted); font-weight: 700; font-size: .88rem;
    font-variant-numeric: tabular-nums;
}
.place-row__rank::before { content: counter(rank); }
.place-row__body { flex: 1; min-width: 0; }
.place-row__name {
    font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
    letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.place-row__meta { color: var(--muted); font-size: .84rem; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.place-row__social { display: flex; align-items: center; gap: 6px; margin-top: 5px; color: var(--muted); font-size: .78rem; font-weight: 600; }
.avatar-stack { display: inline-flex; }
.avatar-stack__item {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--accent-soft); color: var(--accent-ink);
    border: 1.5px solid var(--bg);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .6rem; font-weight: 800; overflow: hidden;
}
.avatar-stack__item + .avatar-stack__item { margin-left: -6px; }
.avatar-stack__item img { width: 100%; height: 100%; object-fit: cover; }

/* Row entrance stagger (first dozen rows cascade in) */
.place-list .place-row { animation: row-in .32s cubic-bezier(.2,.7,.3,1) backwards; }
@keyframes row-in { from { opacity: 0; transform: translateY(8px); } }
.place-row:nth-child(1) { animation-delay: .02s; } .place-row:nth-child(2) { animation-delay: .05s; }
.place-row:nth-child(3) { animation-delay: .08s; } .place-row:nth-child(4) { animation-delay: .11s; }
.place-row:nth-child(5) { animation-delay: .14s; } .place-row:nth-child(6) { animation-delay: .17s; }
.place-row:nth-child(7) { animation-delay: .20s; } .place-row:nth-child(8) { animation-delay: .23s; }
.place-row:nth-child(9) { animation-delay: .26s; } .place-row:nth-child(10) { animation-delay: .29s; }

/* Row thumbnail */
.place-row__thumb {
    flex: 0 0 auto; width: 54px; height: 54px; border-radius: 14px;
    background: var(--accent-soft); color: var(--accent-ink);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
    overflow: hidden;
}
.place-row__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Consensus flags (🔥 crew must-try, ⚡ crew is split) */
.flag { font-size: .78rem; margin-left: 5px; cursor: default; }

/* Open / closed pills */
.pill {
    display: inline-block; padding: 2px 9px; border-radius: 999px;
    font-size: .74rem; font-weight: 700; letter-spacing: .02em;
}
.pill--open { background: var(--good-soft); color: var(--good); }
.pill--closed { background: var(--danger-soft); color: var(--danger); }

/* Map view */
.map-panel {
    height: calc(100dvh - 320px); min-height: 340px;
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    position: relative; z-index: 1;
}
@media (max-width: 720px) { .map-panel { height: 55dvh; } }
.map-panel .leaflet-popup-content { font-family: var(--font-body); font-size: .88rem; line-height: 1.5; }
.map-panel .leaflet-popup-content strong { font-family: var(--font-display); font-size: .98rem; }
.map-panel .leaflet-popup-content a { color: var(--accent-ink); font-weight: 700; }

/* View toggle (list / map) */
.seg__btn svg { width: 16px; height: 16px; display: block; }

/* Detail photo banner — bleeds to the card edges */
.detail__photo {
    width: calc(100% + 44px); margin: -22px -22px 16px;
    max-height: 260px; min-height: 140px; object-fit: cover;
    border-radius: 14px 14px 0 0; display: block;
}

/* Detail content fade-in + skeleton shimmer */
.detail { animation: fade-up .22s ease; }
@keyframes fade-up { from { opacity: 0; transform: translateY(6px); } }
.skeleton { padding: 6px 0; }
.skeleton__bar, .skeleton__dot {
    background: linear-gradient(90deg, var(--surface-2) 25%, var(--border) 50%, var(--surface-2) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s linear infinite;
}
.skeleton__bar { height: 12px; border-radius: 6px; margin: 10px 0; width: 70%; }
.skeleton__bar--title { height: 22px; width: 60%; }
.skeleton__row { display: flex; gap: 10px; margin-top: 18px; align-items: flex-start; }
.skeleton__dot { width: 36px; height: 36px; border-radius: 50%; flex: 0 0 auto; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* Rating histogram (spot pages) */
.histo { display: grid; grid-template-columns: auto 1fr auto; gap: 6px 10px; align-items: center; margin: 10px 0 4px; max-width: 340px; }
.histo__label { color: var(--muted); font-weight: 700; font-size: .82rem; font-variant-numeric: tabular-nums; }
.histo__track { height: 8px; border-radius: 4px; background: var(--surface-2); overflow: hidden; }
.histo__fill { height: 100%; border-radius: 4px; background: var(--accent); }

/* Tonight mode */
.tonight-hero {
    position: relative; border-radius: 22px; overflow: hidden;
    background: linear-gradient(135deg, #2A2430, #4A2430);
    color: #fff; padding: 26px; min-height: 300px;
    display: flex; flex-direction: column; justify-content: flex-end;
    box-shadow: var(--shadow-lg); margin-bottom: 14px;
    animation: fade-up .25s ease;
}
.tonight-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.tonight-hero > :not(.tonight-hero__bg) { position: relative; }
.tonight-hero h2 { margin: 0 0 2px; font-size: 1.7rem; color: #fff; }
.tonight-hero__meta { color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.tonight-hero .score { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; backdrop-filter: blur(4px); }
.tonight-runners { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Sniff Wrapped story cards */
.wrapped { display: flex; flex-direction: column; gap: 16px; max-width: 560px; margin: 0 auto; }
.wrapped-card {
    border-radius: 24px; padding: 40px 30px; color: #fff; text-align: center;
    min-height: 320px; display: flex; flex-direction: column; justify-content: center; gap: 8px;
    box-shadow: var(--shadow-lg);
}
.wrapped-card h2 { color: #fff; margin: 0; font-size: 1.5rem; }
.wrapped-card__big { font-family: var(--font-display); font-size: 4rem; font-weight: 800; line-height: 1.1; }
.wrapped-card__sub { color: rgba(255,255,255,.85); font-weight: 600; }
.wrapped-card--guava { background: linear-gradient(150deg, #E0455E, #8E2040); }
.wrapped-card--plum  { background: linear-gradient(150deg, #3A2E4A, #1F1B24); }
.wrapped-card--green { background: linear-gradient(150deg, #0B8F5F, #06503A); }
.wrapped-card--amber { background: linear-gradient(150deg, #D97706, #92400E); }

/* Score bubble — the Beli-style signature */
.score {
    flex: 0 0 auto;
    width: 44px; height: 44px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .98rem; font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
    border: 2px solid transparent;
}
.score--good { background: var(--good-soft); color: var(--good); border-color: var(--good); }
.score--mid  { background: var(--mid-soft); color: var(--mid); border-color: var(--mid); }
.score--bad  { background: var(--danger-soft); color: var(--danger); border-color: var(--danger); }
.score--none { background: var(--surface); color: var(--muted); border-color: var(--border); font-weight: 600; }
.score--lg { width: 58px; height: 58px; font-size: 1.25rem; }

/* ── Desktop split view: list + sticky detail pane ───────── */
.detail-pane { display: none; }
@media (min-width: 900px) {
    /* Full-width toolbar above the split; no sticky needed on tall screens. */
    .sniffbar { position: static; margin: 0 0 18px; padding: 0; border-bottom: 0; background: none; }
    /* Mice can't swipe: wrap the chips instead of hiding them off-screen. */
    .chips-bar { flex-wrap: wrap; overflow-x: visible; margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
    .searchbox { max-width: 440px; }
    .split { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 28px; align-items: start; }
    .detail-pane {
        display: block; position: sticky; top: calc(var(--topbar-h) + 16px);
        background: var(--surface); border: 1px solid var(--border);
        border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
        max-height: calc(100vh - var(--topbar-h) - 32px); overflow: auto;
        overscroll-behavior: contain;
    }
    .detail-pane__empty { text-align: center; color: var(--muted); padding: 56px 16px; }
    .place-row { border-radius: 12px; padding-left: 8px; padding-right: 8px; border-bottom-color: transparent; }
    .place-row + .place-row { border-top: 1px solid var(--border); }
    .place-row.is-selected, .place-row.is-selected:hover { background: var(--accent-soft); }
    .place-row.is-selected + .place-row, .place-row.is-selected { border-top-color: transparent; }
}
.btn--lucky { margin-left: auto; }

/* Detail sheet content */
.detail__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.detail__head h2 { margin: 0 0 4px; font-size: 1.4rem; }
.detail__meta { color: var(--muted); font-size: .9rem; }
.detail__actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.detail__tried { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .86rem; font-weight: 600; margin-bottom: 4px; }
.detail h3 { margin: 18px 0 4px; }

/* ── Legacy card grid (activities fallback, dates, etc.) ─── */
.toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.toolbar .input, .toolbar select { width: auto; min-width: 150px; padding: 9px 12px; }
.toolbar__search { flex: 1; min-width: 200px; }
.toolbar__count { color: var(--muted); font-weight: 600; margin-left: auto; }

.badge {
    display: inline-block; padding: 3px 10px; border-radius: 999px;
    font-size: .72rem; font-weight: 700; letter-spacing: .02em;
    background: var(--surface-2); color: var(--muted); border: 1px solid var(--border);
}
.badge--price { color: var(--good); background: var(--good-soft); border-color: transparent; }
.badge--must-try { background: var(--accent-soft); color: var(--accent-ink); border-color: transparent; }
.badge--good { background: var(--good-soft); color: var(--good); border-color: transparent; }
.badge--decent { background: var(--mid-soft); color: var(--mid); border-color: transparent; }

.stars { color: var(--mid); letter-spacing: 1px; }
.stars--input { display: inline-flex; flex-direction: row-reverse; gap: 4px; font-size: 1.8rem; cursor: pointer; }
.stars--input input { display: none; }
.stars--input label { color: var(--border); transition: .1s; cursor: pointer; }
.stars--input label:hover, .stars--input label:hover ~ label,
.stars--input input:checked ~ label { color: var(--mid); }

.spot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.spot-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; cursor: pointer; transition: border-color .15s, box-shadow .15s; box-shadow: var(--shadow); }
.spot-card:hover { border-color: var(--accent); }
.spot-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin: 0 0 6px; }
.spot-card__meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; color: var(--muted); font-size: .85rem; margin-bottom: 8px; }
.spot-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; color: var(--muted); font-size: .82rem; }
.group-title { grid-column: 1/-1; font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; margin: 18px 0 4px; }
.empty { text-align: center; color: var(--muted); padding: 56px 20px; }
.empty .btn { margin-top: 10px; }

/* ── Modal → bottom sheet on mobile ──────────────────────── */
.modal-root { position: fixed; inset: 0; z-index: 100; display: none; }
.modal-root.is-open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(33,29,38,.45); backdrop-filter: blur(2px); }
.modal-panel {
    position: relative; max-width: 620px; margin: 6vh auto;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 20px; box-shadow: var(--shadow-lg);
    max-height: 86vh; overflow: auto; overscroll-behavior: contain;
    animation: modal-in .18s ease-out;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(10px); } }
.modal-content { padding: 22px; }
.modal-close {
    position: absolute; top: 12px; right: 14px;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--surface-2); border: 0; color: var(--muted);
    font-size: 1.25rem; cursor: pointer; line-height: 1; z-index: 2;
}
.modal-loading { padding: 40px; text-align: center; color: var(--muted); }

@media (max-width: 720px) {
    .modal-panel {
        position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
        max-width: none; max-height: 88dvh;
        border-radius: 20px 20px 0 0; border: 0;
        padding-bottom: env(safe-area-inset-bottom, 0);
        animation: sheet-in .34s cubic-bezier(.22, 1.2, .36, 1);
    }
    .modal-panel::before {
        content: ""; display: block;
        width: 40px; height: 4px; margin: 10px auto 0;
        border-radius: 2px; background: var(--border);
    }
    @keyframes sheet-in { from { transform: translateY(55%); } }
}

.review-row { display: flex; gap: 10px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--border); }
.review-row:first-of-type { border-top: 0; }
.review-row__avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent-soft); color: var(--accent-ink);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex: 0 0 auto; font-weight: 800;
}
.review-row__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-row__note { color: var(--text); margin-top: 2px; font-size: .92rem; }

/* Toasts */
.toast-root { position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
    padding: 11px 18px; border-radius: 999px;
    background: var(--text); color: var(--surface);
    font-weight: 600; font-size: .9rem;
    opacity: 0; transform: translateY(-8px); transition: .25s; box-shadow: var(--shadow-lg);
    max-width: 88vw;
}
.toast.is-in { opacity: 1; transform: none; }
.toast--success { background: var(--good); }
.toast--error { background: var(--danger); }

/* Chat widget */
.chat-widget { position: fixed; bottom: 18px; right: 16px; z-index: 90; }
@media (max-width: 720px) {
    .chat-widget { bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px) + 12px); }
}
.chat-toggle {
    width: 52px; height: 52px; border-radius: 50%; border: 0;
    background: var(--text); color: #fff; font-size: 1.35rem; cursor: pointer;
    box-shadow: var(--shadow-lg);
}
.chat-panel { position: absolute; bottom: 64px; right: 0; width: 320px; max-width: 88vw; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); display: none; flex-direction: column; overflow: hidden; }
.chat-panel.is-open { display: flex; }
.chat-panel__head { padding: 12px 16px; font-weight: 700; border-bottom: 1px solid var(--border); font-family: var(--font-display); }
.chat-panel__body { height: 300px; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.chat-msg { display: flex; flex-direction: column; align-items: flex-start; }
.chat-msg--own { align-items: flex-end; }
.chat-msg__who { font-size: .7rem; color: var(--muted); }
.chat-msg__text { background: var(--surface-2); padding: 7px 11px; border-radius: 14px; max-width: 85%; }
.chat-msg--own .chat-msg__text { background: var(--accent); color: #fff; }
.chat-panel__form { display: flex; gap: 6px; padding: 10px; border-top: 1px solid var(--border); }
.chat-panel__form .input { padding: 8px 12px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; }
.gallery-item { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; cursor: pointer; background: var(--surface-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 8px 6px; font-size: .8rem; font-weight: 600; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.75)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lightbox { position: fixed; inset: 0; background: rgba(20,17,23,.94); z-index: 150; display: none; align-items: center; justify-content: center; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 8px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.5rem; color: #fff; background: none; border: 0; cursor: pointer; padding: 20px; }
.lightbox__nav--prev { left: 4px; } .lightbox__nav--next { right: 4px; }
.lightbox__close { position: absolute; top: 14px; right: 18px; font-size: 2rem; color: #fff; background: none; border: 0; cursor: pointer; }
.lightbox__cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: #fff; }

/* Members */
.member-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.member-card { text-align: center; }
.member-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 10px; background: var(--accent-soft); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: 1.6rem; font-weight: 800; }
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--muted); margin-right: 5px; }
.dot--online { background: var(--good); }
.superlatives { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 12px; margin-bottom: 24px; }

/* Builder */
.builder-step { display: none; }
.builder-step.is-active { display: block; }
.itinerary { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.itinerary__stop { display: flex; gap: 12px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 12px; box-shadow: var(--shadow); transition: border-color .15s; }
a.itinerary__stop:hover { border-color: var(--accent); }
.itinerary__num { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; flex: 0 0 auto; }

/* Detail rows */
.kv { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 12px 0; }
.kv dt { color: var(--muted); font-weight: 600; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; align-items: center; }

/* Profile header */
.profile-head { display: flex; gap: 20px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.profile-avatar { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; background: var(--accent-soft); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Home feed */
.feed { padding: 4px 16px; }
.feed-row {
    display: flex; align-items: center; gap: 11px;
    padding: 11px 2px; border-top: 1px solid var(--border);
    transition: background .12s;
}
.feed-row:first-child { border-top: 0; }
.feed-row:hover { background: var(--surface-2); }
.feed-row__text { flex: 1; min-width: 0; font-size: .93rem; }
.feed-row__when { flex: 0 0 auto; color: var(--muted); font-size: .78rem; font-weight: 600; white-space: nowrap; }

/* Home launcher */
.launch-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 22px; }
.launch-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow);
    transition: border-color .15s, transform .1s;
}
.launch-card:hover { border-color: var(--accent); }
.launch-card:active { transform: scale(.99); }
.launch-card__emoji { font-size: 1.7rem; }
.launch-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.launch-card__sub { color: var(--muted); font-size: .84rem; }
