.actualites-container {
    width: 100%;
    padding: 20px;
}

.actualites-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-top: 0;
}

.actualite-item {
    width: 300px;
    height: 300px;
    flex: 0 0 auto;
    overflow: hidden;
}

.actualite-content {
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background-color: #FEE1B5;
    border-radius: 2rem;
    position: relative;
}

.actualite-content[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FEE1B5;
    opacity: 0.66;
    z-index: 1;
}

.actualite-content[style*="background-image"]>* {
    position: relative;
    z-index: 2;
}

.actualite-text {
    color: #2D2E83;
    margin: 15px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.actualite-content h2 {
    color: #E94E1B;
    text-align: center;
    margin: 0;
    font-size: 1.2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.actualite-content .btn {
    width: auto;
    align-self: center;
}