.band-container {
}

.band-row {
    background-color: rgba(222, 222, 222, 0.80);
    border-radius: 10px;
    padding: 5px;
    width: 100%;
    max-width: 60vw;
    min-width: 320px;
    margin: 0 auto 1rem auto;
    box-sizing: border-box;
    overflow: hidden; /* Clears the float */
}

.band-img {
    float: left;
    max-width: clamp(100px, 40vw, 500px); /* Flexible range */
	width: auto;
    height: auto;
	max-height: clamp(100px, 40vh, 500px);
	object-fit: contain;
    border-radius: 8px;
	margin-right: 1.5rem;
    box-sizing: border-box;
    display: block;
}

.band-text {
    color: black;
    box-sizing: border-box;
}

.band-heading {	/* banner above band-member's description */
	margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.band-description {
	margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
	margin-block-end: 0;
}
