/* ── Carte événement ACCKit ─────────────────────────────────── */
.acck-card {
    position: relative;
    background: #fff;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,.10);
    transition: transform .25s ease, box-shadow .25s ease;
}
.acck-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.16);
}

/* Lien couvrant toute la card (clic → page event) */
.acck-card__overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ── Layout deux colonnes ───────────────────────────────────── */
/* Pas de z-index ici : on évite un nouveau stacking context qui bloquerait l'overlay */
.acck-card__inner {
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 260px;
}

/* ── Colonne gauche : texte ─────────────────────────────────── */
.acck-card__body {
    flex: 1 1 0;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

/* ── Titre ──────────────────────────────────────────────────── */
.acck-card__title {
    margin: 0;
    font-size: 1.3em;
    font-weight: 700;
    color: #1a3560 !important;
    line-height: 1.25;
}

/* ── Méta-infos ─────────────────────────────────────────────── */
.acck-card__meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}
.acck-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
}
.acck-meta-row__icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.acck-meta-row__icon svg {
    width: 15px;
    height: 15px;
    stroke: #2e6da4;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.acck-meta-row__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.acck-meta-row__label {
    font-size: .68em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    line-height: 1;
    margin-bottom: 2px;
}
.acck-meta-row__value {
    font-size: .9em;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}

/* ── Contenu / description ──────────────────────────────────── */
.acck-card__content {
    font-size: .88em;
    line-height: 1.7;
    color: #4b5563;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}
.acck-card__content p:first-child { margin-top: 0; }
.acck-card__content p:last-child  { margin-bottom: 0; }

/* ── Bouton inscription ─────────────────────────────────────── */
.acck-card__btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-top: 16px;
    padding: 10px 22px;
    background: #e5b837;
    color: #fff !important;
    font-size: .88em;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .2s ease, transform .15s ease;
    width: 200px;
    text-align: center;
}
.acck-card__btn:hover {
    background: #1a3560;
    transform: translateY(-1px);
}

/* ── Colonne image ──────────────────────────────────────────── */
.acck-card__img-wrap {
    flex: 0 0 260px;
    background-size: cover;
    background-position: center;
    background-color: linear-gradient(135deg, #1a3560 0%, #2e6da4 100%);
    min-height: 200px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 580px) {
    .acck-card__inner {
        flex-direction: column-reverse;
    }
    .acck-card__img-wrap {
        flex: 0 0 auto;
        height: 180px;
        width: 100%;
    }
    .acck-card__body {
        padding: 20px 18px;
    }
}
