.cta-card-924339af {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 400px;
    border-radius: 8px;
    --cta-hover-duration: 0.4s;
}

.cta-card-is-link-924339af {
    cursor: pointer;
}

.cta-card-bg-924339af {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--cta-hover-duration) ease;
}

.cta-card-overlay-924339af {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    transition: opacity var(--cta-hover-duration) ease;
}

.cta-card-link-overlay-924339af {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
}

.cta-card-content-wrapper-924339af {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    pointer-events: none;
}

.cta-card-content-924339af {
    display: flex;
    flex-direction: column;
    padding: 40px;
    width: 100%;
    transition: transform var(--cta-hover-duration) ease;
    pointer-events: none;
}

.cta-card-icon-wrapper-924339af {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    align-self: flex-start;
}

.cta-card-content-wrapper-924339af[style*="center"] .cta-card-icon-wrapper-924339af {
    align-self: center;
}

.cta-card-content-wrapper-924339af[style*="flex-end"] .cta-card-icon-wrapper-924339af {
    align-self: flex-end;
}

.cta-card-icon-924339af {
    font-size: 32px;
}

.cta-card-icon-924339af svg {
    width: 1em; height: 1em; fill: currentColor;
}

.cta-card-title-924339af {
    margin: 0 0 10px;
}

.cta-card-desc-924339af {
    margin: 0 0 20px;
}

.cta-card-btn-924339af {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
    z-index: 30;
    align-self: flex-start;
    pointer-events: auto;
}

.cta-card-content-wrapper-924339af[style*="center"] .cta-card-btn-924339af {
    align-self: center;
}

.cta-card-content-wrapper-924339af[style*="flex-end"] .cta-card-btn-924339af {
    align-self: flex-end;
}

.cta-card-btn-924339af:hover {
    opacity: 0.9;
}

.cta-card-hover-enabled-924339af:hover .cta-card-bg-924339af {
    transform: scale(1.05);
}

.cta-card-hover-enabled-924339af:hover .cta-card-content-924339af {
    transform: translateY(-6px);
}

/* Rend toute la carte cliquable */
.cta-card-is-link-924339af {
    cursor: pointer !important;
}

/* Le lien invisible prend toute la carte et passe au-dessus */
.cta-card-link-overlay-924339af {
    position: absolute !important;
    inset: 0 !important;
    z-index: 999 !important;
    display: block !important;
    cursor: pointer !important;
}

/* Le contenu reste visible mais ne bloque pas le clic */
.cta-card-content-wrapper-924339af,
.cta-card-content-924339af,
.cta-card-title-924339af,
.cta-card-desc-924339af {
    pointer-events: none !important;
}

/* Si tu gardes un vrai bouton visible */
.cta-card-btn-924339af {
    position: relative !important;
    z-index: 1000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}