.media-gallery {
    position: relative;
}

.media-gallery-see-all-photos-button {
    position: absolute;
    z-index: 1;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 36px;
    width: 195px;
    bottom: 16px;
    right: 16px;
    border: 1px solid rgb(167, 166, 171);
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    appearance: button;
    cursor: pointer;
    overflow: visible;
    text-transform: none;
}

.media-gallery-see-all-photos-button > svg {
    margin-right: 8px;
    font-size: 21px;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    stroke: currentcolor;
    fill: currentcolor;
    height: 1em;
    width: 1em;
}

.spotlight-group {
    display: grid;
    gap: 8px;
    height: auto;
    aspect-ratio: 43 / 18;
    margin: 0;
    max-width: unset;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    flex-flow: row wrap;
    align-content: flex-start;
    overflow-x: hidden;
}

.spotlight {
    background-color: rgb(241, 241, 244);
    background-size: 386px;
    background-repeat: no-repeat;
    background-image: linear-gradient(to right, rgb(241, 241, 244), rgb(249, 249, 251), rgb(241, 241, 244));
    animation-name: hzEhKP;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    grid-column: unset;
    height: 100%;
    list-style-type: none;
    overflow: hidden;
    border: solid 2px #eeeeee;
    width: 100%;
    filter: none;
    cursor: pointer;
    display: block;
    scroll-snap-align: center;
    box-shadow: inset rgba(0, 0, 0, 0.15) 0 0 10px;
}

.spotlight:nth-child(5) ~ .spotlight {
    display: none;
}

.spotlight:nth-of-type(1) {
    grid-column: span 2;
    grid-area: 1 / 1 / 3 / 3;
    height: 100%;
}

.spotlight:nth-of-type(2) {
    grid-area: 1 / 3 / 2 / 4;
}

.spotlight:nth-of-type(3) {
    grid-area: 2 / 3 / 3 / 4;
}

.spotlight:hover {
    filter: brightness(70%);
    transition: filter 0.1s ease-in;
}

.spotlight > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

@supports (display: grid) {
    .spotlight-group {
        display: grid;
        grid-gap: 4px;
        grid-auto-columns: 1fr;
        margin: 0 auto;
    }

    .spotlight {
        border-width: 0;
        width: auto;
    }
}

@media (width >= 56rem) {
    .spotlight-group {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (width >= 64rem) {
    .spotlight {
        border-width: 4px / 2;
    }
}

@media (width >= 80rem) {
    .spotlight {
        border-width: 4px / 2;
    }
}

@media (width >= 96rem) {
    /**/
}

@media (width < 96rem) {
    /**/
}

@media (width < 80rem) {
    .spotlight-group {
        aspect-ratio: 43 / 18;
    }
}

@media (width < 56rem) {
    .spotlight-group {
        aspect-ratio: 43 / 22;
    }

    .spotlight:nth-child(3) ~ .spotlight {
        display: none;
    }
}

@media (width < 50rem) {
    /**/
}

@media (width < 48rem) {
    .spotlight-group {
        aspect-ratio: 43 / 26;
    }
}

@media (width < 40rem) {
    .spotlight:nth-of-type(1) {
        grid-column: span 3;
    }

    .spotlight:nth-child(1) ~ .spotlight {
        display: none;
    }
}
