/* ============================================================
   RESSOURCES & STYLES ACADÉMIE - ressources-style.css
   ============================================================ */

:root {
    --aurum-blue: #0B243E;
    --aurum-gold: #C5A059;
    --paper-white: #fcfaf7;
    --text-gray: #555;
}

/* Styles complémentaires pour la section ressources */
.resources-section {
    padding: 80px 5%;
    background: #ffffff;
}

.resources-header {
    text-align: center;
    margin-bottom: 60px;
}

.resources-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--aurum-blue);
    margin-bottom: 20px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
}

@media (max-width: 768px) {
    .resources-section { padding: 60px 5%; }
    .resources-header h2 { font-size: 2rem; }
}
