#actus-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
}

.actus-main {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.actus-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.actus-overlay {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.actus-overlay h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.actus-overlay h2::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #BE094F, transparent);
    margin-top: 8px;
}

.actus-overlay p {
    font-size: 18px;
    color: white;
    margin: 15px 0;
}

.actus-button {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid white;
    color: white;
    background: #BE094F;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.actus-button:hover {
    background: white;
    color: #BE094F;
}

.actus-thumbnails {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.actus-thumb {
    flex: 1;
    height: 100px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border 0.3s ease;
}

.actus-thumb:hover {
    transform: scale(1.03);
    border: 2px solid #BE094F;
}

.actus-thumb::after {
    content: attr(data-title);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.actus-thumb:hover::after {
    opacity: 1;
}
.actus-thumb.active {
    border: 2px solid white;
}
