/* ── Bloc "Ajouter au calendrier" ACCKit ────────────────────── */
.acck-cal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-family: inherit;
}

.acck-cal__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: .875em;
    font-weight: 600;
    text-decoration: none !important;
    color: #fff !important;
    transition: opacity .2s ease, transform .15s ease;
    white-space: nowrap;
}
.acck-cal__btn:hover {
    opacity: .88;
    transform: translateY(-1px);
}

.acck-cal__btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: #fff;
}

/* Couleurs par service */
.acck-cal__btn--google  { background: #4285F4; }
.acck-cal__btn--outlook { background: #0078D4; }
.acck-cal__btn--ics     { background: #6b7280; }

/* ── Label optionnel au-dessus ──────────────────────────────── */
.acck-cal__wrap {
    font-family: inherit;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.acck-cal__label {
    display: block;
    font-size: .82em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #6b7280;
    margin-bottom: 8px;
    text-align: center;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 400px) {
    .acck-cal__btn {
        width: 100%;
        justify-content: center;
    }
}
