/* Boutons Gutenberg */
.wp-block-button {
    margin: 20px auto !important;


}
.wp-block-button__link {
    background-color: var(--systemoun-strong-color, #19744C);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;

    transition: all 0.2s ease-in-out;
}

.wp-block-button__link:hover {
    filter: brightness(0.9);
    color: #ffffff;
}



/* Liens globaux */
a {
    color: var(--healththeme-color, #19744C);
    text-decoration: underline;
}

a:hover {
    color: var(--systemoun-strong-color, #19744C);
    text-decoration: none;
}

/* Style du bouton 'Voir plus' au composant bouton personnalisé */
.custom-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--systemoun-strong-color, #19744C);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-duration, 0.3s) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(25, 116, 76, 0.3);
    position: relative;
    overflow: hidden;
}

.custom-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.custom-button:hover::before {
    left: 100%;
}

.custom-button:hover {
    background: var(--systemoun-strong-color-hover, #135A3B);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(25, 116, 76, 0.4);
    text-decoration: none;
    color: white;
}
