.ressources.section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: #cc6e25;
    margin: 15px auto;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.type-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin: 30px 0 20px;
    border-left: 4px solid #cc6e25;
    padding-left: 15px;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.category-filter .btn-custom {
    background-color: #b35f20;
    border: 1px solid #cc6e25;
    color: #cc6e25;
    padding: 8px 16px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-filter .btn-custom:hover,
.category-filter .btn-custom.active {
    background-color: #cc6e25;
    color: #ffffff;
}

.single-ressource {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.single-ressource:hover {
    transform: translateY(-5px);
}

.ressource-head img.ressource-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.ressource-body {
    padding: 20px;
}

.ressource-content .date {
    font-size: 0.9rem;
    color: #cc6e25;
    margin-bottom: 10px;
}

.ressource-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ressource-content h2 a {
    color: #333;
    text-decoration: none;
}

.ressource-content h2 a:hover {
    color: #cc6e25;
}

.ressource-content p.text {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
}

.ressource-content p.meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.ressource-content p.meta strong {
    color: #333;
}

.btn-custom {
    background-color: #cc6e25;
    border-color: #cc6e25;
    color: #ffffff !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
    background-color: #b35f20;
    border-color: #b35f20;
    color: #ffffff;
}

.btn-sm {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
}

.ressource-detail .ressource-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.ressource-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.ressource-content p strong {
    color: #333;
}

.breadcrumbs {
    background-size: cover;
    background-position: center;
}