/* Styles pour la page Actualité */
.actualite-card {
    border-radius: .6rem;
    box-shadow: 0 10px 30px rgba(22, 22, 22, 0.08);
    overflow: hidden;
    background: #fff;
}
.actualite-hero {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}
.actualite-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.actualite-hero:hover img {
    transform: scale(1.04);
}
.badge-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 123, 255, 0.9);
    color: #fff;
    padding: .45rem .65rem;
    border-radius: .35rem;
    font-weight: 600;
    font-size: .9rem;
}
.actualite-content {
    padding: 1.6rem;
}
.actualite-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.meta-line {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: .95rem;
}
.description {
    color: #333;
    line-height: 1.75;
    font-size: 1.05rem;
    white-space: pre-wrap;
}
.btn-link-actualite {
    margin-top: 1rem;
}
.placeholder-image {
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
    color:#fff;
    font-weight:700;
    font-size:1.25rem;
    background: linear-gradient(135deg, #6fb1ff 0%, #1e88e5 100%);
}
@media (min-width: 992px) {
    .actualite-hero { min-height: 420px; }
}