.workshops-list {
    display: flex;
    flex-direction: column;
}

.band-title {
    font-family: "Cormorant Garamond", serif;
    color: var(--text-color);
    font-size: 60px;
    line-height: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid var(--dark-bg-color);
}

.band-title > span {
    color: var(--gold-color);
    font-style: italic;
}

.workshop-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    gap: 40px;
    padding: 30px 0 40px 0;
}

.date-area {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.date-area > .big {
    font-size: 55px;
    font-family: "Cormorant Garamond", serif;
    font-weight: bold;
}

.date-area > .big > span {
    font-size: 22px;
    font-style: italic;
    opacity: 0.8;
}

.date-area > .small {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.6;
}

.meta-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 5px;
}

.meta-area > .title {
    font-size: 40px;
    font-family: "Cormorant Garamond", serif;
    font-weight: bold;
}

.meta-area > .subtitle {
    font-size: 16px;
    opacity: 0.6;
    padding-left: 4px;
}

.info-btn {
    color: white;
    background-color: var(--dark-bg-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 14px 20px;
    transition: .3s ease opacity;
    margin-left: auto;
    width: 180px;
    text-align: center;
}

.info-btn:hover {
    opacity: 0.8;
}

.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;
}

@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;
    }

    .gallery-item {
        width: calc((100% - 10px) / 2);
    }

    .gallery-video {
        width: calc((100% - 10px) / 2);
    }

    .workshop-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .info-btn {
        margin: 20px 0 0 0;
    }
}

@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%;
    }
}