.content-vendredi-fou {
	max-width: 1200px;
   margin: 0 auto;
   padding: 40px 15px 60px;
   background: black;
   margin-top: 10px;
}

.vf-title {
	text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
    color: #f69500;
}

.vf-intro {
	text-align: center;
   font-size: 1.5rem;
   color: white;
   margin-bottom: 30px;
}

.vf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.vf-item {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    background: #fff;
}

.vf-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.vf-item:hover img {
    transform: scale(1.03);
    opacity: 0.95;
}

/* Un peu de marge sur mobile */
@media (max-width: 600px) {
    .content-vendredi-fou {
        padding: 25px 10px 40px;
    }

    .vf-title {
        font-size: 1.8rem;
    }
}
