/* ===============================
   MENTIONS LEGALES - VERSION CHIC
================================ */

.mentions-content {
    padding: 100px 0;
    background: #f4f6f8;
}

/* ===== GRID STRUCTURE ===== */
.mentions-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

/* ===== NAVIGATION ===== */
.mentions-nav {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-top: 4px solid #c6a75e;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.mentions-nav h3 {
    margin-bottom: 25px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mentions-nav ul {
    list-style: none;
    padding: 0;
}

.mentions-nav li {
    margin-bottom: 15px;
}

.mentions-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mentions-nav a:hover {
    color: #c6a75e;
    padding-left: 6px;
}

/* ===== CONTENU PRINCIPAL ===== */
.mentions-main {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.mentions-section {
    margin-bottom: 70px;
}

.mentions-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.mentions-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #c6a75e;
}

.mentions-section h3 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #111;
}

.mentions-section p {
    margin-bottom: 15px;
    color: #444;
}

.mentions-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .mentions-grid {
        grid-template-columns: 1fr;
    }

    .mentions-nav {
        position: relative;
        top: auto;
    }

    .mentions-main {
        padding: 35px;
    }
}

