.post {
    margin-bottom: 2.5rem;
    width: 100%;
}

/* Gestion des images (ratio 16/9) */
.image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #1a1a1a;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.image-wrapper img:hover {
    opacity: 0.85;
}

/* Zone de texte */
.post .contentPost {
    padding-top: 0.8rem;
}

.post .title {
    margin-bottom: 0.5rem;
}

.post .title a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}