/* =============================================
   RESSOURCERIE PAGES — Redesign 2026
   Namespacé sous .ressourcerie-page
   ============================================= */

/* --- Animations --- */
@keyframes ress-fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   TITRE SECTION
   ============================================= */
.ressourcerie-page .ress-section-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #222;
    text-align: center;
    margin-bottom: 10px;
}

.ressourcerie-page .ress-section-subtitle {
    font-size: 1.05rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   FILTRES (sticky sous le header du site)
   ============================================= */
.ressourcerie-page .ress-filtres {
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 110px;
    z-index: 900;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-bottom: 1px solid #eee;
}

.ressourcerie-page .filtres-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ressourcerie-page .filtre-select {
    flex: 1;
    min-width: 0;
    position: relative;
}

.ressourcerie-page .filtre-select fieldset {
    margin: 0;
}

.ressourcerie-page .filtre-select select {
    width: 100%;
    padding: 10px 36px 10px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ressourcerie-page .filtre-select select:focus {
    outline: none;
    border-color: #1a5ea6;
    box-shadow: 0 0 0 3px rgba(26, 94, 166, 0.12);
}

.ressourcerie-page .filtre-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.ressourcerie-page .btn-reset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    background: #f0f0f0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.ressourcerie-page .btn-reset:hover {
    color: #1a5ea6;
    background: #e0edff;
}

.ressourcerie-page .results-count {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a5ea6;
    white-space: nowrap;
}

/* =============================================
   GRILLE CARDS
   ============================================= */
.ressourcerie-page .ress-grid-section {
    padding: 40px 0 60px;
    background: #f8f9fa;
    overflow: hidden;
}

.ressourcerie-page .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =============================================
   CARD COMMUNE
   ============================================= */
.ressourcerie-page .ress-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.ressourcerie-page .ress-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* --- Card Image --- */
.ressourcerie-page .card-image {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid;
}

.ressourcerie-page .card-image-pink { border-bottom-color: #E60778; }
.ressourcerie-page .card-image-green { border-bottom-color: #04a98b; }
.ressourcerie-page .card-image-blue { border-bottom-color: #0A7CC1; }
.ressourcerie-page .card-image-purple { border-bottom-color: #7c3aed; }

.ressourcerie-page .card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ressourcerie-page .ress-card:hover .card-image img {
    transform: scale(1.05);
}

/* --- Badges --- */
.ressourcerie-page .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    border-radius: 20px;
    z-index: 2;
}

.ressourcerie-page .card-badge-pink { background: #E60778; }
.ressourcerie-page .card-badge-green { background: #04a98b; }
.ressourcerie-page .card-badge-blue { background: #0A7CC1; }
.ressourcerie-page .card-badge-purple { background: #7c3aed; }

.ressourcerie-page .card-year {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 4px;
}

.ressourcerie-page .card-badge-right {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    color: #fff;
    border-radius: 4px;
    z-index: 2;
}

.ressourcerie-page .card-badge-right-green { background: #04a98b; }
.ressourcerie-page .card-badge-right-orange { background: #e67e22; }

/* --- Card Body --- */
.ressourcerie-page .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ressourcerie-page .card-body h3 {
    font-size: 1.05rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
    line-height: 1.4;
}

.ressourcerie-page .card-body .card-subtitle {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.4;
}

.ressourcerie-page .card-body .card-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Card Tags --- */
.ressourcerie-page .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.ressourcerie-page .card-tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #666;
    background: #f0f0f0;
    border-radius: 12px;
    letter-spacing: 0.2px;
}

.ressourcerie-page .card-tag-pink {
    color: #E60778;
    background: #fce8f2;
}

.ressourcerie-page .card-tag-green {
    color: #04a98b;
    background: #e6f7f3;
}

.ressourcerie-page .card-tag-blue {
    color: #0A7CC1;
    background: #e8f0fc;
}

.ressourcerie-page .card-tag-purple {
    color: #7c3aed;
    background: #f0e8fc;
}

.ressourcerie-page .card-tag-region {
    color: #1a5ea6;
    background: #e8f0fc;
}

/* --- Indicateur Réalisation (Projets) --- */
.ressourcerie-page .card-realisation {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: auto;
    padding-top: 10px;
}

.ressourcerie-page .card-realisation-ok {
    color: #04a98b;
}

.ressourcerie-page .card-realisation-no {
    color: #aaa;
}

/* --- Bouton Voir (lien direct) --- */
.ressourcerie-page .card-footer {
    padding: 16px 20px 20px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-radius: 0 0 12px 12px;
}

.ressourcerie-page .btn-voir {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a5ea6;
    background: transparent;
    border: 2px solid #1a5ea6;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ressourcerie-page .btn-voir:hover {
    background: #1a5ea6;
    color: #fff;
}

/* =============================================
   MODAL CUSTOM (Projets uniquement)
   ============================================= */
.ressourcerie-page .ress-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.ressourcerie-page .ress-modal-overlay.active {
    display: flex;
}

.ressourcerie-page .ress-modal-card {
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    animation: ress-fadeInUp 0.3s ease;
}

.ressourcerie-page .ress-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.ressourcerie-page .ress-modal-close:hover {
    background: rgba(0,0,0,0.7);
}

/* --- Galerie images --- */
.ressourcerie-page .ress-gallery {
    position: relative;
    overflow: hidden;
}

.ressourcerie-page .ress-gallery img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
}

.ressourcerie-page .ress-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.85);
    color: #333;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ressourcerie-page .ress-gallery-btn:hover {
    background: #fff;
}

.ressourcerie-page .ress-gallery-prev { left: 12px; }
.ressourcerie-page .ress-gallery-next { right: 12px; }

.ressourcerie-page .ress-gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.ressourcerie-page .ress-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.ressourcerie-page .ress-gallery-dot.active {
    background: #fff;
}

/* --- Modal Body --- */
.ressourcerie-page .ress-modal-card .modal-body {
    padding: 30px;
}

.ressourcerie-page .ress-modal-card .modal-body h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #222;
}

.ressourcerie-page .ress-modal-card .modal-body h3 {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 20px;
}

.ressourcerie-page .ress-modal-card .modal-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.ressourcerie-page .modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ressourcerie-page .modal-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #888;
}

.ressourcerie-page .modal-meta-item i {
    color: #1a5ea6;
}

/* --- Modal Réalisation --- */
.ressourcerie-page .modal-realisation {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ressourcerie-page .modal-realisation-ok {
    background: #e6f7f3;
    color: #04a98b;
}

.ressourcerie-page .modal-realisation-no {
    background: #f5f5f5;
    color: #999;
}

.ressourcerie-page .modal-realisation a {
    color: inherit;
    text-decoration: underline;
}

.ressourcerie-page .modal-realisation a:hover {
    opacity: 0.8;
}

/* --- Modal Links (Contacts) --- */
.ressourcerie-page .modal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.ressourcerie-page .modal-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    color: #555;
    transition: all 0.2s;
    text-decoration: none;
}

.ressourcerie-page .modal-links a:hover {
    border-color: #1a5ea6;
    color: #1a5ea6;
}

.ressourcerie-page .modal-links a i {
    width: 18px;
    text-align: center;
    color: #1a5ea6;
}

/* --- No results --- */
.ressourcerie-page #noResults {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #888;
    padding: 60px 20px;
}

.ressourcerie-page #noResults a {
    color: #1a5ea6;
}

/* =============================================
   PAGE PRINCIPALE — Section recherche
   ============================================= */
.ressourcerie-page .ress-search-section {
    padding: 50px 0;
    background: #fff;
}

.ressourcerie-page .ress-search-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.ressourcerie-page .ress-search-form .select2-field-wrapper {
    flex: 1;
    min-width: 0;
}

.ressourcerie-page .ress-search-form .select2-container .select2-selection--multiple {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 8px 12px;
    min-height: 48px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ressourcerie-page .ress-search-form .select2-container--focus .select2-selection--multiple,
.ressourcerie-page .ress-search-form .select2-container--open .select2-selection--multiple {
    border-color: #1a5ea6;
    box-shadow: 0 0 0 3px rgba(26, 94, 166, 0.12);
}

.ressourcerie-page .btn-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(135deg, #1a5ea6, #0A7CC1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 48px;
    flex-shrink: 0;
}

.ressourcerie-page .btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 94, 166, 0.35);
}

/* =============================================
   PAGE PRINCIPALE — Section catégories
   ============================================= */
.ressourcerie-page .ress-categories-section {
    padding: 50px 0 60px;
    background: #f8f9fa;
}

.ressourcerie-page .ress-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.ressourcerie-page .ress-category-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.ressourcerie-page .ress-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
}

.ressourcerie-page .cat-image-wrapper {
    position: relative;
    overflow: hidden;
}

.ressourcerie-page .cat-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.ressourcerie-page .cat-pink .cat-image-wrapper::after { background: #E60778; }
.ressourcerie-page .cat-green .cat-image-wrapper::after { background: #04a98b; }
.ressourcerie-page .cat-blue .cat-image-wrapper::after { background: #0A7CC1; }
.ressourcerie-page .cat-purple .cat-image-wrapper::after { background: #7c3aed; }

.ressourcerie-page .cat-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.ressourcerie-page .ress-category-card:hover .cat-image-wrapper img {
    transform: scale(1.05);
}

.ressourcerie-page .cat-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ressourcerie-page .cat-pink .cat-icon { background: #E60778; }
.ressourcerie-page .cat-green .cat-icon { background: #04a98b; }
.ressourcerie-page .cat-blue .cat-icon { background: #0A7CC1; }
.ressourcerie-page .cat-purple .cat-icon { background: #7c3aed; }

.ressourcerie-page .cat-body {
    padding: 22px;
}

.ressourcerie-page .cat-body h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #222;
    margin: 0 0 8px;
}

.ressourcerie-page .cat-body p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 14px;
}

.ressourcerie-page .cat-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.2s;
    display: inline-block;
}

.ressourcerie-page .cat-pink .cat-link { color: #E60778; }
.ressourcerie-page .cat-green .cat-link { color: #04a98b; }
.ressourcerie-page .cat-blue .cat-link { color: #0A7CC1; }
.ressourcerie-page .cat-purple .cat-link { color: #7c3aed; }

.ressourcerie-page .ress-category-card:hover .cat-link {
    transform: translateX(4px);
}

/* =============================================
   RESULTATS RECHERCHE — Retour + Headers
   ============================================= */
.ressourcerie-page .ress-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a5ea6;
    background: #e8f0fc;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 30px;
}

.ressourcerie-page .ress-back-btn:hover {
    transform: translateX(-3px);
    background: #d6e5f9;
    color: #1a5ea6;
    text-decoration: none;
}

.ressourcerie-page .ress-results-category {
    margin-bottom: 50px;
}

.ressourcerie-page .ress-results-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}

.ressourcerie-page .cat-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ressourcerie-page .cat-dot-pink { background: #E60778; }
.ressourcerie-page .cat-dot-green { background: #04a98b; }
.ressourcerie-page .cat-dot-blue { background: #0A7CC1; }
.ressourcerie-page .cat-dot-purple { background: #7c3aed; }

.ressourcerie-page .ress-results-category-header h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #222;
    margin: 0;
    flex: 1;
}

.ressourcerie-page .cat-count {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #888;
    white-space: nowrap;
}

.ressourcerie-page .ress-no-results {
    text-align: center;
    font-style: italic;
    color: #999;
    padding: 30px 20px;
    font-size: 0.95rem;
}

/* =============================================
   RESPONSIVE — Tablette
   ============================================= */
@media (max-width: 992px) {
    .ressourcerie-page .filtres-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .ressourcerie-page .filtre-actions {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .ressourcerie-page .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ressourcerie-page .ress-search-form {
        flex-direction: column;
    }

    .ressourcerie-page .btn-search {
        width: 100%;
    }

    .ressourcerie-page .ress-categories-grid {
        gap: 20px;
    }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */
@media (max-width: 576px) {
    .ressourcerie-page .ress-section-title {
        font-size: 1.5rem;
    }

    .ressourcerie-page .filtres-wrapper {
        grid-template-columns: 1fr;
    }

    .ressourcerie-page .filtre-select {
        min-width: 100%;
    }

    .ressourcerie-page .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ressourcerie-page .ress-gallery img {
        height: 200px;
    }

    .ressourcerie-page .ress-modal-card .modal-body {
        padding: 20px;
    }

    .ressourcerie-page .ress-modal-overlay {
        padding: 15px;
    }

    .ressourcerie-page .ress-categories-grid {
        grid-template-columns: 1fr;
    }

    .ressourcerie-page .cat-image-wrapper {
        /* hauteur auto, l'image s'affiche en entier */
    }

    .ressourcerie-page .cat-body {
        padding: 16px;
    }

    .ressourcerie-page .ress-search-section,
    .ressourcerie-page .ress-categories-section {
        padding: 30px 0;
    }

    .ressourcerie-page .ress-results-category-header {
        flex-wrap: wrap;
    }

    .ressourcerie-page .ress-results-category-header h2 {
        font-size: 1.1rem;
    }
}


/* ==========================================================================
   Fil d'Ariane Ressourcerie (moderne)
   ========================================================================== */

.ressourcerie-page .ress-breadcrumb {
    padding: 18px 0 0;
}

.ressourcerie-page .ress-breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 0 14px;
    border-bottom: 1px solid #e2e5e9;
}

.ressourcerie-page .ress-breadcrumb ol li {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6b7280;
}

.ressourcerie-page .ress-breadcrumb ol li + li::before {
    content: '\203A';
    margin: 0 10px;
    color: #b0b5bd;
    font-size: 1.15rem;
    line-height: 1;
}

.ressourcerie-page .ress-breadcrumb ol li a {
    color: #1a5ea6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.ressourcerie-page .ress-breadcrumb ol li a:hover {
    color: #E60778;
}

.ressourcerie-page .ress-breadcrumb ol li:last-child {
    color: #374151;
    font-weight: 600;
}
