/* ==========================================================================
   Photo Banner (decorative)
   ========================================================================== */

.photo-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 3px;
}

/* ---------- Curved top arc ---------- */

.photo-banner__arc {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 1;
    line-height: 0;
}

.photo-banner__arc svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ---------- Images ---------- */

.photo-banner__images {
    display: flex;
    width: 100%;
}

.photo-banner__photo {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}

.photo-banner__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.photo-banner__photo--left {
    height: 450px;
}

.photo-banner__photo--right {
    height: 450px;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
    .photo-banner__photo--left,
    .photo-banner__photo--right {
        height: 200px;
    }

    .photo-banner__arc svg {
        height: 40px;
    }
}
