/* --- Style général du menu 7Cortex --- */
.r-welcome-align {
    padding: 20px;
    background: linear-gradient(to bottom right, #f8f9fa, #e6f5f2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Groupes de menu */
.welcome-group h2 {
    font-size: 22px;
    font-weight: 700;
    color: #32c7a1;
    border-bottom: 2px solid #32c7a1;
    padding-bottom: 8px;
    margin-top: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Items (cartes) */
.bs-welcome-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 16px 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.bs-welcome-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Liens dans les cartes */
.bs-welcome-header a {
    display: block;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s ease;
}

.bs-welcome-header a:hover {
    color: #32c7a1;
}

/* Espacement automatique */
.bs-welcome-header {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .r-welcome-align {
        padding: 10px;
    }
    .welcome-group h2 {
        font-size: 20px;
    }
    .bs-welcome-item {
        padding: 12px 15px;
    }
}
