:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5f7eed0 *//* Variables CSS globales */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
    --font-title: 'Source Sans 3', 'Source Sans Pro', sans-serif;
    --mv-bg-card: #FFFFFF;
    --mv-text-main: #1F2937;
    --mv-text-muted: #6B7280;
    --mv-border: #E5E7EB;
    --mv-radius: 16px;
    --mv-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Dégradé Mailvista demandé */
    --mv-gradient: linear-gradient(90deg, #780fdd, #8b1efd, #f20063);
}

.mailvista-resources-container {
    font-family: inherit; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.mv-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Application de tes styles spécifiques sur le titre principal */
.mv-header .mv-main-title {
    font-family: var(--font-title);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    
    /* Ton effet de dégradé textuel */
    background: var(--mv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mv-header p {
    color: var(--mv-text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grille CSS adaptative */
.mv-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Style des cartes de ressources */
.mv-doc-card {
    background: var(--mv-bg-card);
    border: 1px solid var(--mv-border);
    border-radius: var(--mv-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: var(--mv-transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Effet de contour en dégradé subtil au survol */
.mv-doc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(120, 15, 221, 0.08);
    border-color: transparent;
}

/* Astuce CSS pour créer une bordure en dégradé parfaite au survol */
.mv-doc-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: var(--mv-radius);
    background: var(--mv-gradient);
    z-index: -1;
    opacity: 0;
    transition: var(--mv-transition);
}

.mv-doc-card:hover::before {
    opacity: 1;
}

/* Conteneur interne pour bloquer le fond blanc par-dessus la fausse bordure dégradée */
.mv-doc-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--mv-bg-card);
    border-radius: calc(var(--mv-radius) - 1px);
    z-index: -1;
}

/* Style de l'icône avec rappel du dégradé */
.mv-doc-icon {
    background: rgba(139, 30, 253, 0.08);
    color: #8b1efd;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-doc-content {
    flex-grow: 1;
}

.mv-doc-content h3 {
    color: var(--mv-text-main);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.mv-doc-content p {
    color: var(--mv-text-muted);
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0 0 28px 0;
}

/* Bouton avec le dégradé en arrière-plan */
.mv-btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    background: var(--mv-gradient);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: var(--mv-transition);
    border: none;
    cursor: pointer;
    background-size: 150% auto;
}

/* Effet lumineux de glissement du dégradé au survol du bouton */
.mv-btn-download:hover {
    background-position: right center;
    box-shadow: 0 8px 20px rgba(242, 0, 99, 0.25);
}

.mv-btn-download svg {
    transition: transform 0.25s ease;
}

.mv-btn-download:hover svg {
    transform: translateX(5px); 
}

/* Responsive pour tablettes et mobiles */
@media (max-width: 992px) {
    .mv-header .mv-main-title {
        font-size: 46px; /* Réduction de la taille sur tablette */
    }
}

@media (max-width: 768px) {
    .mv-header .mv-main-title {
        font-size: 36px; /* Réduction de la taille sur smartphone */
    }
    .mv-docs-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */