.wide-photo {
    position: relative;
    width: 1296px;
    max-width: 100%;
    height: 354px;
    margin: 21px auto 85px;
    border-radius: 15px;
    overflow: hidden;
}

/* Eerste element in z'n kolom: geen extra ruimte erboven. */
.wide-photo:first-child {
    margin-top: 0;
}

.wide-photo__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wide-photo__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    text-align: center;
    color: #fff;
    font-family: 'LucyCousins', cursive;
    font-size: 32px;
    text-transform: uppercase;
}

/* Mobiel (<=767px). Bewust onderaan zodat de overrides op bronvolgorde winnen
   van de basisregels hierboven (gelijke specificiteit). */
@media (max-width: 767px) {
    .wide-photo {
        margin-bottom: 41px;
    }

    .wide-photo__caption {
        font-size: 24px;
    }
}
