body {
    background-color: #FFF;
}

body[page="album"] main {
    background-image: url(../images/bg-partners.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: 40vw;
}

body[page="album"] section.partners_list {
    display: none;
}

section.album_title {
    padding-bottom: 30px;
    padding-top: 10px;
    background-color: #024F73;
}

section.album_title h1 {
    color: #FFF;
}

section.album_page {
    padding: 70px 40px 40px;
}

.album_tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.album_tab {
    appearance: none;
    border: 0;
    min-width: 150px;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 999px;
    background: #e7f5fb;
    color: #024F73;
    box-shadow: 0 5px 0 rgba(2, 79, 115, 0.22);
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.album_tab.is_active {
    background: #ffe500;
    color: #024F73;
}

.album_count {
    margin: 0 auto 26px;
    color: #024F73;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
}

.album_status {
    display: none;
    margin: 0 auto 26px;
    color: #024F73;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}

.album_status.is_visible {
    display: block;
}

.album_masonry {
    column-count: 2;
    column-gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
}

.album_photo,
.album_video {
    display: block;
    break-inside: avoid;
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 8px;
    background: #eef8fb;
    box-shadow: 0 10px 22px rgba(2, 79, 115, 0.12);
}

.album_photo {
    cursor: zoom-in;
}

.album_photo img {
    transition: transform 0.25s ease;
}

.album_photo:hover img {
    transform: scale(1.025);
}

.album_video {
    position: relative;
    aspect-ratio: 9 / 16;
}

.album_video iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.album_video .instagram-media {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.album_video_ig {
    aspect-ratio: auto;
    overflow: visible;
    padding: 8px;
}

.album_video_ig iframe {
    position: static;
    display: block;
    min-height: 620px;
}

.album_photo img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 991px) {
    section.album_page {
        padding: 36px 24px 24px;
    }

    .album_tabs {
        gap: 10px;
        margin-bottom: 16px;
    }

    .album_tab {
        min-width: calc(50% - 8px);
        min-height: 44px;
        padding: 11px 16px;
        font-size: 16px;
    }

    .album_count {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .album_masonry {
        column-count: 1;
        column-gap: 0;
    }

    .album_photo,
    .album_video {
        margin-bottom: 18px;
    }
}
