.ed-wrap {
            display: grid;
            gap: 12px;
        }
        @media (max-width: 699px) {
            .ed-wrap {
                padding-inline: 0.75rem;
            }
        }

        .ed-header {
            display: flex;
            flex-direction: column;
            gap: .3rem;
            margin-top: .35rem;
        }

        .ed-title {
            font-size: 1.6rem;
            font-weight: 800;
            margin: 0;
            font-family: var(--font-head);
            max-width: 100%;
            overflow-wrap: anywhere;
            word-break: break-word;
            line-height: 1.2;
        }
        @media (max-width: 420px) {
            .ed-title {
                font-size: clamp(1.15rem, 4.6vw, 1.45rem);
            }
        }

        .ed-meta {
            color: var(--muted);
            font-size: .95rem
        }

        .ed-meta strong {
            color: inherit
        }

        .ed-speed-slot-meta {
            margin-top: 0.45rem;
            font-size: 0.92rem;
            line-height: 1.45;
            color: var(--text);
        }
        .ed-speed-slot-meta__label {
            font-size: 0.78em;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            opacity: 0.85;
            margin-right: 0.28rem;
            color: var(--muted);
        }
        .ed-speed-slot-meta__row + .ed-speed-slot-meta__row {
            margin-top: 0.4rem;
            padding-top: 0.4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }
        .ed-speed-slot-meta__idx {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.42);
            margin-bottom: 0.18rem;
        }

        /* ── Section média : cadre visible, vidéo remplit et centrée (object-position) ── */
        .ed-gallery {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: #000;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* Zone hero : badge inscription sans être écrasé par le JS de la galerie */
        .ed-stage-hd {
            position: relative;
        }

        .ed-stage {
            position: relative;
            aspect-ratio: 16/9;
            min-height: 200px;
            background: #000;
        }

        .ed-stage > * {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .ed-stage-inner {
            position: relative;
            overflow: hidden;
            background: #000;
        }

        /* Remplir le cadre sans stretch : pas de min-width/height + translate (flash déformé avant décodage) */
        .ed-stage-inner .ed-stage__media,
        .ed-stage-inner img,
        .ed-stage-inner video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .ed-stage-inner video {
            pointer-events: none;
        }

        .ed-stage-inner--video .play-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--brand-gold);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            z-index: 1;
        }

        .ed-stage-inner--video .play-badge::before {
            content: "";
            border-style: solid;
            border-width: 8px 0 8px 14px;
            border-color: transparent transparent transparent #000;
            margin-left: 4px;
        }

        .ed-thumbs {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
            padding: 12px 16px;
            background: rgba(0, 0, 0, 0.4);
        }

        .ed-thumb {
            position: relative;
            flex: 0 0 72px;
            aspect-ratio: 16/9;
            border-radius: 10px;
            overflow: hidden;
            opacity: .7;
            cursor: pointer;
            padding: 0;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid transparent;
            transition: opacity 0.2s, border-color 0.2s;
        }

        .ed-thumb:hover {
            opacity: 0.9;
        }

        .ed-thumb[aria-current="true"] {
            border-color: var(--brand-gold);
            opacity: 1;
        }

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

        .ed-thumb video {
            pointer-events: none;
        }

        /* Tiny play icon on video thumbs */
        /* Tiny play icon on video thumbs */
        .ed-thumb--video .play-badge {
            position: absolute;
            bottom: 6px;
            right: 6px;
            width: 24px;
            height: 24px;
            border-radius: 999px;
            background: var(--brand-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .ed-thumb--video .play-badge::before {
            content: "";
            border-style: solid;
            border-width: 4px 0 4px 7px;
            border-color: transparent transparent transparent #000;
            margin-left: 2px;
        }

        .ed-nav {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            pointer-events: none;
        }

        .ed-nav button {
            pointer-events: auto;
            background: rgba(0, 0, 0, .5);
            border: 1px solid var(--line);
            color: #fff;
            border-radius: 999px;
            padding: .35rem .55rem;
            margin: 0 .5rem;
        }

        /* Info */
        .ed-grid {
            display: grid;
            gap: 12px;
        }

        @media(min-width:900px) {
            .ed-grid {
                grid-template-columns: 2fr 1fr
            }
        }

        .ed-card {
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 14px 16px;
            background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
        }

        .ed-card h2 {
            margin: .1rem 0 .3rem;
            font-size: 1.05rem;
        }
        .ed-calendar-title {
            margin-top: 1.25rem;
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--muted);
        }
        @media (min-width: 900px) {
            .ed-calendar-title {
                margin-top: 1rem;
                margin-bottom: 0.6rem;
            }
        }

        /* Options : cartes simplifiées */
        .ed-options-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        @media (max-width: 699px) {
            /* Pleine largeur écran : les marges ancestors (.wrap / .ed-cta-under-media) varient */
            .ed-options-list {
                width: 100vw;
                max-width: 100vw;
                margin-left: calc(50% - 50vw);
                margin-right: calc(50% - 50vw);
                padding-inline: max(0.65rem, env(safe-area-inset-left, 0px))
                    max(0.65rem, env(safe-area-inset-right, 0px));
                box-sizing: border-box;
            }
            .op-card {
                width: 100%;
                min-width: 0;
                padding: 1rem 1.05rem;
                box-sizing: border-box;
            }
        }
        @media (min-width: 700px) {
            .ed-options-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }
        }
        .op-card {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 1.25rem;
        }
        .op-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.12);
        }
        .op-card-header { display: flex; flex-direction: column; gap: 0.5rem; }
        .op-card-header-top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
        .op-card-title { margin: 0; font-size: 1.1rem; font-weight: 700; color: #fff; min-width: 0; }
        .op-card-badges { display: inline-flex; flex-wrap: wrap; gap: 0.35rem; }
        .op-pill { font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 999px; }
        .op-pill--sd { background: rgba(236,72,153,0.2); color: #f9a8d4; }
        .op-pill--nw { background: rgba(34,197,94,0.2); color: #86efac; }
        .op-pill--hetero { background: rgba(59,130,246,0.2); color: #93c5fd; }
        .op-pill--homo { background: rgba(168,85,247,0.2); color: #d8b4fe; }
        .op-card-summary { font-size: 0.88rem; color: var(--muted); margin: 0; }
        .op-card-summary + .op-card-summary { margin-top: 0.1rem; }
        .op-card-summary strong { color: var(--brand-gold); font-weight: 700; }
        .op-card-summary-sep { margin: 0 0.35rem; opacity: 0.6; }
        .op-card-summary-label { font-size: 0.8em; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.85; margin-right: 0.25rem; }
        .op-card-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
        .op-card-actions .btn { font-size: 0.95rem; font-weight: 600; width: 100%; padding: 0.65rem 1rem; border-radius: 10px; }
        .op-card-actions .btn-link { background: none; border: none; color: var(--muted); font-size: 0.85rem; cursor: pointer; text-decoration: underline; }
        .op-card-actions .btn-link:hover { color: #fff; }
        .op-card-actions .btn-link.danger { color: #f87171; }
        .op-card-actions .btn-link.danger:hover { color: #fca5a5; }
        /* CTA inscription en tête de carte (speed dating) — même famille que btn-free-cta */
        .op-card-cta-hero {
            width: 100%;
            box-sizing: border-box;
            margin: 0 0 0.15rem;
        }
        /* Évite un trou en bas quand l’inscription est uniquement dans le CTA héros */
        .op-card--hero-cta .op-card-actions:not(:has(a, button)) {
            display: none;
        }
        .op-card--hero-cta .op-card-actions {
            margin-top: 0.45rem;
        }
        /* Changement d’option (même soirée) — carte lisible + pastilles H/F */
        .ed-self-transfer {
            margin-top: 1.1rem;
            max-width: 440px;
            margin-left: auto;
            margin-right: auto;
            padding: 1rem 1.1rem 1.05rem;
            border-radius: 14px;
            background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 27, 75, 0.55));
            border: 1px solid rgba(251, 191, 36, 0.22);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }
        .ed-self-transfer__head {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
            margin-bottom: 0.65rem;
        }
        .ed-self-transfer__icon {
            flex-shrink: 0;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(251, 191, 36, 0.12);
            border: 1px solid rgba(251, 191, 36, 0.28);
            font-size: 1rem;
        }
        .ed-self-transfer__title {
            margin: 0;
            font-size: 0.95rem;
            font-weight: 700;
            color: #fde68a;
            letter-spacing: 0.01em;
        }
        .ed-self-transfer__hint {
            margin: 0.2rem 0 0;
            font-size: 0.78rem;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.55);
        }
        .ed-self-transfer__list {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
            margin: 0.75rem 0 0.85rem;
        }
        .ed-self-transfer__opt {
            display: flex;
            align-items: stretch;
            gap: 0;
            margin: 0;
            cursor: pointer;
            border-radius: 11px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(0, 0, 0, 0.22);
            transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
        }
        .ed-self-transfer__opt:has(input:focus-visible) {
            outline: 2px solid rgba(251, 191, 36, 0.55);
            outline-offset: 2px;
        }
        .ed-self-transfer__opt:has(input:checked) {
            border-color: rgba(236, 72, 153, 0.45);
            background: rgba(236, 72, 153, 0.08);
            box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.15);
        }
        .ed-self-transfer__opt:has(input:disabled) {
            opacity: 0.45;
            cursor: not-allowed;
        }
        .ed-self-transfer__opt input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }
        .ed-self-transfer__opt-body {
            flex: 1;
            min-width: 0;
            padding: 0.65rem 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .ed-self-transfer__opt-title {
            font-size: 0.86rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.35;
        }
        .ed-self-transfer__opt-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            align-items: center;
        }
        .ed-self-transfer__pill {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            padding: 0.2rem 0.5rem;
            border-radius: 999px;
            line-height: 1.2;
        }
        .ed-self-transfer__pill--h {
            background: rgba(59, 130, 246, 0.2);
            color: #93c5fd;
            border: 1px solid rgba(59, 130, 246, 0.35);
        }
        .ed-self-transfer__pill--f {
            background: rgba(244, 114, 182, 0.16);
            color: #f9a8d4;
            border: 1px solid rgba(244, 114, 182, 0.32);
        }
        .ed-self-transfer__pill--warn {
            font-size: 0.68rem;
            font-weight: 600;
            color: rgba(251, 191, 36, 0.95);
        }
        /* Carte "Option inscrite" (même langage visuel que les options du modal) */
        .ed-current-option-card {
            width: 100%;
            max-width: 100%;
            border-radius: 11px;
            border: 1px solid rgba(236, 72, 153, 0.4);
            background: rgba(236, 72, 153, 0.08);
            box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.14);
        }
        .ed-current-option-card .ed-self-transfer__opt-body {
            padding: 0.62rem 0.78rem;
            gap: 0.46rem;
        }
        .ed-current-option-card .ed-self-transfer__opt-title {
            font-size: 0.95rem;
            font-weight: 700;
            text-align: left;
        }
        .ed-current-option-card .ed-self-transfer__opt-stats {
            justify-content: flex-start;
        }
        .ed-current-option-card__actions {
            margin-top: 0.28rem;
            padding-top: 0.48rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: flex-end;
        }
        .ed-current-option-card__actions .ed-self-transfer-open {
            margin-top: 0;
            width: auto;
            max-width: 100%;
            min-width: 0;
            padding: 0.5rem 0.8rem;
            font-size: 0.84rem;
            border-radius: 9px;
        }
        @media (max-width: 640px) {
            .ed-current-option-card__actions {
                justify-content: stretch;
            }
            .ed-current-option-card__actions .ed-self-transfer-open {
                width: 100%;
                justify-content: center;
            }
        }
        .ed-self-transfer .btn-primary {
            width: 100%;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 11px;
            padding: 0.7rem 1rem;
        }
        .ed-self-transfer--modal-inner {
            margin-top: 0;
            max-width: none;
            box-shadow: none;
            border: none;
            background: transparent;
            padding: 0;
            display: flex;
            flex-direction: column;
            flex: 1;
            min-height: 0;
        }
        .ed-self-transfer-modal__scroll {
            flex: 1;
            min-height: 0;
            max-height: min(48vh, 360px);
            overflow-y: auto;
            padding-right: 0.25rem;
            margin-bottom: 0.35rem;
        }
        .ed-self-transfer-open {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 0.15rem;
            padding: 0.62rem 1rem;
            width: 100%;
            max-width: min(26rem, 100%);
            font-size: 0.9rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            background: rgba(15, 23, 42, 0.62);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 11px;
            cursor: pointer;
            transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease, color 0.15s ease;
        }
        .ed-self-transfer-open:hover {
            background: rgba(30, 41, 59, 0.78);
            border-color: rgba(236, 72, 153, 0.5);
            color: #fff;
        }
        .ed-self-transfer-open:active { transform: scale(0.99); }
        .ed-self-transfer-open__icon {
            font-size: 0.92rem;
            line-height: 1;
            color: #f9a8d4;
        }
        @media (min-width: 768px) {
            .ed-self-transfer-open {
                width: auto;
                max-width: 22rem;
                min-width: 14rem;
                align-self: center;
            }
        }

        .ed-desc {
            color: var(--muted);
            line-height: 1.55;
            white-space: pre-line
        }

        .krow {
            display: flex;
            flex-wrap: wrap;
            gap: .4rem;
            margin: .4rem 0
        }

        .chip {
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: .18rem .5rem;
            font-weight: 700;
            font-size: .82rem;
            background: rgba(255, 255, 255, .05)
        }

        .price-chip {
            background: var(--brand-gold);
            color: #fff
        }

        .chip-canceled {
            border-color: #f97373;
            color: #f97373;
            text-transform: uppercase;
            letter-spacing: .05em;
        }

        .btn-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: .5rem
        }

        .btn {
            display: grid;
            place-items: center;
            border-radius: 10px;
            padding: .6rem;
            font-weight: 700
        }

        .btn-primary {
            background: linear-gradient(90deg, #FF2E79 0%, #2563EB 100%);
            color: #fff
        }

        .btn-ghost {
            border: 1px solid var(--brand-gold);
            color: var(--brand-gold);
            background: transparent
        }

        .btn[disabled] {
            opacity: .5;
            pointer-events: none
        }

        .btn-locked {
            opacity: .85;
            cursor: pointer;
        }
        .btn-locked:hover {
            opacity: 1;
        }

        /* === Video / image modal player === (z-index > header + tabbar) */
        .mp-modal {
            position: fixed;
            inset: 0;
            z-index: 200000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .mp-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, .45);
        }

        .mp-modal__card {
            position: relative;
            max-width: 700px;
            width: 92%;
            background: var(--bg, #0b0b0b);
            border: 1px solid var(--line, #222);
            border-radius: 14px;
            padding: 16px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
        }

        .mp-modal__close {
            position: absolute;
            top: calc(8px + env(safe-area-inset-top, 0px));
            right: calc(8px + env(safe-area-inset-right, 0px));
            padding: .25rem .5rem;
            z-index: 50;
        }

        .mp-modal__video {
            margin-top: 32px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 14px;
            background: #000;
        }

        #videoModalPlayer,
        #imageModalViewer {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            /* keep original ratio, no crop */
            display: block;
            border-radius: 14px;
        }

        /* image starts hidden; JS toggles it */
        #imageModalViewer {
            display: none;
        }

        .ed-share {
            display: flex;
            align-items: center;
            gap: .5rem;
            margin-top: .4rem;
            flex-wrap: wrap;
        }

        .ed-share-btn {
            padding-inline: .9rem;
            font-size: .9rem;
        }

        .ed-share-hint {
            font-size: .85rem;
            color: var(--muted);
            min-height: 1.2em;
        }

        /* Venue branding */
        .venue-branding {
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 1rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1rem 0;
        }

        .venue-logo {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: contain;
            background: white;
            padding: 4px;
        }

        .venue-info {
            flex: 1;
        }

        .venue-label {
            font-size: 0.75rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.25rem;
        }

        .venue-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--brand-gold);
            margin: 0 0 0.5rem 0;
        }

        .venue-contact {
            font-size: 0.85rem;
            color: var(--muted);
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }
        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

.ed-cta-under-media {
    width: 100%;
    max-width: 100%;
    margin: 0.95rem 0 1.25rem;
    box-sizing: border-box;
    padding: 0.78rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}
@media (max-width: 720px) {
    .ed-cta-under-media {
        margin-top: 0.72rem;
        margin-bottom: 1rem;
        padding: 0.65rem;
        border-radius: 12px;
    }
}
.ed-cta-under-media__stack {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.ed-cta-under-media .ed-action-block {
    margin: 0;
}
.ed-action-block {
    margin: 0.5rem 0 1.15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}
.ed-action-block > .ed-drink-with-note {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch;
    box-sizing: border-box;
}
/* Desktop : largeur de bouton lisible (pas une barre sur toute la colonne) */
@media (min-width: 768px) {
    .ed-action-block > .ed-discover-btn,
    .ed-action-block > a.ed-planning-btn,
    .ed-action-block > button.ed-planning-btn,
    .ed-action-block > .ed-unregister-wrap {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        align-self: stretch;
    }
    .ed-action-block > .ed-discover-btn {
        width: auto;
        max-width: 22rem;
        min-width: 14.5rem;
        align-self: center;
    }
    .ed-action-block > .ed-drink-with-note {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        align-self: stretch;
    }
}
/* Même largeur max pour Découvrir + Mon verre inclus */
.ed-discover-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: min(24rem, 100%);
    padding: 0.9rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, filter 0.15s;
    box-sizing: border-box;
    white-space: nowrap;
    text-align: center;
    line-height: 1.3;
}
.ed-discover-btn__txt {
    min-width: 0;
    flex: 1 1 auto;
    text-align: center;
}
.ed-discover-btn--singleline {
    font-size: clamp(0.78rem, 2.9vw, 1.05rem);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
/* Même dégradé que /mes-events (.btn-discover) */
@keyframes ed-discover-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.ed-discover-btn:not(.locked) {
    color: #fff !important;
    border: none;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    background-size: 200% 200%;
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.35);
    animation: ed-discover-shimmer 3s ease-in-out infinite;
}
.ed-discover-btn:not(.locked):hover {
    transform: translateY(-2px);
    filter: none;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    background-size: 200% 200%;
    box-shadow: 0 6px 28px rgba(245, 158, 11, 0.5);
    color: #fff !important;
}
.ed-discover-btn:not(.locked):active { transform: translateY(0); filter: brightness(0.98); }
.ed-discover-btn .ed-discover-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.ed-status-bar {
    width: 100%;
    max-width: 420px;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: rgba(255, 255, 255, 0.9);
}
/* Confirmation d’inscription : sous les boutons principaux, ton plus discret */
.ed-unregister-wrap {
    display: flex;
    justify-content: stretch;
    width: 100%;
    margin-top: 0.25rem;
}
.ed-unregister-wrap .btn,
.ed-unregister-wrap a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1.15rem;
    font-size: 1.02rem;
    font-weight: 700;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: rgba(248, 113, 113, 0.95);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.ed-unregister-wrap .btn:hover,
.ed-unregister-wrap a:hover {
    color: #fca5a5;
    border-color: rgba(252, 165, 165, 0.55);
    background: rgba(248, 113, 113, 0.14);
    text-decoration: none;
}
.ed-free-signup-hero {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 1.15rem;
    padding: 1rem 1.15rem 1.1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(74, 222, 128, 0.2) 0%, rgba(16, 185, 129, 0.08) 45%, rgba(255, 46, 121, 0.1) 100%);
    border: 1px solid rgba(74, 222, 128, 0.45);
    box-shadow: 0 8px 32px rgba(74, 222, 128, 0.12), 0 2px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.ed-free-signup-hero__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(187, 247, 208, 0.95);
}
.ed-free-signup-hero__title {
    margin: 0 0 0.6rem;
    font-family: var(--font-head, system-ui, sans-serif);
    font-size: clamp(1.15rem, 4vw, 1.45rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ecfdf5;
}
.ed-free-signup-hero__lead {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
}
.ed-free-signup-hero__bullets {
    margin: 0;
    padding: 0 0 0 1.1rem;
    text-align: left;
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    list-style: disc;
}
.ed-free-signup-hero__bullets li { margin-bottom: 0.35rem; }
.ed-free-signup-hero__note {
    margin: 0.85rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
    text-align: left;
}
/* Même largeur que .ed-registrants-teaser (pleine colonne .ed-action-block) */
.ed-action-block > .ed-free-details,
.ed-action-block > a#ed-register-cta.btn-free-cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-self: stretch;
}
.ed-action-block > a#ed-register-cta.btn-free-cta {
    display: block;
    text-align: center;
    text-decoration: none;
}
.ed-free-details {
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.85rem;
    border: 1px solid rgba(74, 222, 128, 0.28);
    border-radius: 12px;
    background: rgba(74, 222, 128, 0.06);
    overflow: hidden;
}
.ed-free-details summary {
    cursor: pointer;
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(187, 247, 208, 0.95);
    list-style: none;
}
.ed-free-details summary::-webkit-details-marker { display: none; }
.ed-free-details__body {
    padding: 0 0.9rem 0.85rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    text-align: left;
}
.ed-free-details__body ul { margin: 0.4rem 0 0; padding-left: 1.1rem; }
.ed-discover-btn--after-register {
    max-width: 420px;
    margin-top: 0.35rem;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
}
.ed-drink-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding: 0.9rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    text-align: center;
    box-sizing: border-box;
    align-self: stretch;
}
/* Verre inclus : teinte verte / émeraude (distinct Découvrir + CTA rose) */
a.ed-drink-cta--wine,
a.ed-drink-cta.ed-drink-cta--wine {
    background: linear-gradient(135deg, #047857 0%, #0d9488 48%, #0f766e 100%);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 22px rgba(13, 148, 136, 0.38);
    text-decoration: none;
}
a.ed-drink-cta--wine:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
}
/* Fiche série inscrit·e : matchs (rose-magenta) puis participants (cyan-indigo) — spécificité élevée pour éviter tout héritage type « Découvrir » orange */
.ed-drink-with-note.ed-sd-post-reg-ctas > a.ed-drink-cta.ed-sd-cta--matches,
a.ed-drink-cta.ed-sd-cta--matches {
    background: linear-gradient(135deg, #be123c 0%, #db2777 45%, #c026d3 100%) !important;
    background-image: linear-gradient(135deg, #be123c 0%, #db2777 45%, #c026d3 100%) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 4px 24px rgba(219, 39, 119, 0.45) !important;
    text-decoration: none;
    animation: none !important;
}
.ed-drink-with-note.ed-sd-post-reg-ctas > a.ed-drink-cta.ed-sd-cta--matches:hover,
a.ed-drink-cta.ed-sd-cta--matches:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
}
.ed-drink-with-note.ed-sd-post-reg-ctas > a.ed-drink-cta.ed-sd-cta--participants,
a.ed-drink-cta.ed-sd-cta--participants {
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 38%, #2563eb 100%) !important;
    background-image: linear-gradient(135deg, #0d9488 0%, #0891b2 38%, #2563eb 100%) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 4px 24px rgba(8, 145, 178, 0.42) !important;
    text-decoration: none;
    animation: none !important;
}
.ed-drink-with-note.ed-sd-post-reg-ctas > a.ed-drink-cta.ed-sd-cta--participants:hover,
a.ed-drink-cta.ed-sd-cta--participants:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
}
.ed-discover-btn.locked.ed-sd-cta-locked-matches {
    background: linear-gradient(135deg, #881337 0%, #9f1239 48%, #86198f 100%) !important;
    background-image: linear-gradient(135deg, #881337 0%, #9f1239 48%, #86198f 100%) !important;
    box-shadow: 0 4px 22px rgba(136, 19, 55, 0.5) !important;
    opacity: 0.97;
    animation: none !important;
}
.ed-discover-btn.locked.ed-sd-cta-locked-matches:hover {
    opacity: 1 !important;
}
.ed-discover-btn.locked.ed-sd-cta-locked-participants {
    background: linear-gradient(135deg, #115e59 0%, #0e7490 45%, #1e40af 100%) !important;
    background-image: linear-gradient(135deg, #115e59 0%, #0e7490 45%, #1e40af 100%) !important;
    box-shadow: 0 4px 22px rgba(14, 116, 144, 0.45) !important;
    opacity: 0.97;
    animation: none !important;
}
.ed-discover-btn.locked.ed-sd-cta-locked-participants:hover {
    opacity: 1 !important;
}
.ed-discover-btn.locked.ed-drink-wine-locked {
    background: linear-gradient(135deg, #065f46 0%, #0f766e 50%, #115e59 100%) !important;
    box-shadow: 0 4px 24px rgba(6, 95, 70, 0.45) !important;
    opacity: 0.95;
}
.ed-discover-btn.locked.ed-drink-wine-locked:hover {
    background: linear-gradient(135deg, #065f46 0%, #0f766e 50%, #115e59 100%) !important;
    opacity: 1 !important;
}
.ed-drink-cta-status {
    margin-top: 0.55rem;
    font-size: 0.85rem;
    color: #86efac;
    line-height: 1.45;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    text-align: center;
    box-sizing: border-box;
}
a.ed-drink-cta--wine.ed-drink-cta--stack {
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}
.ed-drink-cta--stack .ed-drink-cta__sub {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.92;
    line-height: 1.35;
}
.ed-drink-with-note {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
    max-width: 100%;
}
.ed-drink-with-note > .ed-discover-btn,
.ed-drink-with-note > .ed-drink-cta {
    max-width: 100%;
}
/* Participants / matchs (fiche série) : gabarit large + texte long */
.ed-drink-with-note.ed-sd-post-reg-ctas > .ed-drink-cta.ed-discover-btn.locked.ed-drink-wine-locked,
.ed-drink-with-note.ed-sd-post-reg-ctas > .ed-drink-cta.ed-discover-btn.locked.ed-sd-cta-locked-participants,
.ed-drink-with-note.ed-sd-post-reg-ctas > .ed-drink-cta.ed-discover-btn.locked.ed-sd-cta-locked-matches {
    max-width: 100%;
    white-space: normal;
}
.ed-drink-cta-footnote {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.48);
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
/* bottom / z-index avec tabbar : header.css (body:has(.mp-bottom-tabbar) .ed-sticky-register) */
.ed-sticky-register {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    padding: 0.55rem 1rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, transparent, rgba(11, 18, 28, 0.92) 28%, rgba(11, 18, 28, 0.98));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: center;
}
.ed-sticky-register.is-visible { display: flex; }
.ed-sticky-register .btn-free-cta { width: 100%; max-width: 420px; }
@media (min-width: 721px) {
    .ed-sticky-register { display: none !important; }
}
main.ed-main-pad-when-sticky {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}
.ed-speed-picker-wrap { width: 100%; margin-bottom: 0.25rem; }
/* Speed dating inscrit·e : même ordre que networking (Découvrir d’abord, puis carte option). */
.ed-cta-under-media__stack--sd-reg {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ed-cta-under-media__stack--sd-reg .ed-speed-picker-wrap {
    order: 2;
    margin-bottom: 0;
}
.ed-cta-under-media__stack--sd-reg > .ed-action-block {
    order: 1;
    margin-top: 0;
    margin-bottom: 0.35rem;
}
.ed-planning-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 1.15rem;
    font-size: 1.02rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
}
/* Bloc inscription série unique + « Qui sera là ? » : même largeur max sur desktop */
.ed-sd-register-inline-wrap {
    margin: 0 auto 1.25rem;
    text-align: center;
    width: 100%;
    max-width: 440px;
    box-sizing: border-box;
}
.ed-sd-register-inline-wrap .btn-free-cta {
    width: 100%;
    box-sizing: border-box;
}
.ed-registrants-teaser {
    margin: 0 auto 0.35rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 11px;
    padding: 0.68rem 0.72rem 0.74rem;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
    .ed-sd-register-inline-wrap,
    .ed-registrants-teaser {
        max-width: 100%;
    }
}
.ed-registrants-teaser__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: rgba(255,255,255,0.93);
    margin: 0 0 0.5rem;
    text-align: left;
}
/* Hauteur fixe : évite que les photos HTTP (intrinsic height) allongent le bloc vs. placeholders SVG. */
.ed-registrants-teaser__strip {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    min-height: calc(0.28rem + 40px + 0.28rem);
    padding: 0.28rem;
    border-radius: 12px;
    background: rgba(6, 12, 24, 0.3);
    overflow: hidden;
}
.ed-registrants-teaser__track {
    --qui-gap: 0.22rem;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: var(--qui-gap);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: auto;
    min-height: 40px;
}
.ed-registrants-teaser__avatar {
    box-sizing: border-box;
    flex: 0 0 auto;
    width: min(
        40px,
        max(
            18px,
            calc((100% - (max(var(--qui-n), 1) - 1) * var(--qui-gap)) / max(var(--qui-n), 1))
        )
    );
    height: auto;
    aspect-ratio: 1;
    max-width: 40px;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.25);
}
.ed-registrants-teaser__hint {
    margin: 0.52rem 0 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.63);
    line-height: 1.4;
}
.ed-registrants-teaser--algo {
    text-align: center;
}
.ed-registrants-teaser__kicker {
    margin: 0 0 0.4rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 164, 198, 0.92);
}
.ed-registrants-teaser--algo .ed-registrants-teaser__title {
    text-align: center;
    font-size: clamp(1.02rem, 3.2vw, 1.18rem);
    line-height: 1.28;
    margin-bottom: 0.55rem;
}
.ed-registrants-teaser__body {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.52;
    text-align: left;
}
.ed-registrants-teaser__body strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}
.ed-registrants-teaser__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.85rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(135deg, rgba(200, 30, 95, 0.88), rgba(70, 65, 150, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.ed-registrants-teaser__link:hover,
.ed-registrants-teaser__link:focus-visible {
    filter: brightness(1.06);
    outline: none;
}
.ed-registrants-teaser__discover {
    margin-top: 0.68rem;
    padding: 0.88rem 0.75rem !important;
    font-size: clamp(0.76rem, 3.1vw, 1.08rem) !important;
    line-height: 1.35 !important;
    border-radius: 12px !important;
    white-space: nowrap;
    flex-wrap: nowrap;
    min-width: 0;
}
@media (max-width: 480px) {
    .ed-registrants-teaser__discover {
        font-size: clamp(0.72rem, 2.85vw, 0.98rem) !important;
        padding: 0.75rem 0.55rem !important;
    }
}
/* Mobile : bouton aligné au bandeau ; desktop : largeur confortable, pas toute la ligne */
.ed-registrants-teaser .ed-registrants-teaser__discover {
    max-width: 100%;
}
@media (min-width: 768px) {
    .ed-registrants-teaser .ed-registrants-teaser__discover { max-width: 100%; width: 100%; }
}
@media (max-width: 560px) {
    .ed-registrants-teaser__strip {
        min-height: calc(0.24rem + 32px + 0.24rem);
    }
    .ed-registrants-teaser__track {
        min-height: 32px;
    }
    .ed-registrants-teaser__avatar {
        max-width: 32px;
        width: min(
            32px,
            max(
                16px,
                calc((100% - (max(var(--qui-n), 1) - 1) * var(--qui-gap)) / max(var(--qui-n), 1))
            )
        );
    }
}
/* Modale changement d’option */
.self-transfer-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: max(0.75rem, env(safe-area-inset-top, 0px)) 0.75rem max(0.75rem, env(safe-area-inset-bottom, 0px));
    background: rgba(5, 8, 18, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.self-transfer-modal.is-visible {
    display: flex;
}
.self-transfer-modal__panel {
    position: relative;
    width: 100%;
    max-width: 26rem;
    max-height: min(92vh, 34rem);
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1.1rem 1rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(251, 191, 36, 0.28);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(30, 27, 75, 0.95));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
    box-sizing: border-box;
}
.self-transfer-modal__close {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    z-index: 2;
    width: 2.35rem;
    height: 2.35rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}
.self-transfer-modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.self-transfer-modal__foot {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}
.self-transfer-modal__foot .btn {
    width: 100%;
}
.self-transfer-modal__cancel {
    padding: 0.55rem 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    cursor: pointer;
}
.self-transfer-modal__cancel:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}
.self-transfer-confirm {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10020;
    align-items: center;
    justify-content: center;
    padding: max(0.75rem, env(safe-area-inset-top, 0px)) 0.75rem max(0.75rem, env(safe-area-inset-bottom, 0px));
    background: rgba(5, 8, 18, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.self-transfer-confirm.is-visible {
    display: flex;
}
.self-transfer-confirm__panel {
    width: 100%;
    max-width: 30rem;
    border-radius: 16px;
    border: 1px solid rgba(251, 191, 36, 0.24);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(30, 27, 75, 0.95));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
    padding: 1rem;
    box-sizing: border-box;
}
.self-transfer-confirm__title {
    margin: 0 0 0.45rem;
    font-size: 1.06rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}
.self-transfer-confirm__txt {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    font-size: 0.94rem;
}
.self-transfer-confirm__target {
    margin-top: 0.58rem;
    padding: 0.5rem 0.62rem;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.36);
    background: rgba(59, 130, 246, 0.1);
    color: #bfdbfe;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.4;
}
.self-transfer-confirm__actions {
    margin-top: 0.88rem;
    display: flex;
    gap: 0.52rem;
}
.self-transfer-confirm__actions .btn {
    flex: 1;
    width: auto;
    min-height: 2.8rem;
    border-radius: 11px;
}
.self-transfer-confirm__cancel {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}
.self-transfer-confirm__cancel:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

/* Date range line break (was inline <style> in template) */
.ed-date-br { display: none; }
@media (max-width: 600px) {
  .ed-date-br { display: inline; }
}

.ed-date-range--lead {
  font-size: 1.25rem;
  display: block;
  margin-top: 0.25rem;
}
.ed-date-single--lead {
  font-size: 1.35rem;
  display: block;
  margin-top: 0.25rem;
}
.ed-doors-line {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--text);
}

.ed-info-block {
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.ed-info-title {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ed-info-content { margin: 0; }

.ed-description-block {
  padding: 1.05rem 1.15rem 1.15rem 1.2rem;
  border-left: 3px solid var(--brand-gold);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 0 10px 10px 0;
}
.ed-desc-text {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  white-space: pre-line;
  max-width: 65ch;
}
.ed-drink-below-desc {
  padding: 0.85rem 1rem 0.95rem 1.05rem;
  border-left: 3px solid rgba(13, 148, 136, 0.55);
  background: rgba(13, 148, 136, 0.09);
  border-radius: 0 10px 10px 0;
  box-sizing: border-box;
}
.ed-drink-below-desc__inner { max-width: 65ch; }
.ed-drink-below-desc__title {
  font-weight: 700;
  color: rgba(167, 243, 208, 0.98);
  font-size: 0.92rem;
  margin: 0 0 0.4rem;
}
.ed-drink-below-desc__txt {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  white-space: pre-line;
}

.ed-header--lead {
  margin-top: 0.15rem;
  margin-bottom: 0.35rem;
}
.ed-header--details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
}
.ed-meta--lead strong { color: inherit; }

