.band img {
    display: inline;
    float: left;
    width: 100%;
}

.band {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 1rem;
}

.band h1 {
    /* font-size: 2rem; */
    font-weight: 500;
    margin-bottom: 0rem;
}

.band p {
    display: block;
    max-width: 500px;
}

.band-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    line-height: 1em;
    margin-top: 0.5rem;
}

.band-header h1{
    line-height: 1em;
}

.band-informations {
    /* margin-top: 5px; */
    text-wrap: nowrap;
    /* border: 1px solid #0098C2; */
    background: #00a1bd28;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: lighter;

}

.genre-link {
    display: flex;
    /* justify-content: space-between; */
    gap: 1rem;
    margin-bottom: 1rem;
}

.band-genre {
    color: var(--color-text);
}

.band-link a {
    color: #0098C2;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration-line: underline;

}

.band .multiple-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.band .multiple-images figure {
    width: 100%;
}

.band .two-images {
    display: flex;
    gap: 20px;
}

.band .meta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.band .meta h1 {
    margin-bottom: 0.5rem;
}

.band .meta h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}



.band .multiple-images .thumbnails{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.band .images .thumbnails img{
    width: 100%;
    aspect-ratio: 1/1;
}

@media (max-width: 660px) {

    .band {
        gap: 0.5rem;
    }

    .band-header {
        flex-direction: column-reverse;
        gap: 0.5rem;
    }

    .band-informations {
        margin-bottom: 1rem;
    }

    .single-image, .two-images, .multiple-images {
        margin-top: 0.5rem;
    }

    .band .multiple-images{
        gap: 0.5rem;
    }

    .band .multiple-images .thumbnails{
        display: flex;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .video {
        margin-top: 0.5rem;
    }

    /* .genre-link {
        flex-direction: column;
        gap: 1rem;
    } */

    
}