.int-map-slides {
    --blue: #085cb1;
}

.int-map-slides .slides {
    display: grid;
}

.int-map-slides .slide {
    position: relative;
}

.int-map-slides .slide,
.int-map-slides .slide > a,
.int-map-slides .slide img {
    height: 100%;
}

.int-map-slides .left-col .slide img {
    object-fit: cover;
}

.int-map-slides .right-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
}

.int-map-slides .right-col > div:first-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.int-map-slides .slide .shared-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    background-color: transparent;
    width: 48px;
    height: 48px;
    border: 2px solid white;
    border-radius: 100%;
    color: white;
    font-size: 22px;
    pointer-events: none;
}

.int-map-slides .slide .shared-play-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--blue);
    opacity: 0.75;
    border-radius: 100%;
}

.int-map-slides .slides .right-col .slide:first-child .title {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0 5px 5px;
    font-family: var(--font-imperial);
    font-size: 16px;
    line-height: 19px;
    margin: 0;
    color: white;
    font-weight: normal;
    z-index: 1;
    pointer-events: none;
    text-transform: none;
}

.int-map-slides .slides .right-col .slide:last-child img {
    border-bottom-right-radius: 16px;
}

@media (min-width: 1025px) {
    .int-map-slides .slides .right-col .slide:first-child .title {
        padding: 0 0 10px 10px;
        font-size: 20px;
        line-height: 23px;
    }
}