/* ==========================================================================
   PAGE SPÉCIFIQUE : ATS EDITIONS
   ========================================================================== */
/* Fond spatial teinté de vert émeraude */
body.page-editions {
    background-image:
        radial-gradient(circle at 50% 0%, rgba(42, 157, 143, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(245, 208, 97, 0.05) 0%, transparent 50%),
        linear-gradient(to bottom, var(--bg-main), var(--bg-deep));
}

/* La vague de lumière du haut : Or vers Vert */
body.page-editions #entete-global::before {
    background: linear-gradient(90deg, transparent 0%, var(--gold-accent) 40%, rgba(42, 157, 143, 0.9) 60%, transparent 100%);
}

/* Titre H1 : Dégradé Blanc -> Vert -> Blanc */
body.page-editions #entete-global h1 {
    background: linear-gradient(to right, var(--text-main) 20%, rgb(var(--edit-neon)) 50%, var(--text-main) 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 8s linear infinite;
}

body.page-editions .hr-edit {
    background: linear-gradient(to right, transparent, rgba(42, 157, 143, 0.5), transparent);
}

/* Cartes de la page Editions */
.edit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid rgba(42, 157, 143, 0.5); /* Liseré vert permanent */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animation de l'icône Bouclier / Diamant (Protection & Valeur) */
.icon-shield {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 2px solid rgb(var(--edit-neon));
    transform: rotate(45deg); /* Crée la forme de losange */
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 0 10px rgba(var(--edit-neon), 0.5);
    animation: lueurProtectrice 3s ease-in-out infinite;
}

@keyframes lueurProtectrice {
    0% { box-shadow: 0 0 5px rgba(42, 157, 143, 0.3); background-color: transparent; }
    50% { box-shadow: 0 0 20px rgba(42, 157, 143, 0.8), inset 0 0 10px rgba(42, 157, 143, 0.5); background-color: rgba(42, 157, 143, 0.2); }
    100% { box-shadow: 0 0 5px rgba(42, 157, 143, 0.3); background-color: transparent; }
}

/* Pulsation plus rapide pour la carte Synchronisation (Business) */
.shield-active {
    animation: lueurProtectrice 1.5s ease-in-out infinite;
}

.edit-card h3 {
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.edit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(42, 157, 143, 0.4);
    box-shadow: inset 0 0 40px rgba(42, 157, 143, 0.1), 0 10px 30px rgba(42, 157, 143, 0.2);
}

/* Mise en avant spécifique pour la carte Sync */
.focus-sync {
    background: rgba(42, 157, 143, 0.05);
    border-top: 3px solid rgb(var(--edit-neon));
}