/* ── Fiche info événement ACCKit ────────────────────────────── */
.acck-info {
    max-width: 380px;
    font-family: inherit;
    font-size: .93em;
    color: #333;
}

/* ── Section (bloc Détails / Lieu) ──────────────────────────── */
.acck-info__section {
    margin-bottom: 28px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.acck-info__section-title {
    margin: 0;
    padding: 10px 16px;
    background: #e5b837;
    color: #fff;
    font-size: 1em !important;
    font-weight: 600;
    letter-spacing: .02em;
}

.acck-info__section-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Ligne label / valeur ───────────────────────────────────── */
.acck-info__row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.acck-info__label {
    font-weight: 700;
    color: #222;
    font-size: .9em;
}

.acck-info__value {
    color: #444;
    line-height: 1.5;
}

.acck-info__value a {
    color: #e5b837;
    text-decoration: none;
    word-break: break-word;
}
.acck-info__value a:hover {
    text-decoration: underline;
}

/* ── Adresse du lieu ────────────────────────────────────────── */
.acck-info__address {
    color: #666;
    font-size: .92em;
    line-height: 1.6;
}

/* ── Lien Google Maps ───────────────────────────────────────── */
.acck-info__map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #c0392b !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: .9em;
}
.acck-info__map-link svg {
    width: 14px;
    height: 14px;
    fill: #c0392b;
    flex-shrink: 0;
}
.acck-info__map-link:hover {
    text-decoration: underline !important;
}

/* ── Carte Google Maps embarquée ────────────────────────────── */
.acck-info__map-embed {
    margin-top: 10px;
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}
.acck-info__map-embed iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

/* ── Séparateur ─────────────────────────────────────────────── */
.acck-info__sep {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 4px 0;
}

/* ── Bouton inscription ─────────────────────────────────────── */
.acck-info .acck-card__btn {
    display: inline-block;
    margin-top: 4px;
    padding: 10px 22px;
    background: #e5b837;
    color: #fff !important;
    font-size: .88em;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: background .2s ease, transform .15s ease;
}
.acck-info .acck-card__btn:hover {
    background: #c9a020;
    transform: translateY(-1px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 480px) {
    .acck-info {
        max-width: 100%;
    }
}
