.main-band {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-color: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.main-band-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-band-video > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-band-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: black;
    opacity: 0.8;
}

.main-band > .box {
    z-index: 10;
}

.main-content {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.page-title {
    color: white;
    font-size: 130px;
    margin-bottom: 60px;
    padding: 20px 0;
}

.page-title > span {
    color: #efb328;
}

.main-band .page-text {
    color: white;
    opacity: 0.6;
}

.gallery-band {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 0 50px 0;
}

.gallery-band.beige {
    background-color: var(--beige-color);
}

.gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-item {
    width: calc((100% - 30px) / 4);
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-color);
    object-fit: cover;
    cursor: pointer;
    transition: .2s ease filter;
}

.gallery-item:hover {
    filter: brightness(1.2);
}

.gallery-video {
    position: relative;
    width: calc((100% - 20px) / 3);
    aspect-ratio: 16 / 9;
    background-color: #c5c5c5;
}

.gallery-video > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.band-title {
    font-family: "Cormorant Garamond", serif;
    color: var(--text-color);
    font-size: 60px;
    line-height: 50px;
    margin-bottom: 30px;
}

.band-title > span {
    color: var(--gold-color);
    font-style: italic;
}

.main-band > .box {
    z-index: 10;
}

.main-band-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.main-band-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12;
    background: linear-gradient(90deg, #000000 40%, transparent);
}

.main-band-video > video,
.main-band-video > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-band-video > video {
    z-index: 10;
}

.main-band-video > img {
    z-index: 2;
}

@media screen and (max-width: 1200px) {
    .main-band {
        margin-bottom: 50px;
    }

    .main-content {
        margin-bottom: 50px;
    }

    .gallery-item {
        width: calc((100% - 20px) / 3);
    }
}

@media screen and (max-width: 950px) {
    .main-band {
        min-height: 500px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .page-title {
        font-size: 100px;
        line-height: 90px;
        margin-bottom: 50px;
    }

    .main-band .page-text {
        font-size: 16px;
        padding-left: 5px;
    }

    .gallery-item {
        width: calc((100% - 10px) / 2);
    }

    .gallery-video {
        width: calc((100% - 10px) / 2);
    }
}

@media screen and (max-width: 600px) {
    .main-band {
        min-height: 400px;
    }

    .page-title {
        font-size: 80px;
        line-height: 60px;
        margin-bottom: 20px;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-video {
        width: 100%;
    }
}