/* CAST ROW */
.cast-row, .creative-row {
	display: flex;
	justify-content: space-evenly;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 13px;
}
.creative-row {
	align-items: center;
}
.cast-member, .creative-member {
	line-height: 1;
	font-size: 1rem;
	cursor: pointer;
	margin-bottom: var(--y-screen-24-36);
	display: flex;
	flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
	gap: 7px;
	max-width: 40vw;
}
.creative-member {
	flex: 1 1 100%;
}
.cast-thumb, .creative-thumb {
	max-width: 248px;
	/* margin: 0 auto 20px; */
}
.cast-thumb img {
	margin: 0;
	display: block;
}
/* .cast-thumb::after {
	background-image: url(https://littlebearridgeroad.com/images/_icons/star.png);
    background-size: 21px 20px;
    display: block;
    width: 21px;
    height: 20px;
    content: "";
    margin: -20px auto 0;
    position: relative;
    top: 27px;
} */
.cast-name {
	font-size: 18px;
  	font-weight: 700;
	display: block;
}
.cast-role {
	font-size: 17px;
}
.creative-name {
	font-size: 18px;
  	font-weight: 700;
	display: block;
	text-transform: uppercase;
}
.creative-role {
	font-size: 17px;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.cast-row, .creative-row {
		justify-content: center;
	}
	.creative-row {
		column-gap: 6vw;
	}
	.cast-member {
		width: min(26vh, 250px);
		max-width: 20vw;
	}
	.cast-thumb img {
		max-height: 20vh;
	}
	.cast-name {
		font-size: 20px;
	}
	.creative-member {
		width: 230px;
		flex: 0 0 auto;
	}
	.creative-name {
		font-size: 22px;
	}
	.creative-role {
		font-size: 18px;
	}
}
@media (max-width: 767px) {
	/* .cast-thumb, .creative-thumb {
		padding: 8px;
		margin: 0 auto 20px;
	} */
	/* .cast-thumb::after {
		background-size: 16px 16px;
		width: 16px;
		height: 16px;
		margin: -16px auto 0;
		top: 18px;
	} */
}

/* CAST POPUP */
.cast-popup-row {
	display: flex;
	justify-content: center;
	align-content: space-evenly;
	align-items: flex-start;
	text-align: center;
}
#castpopup-img-thumb {
	flex: 0 0 30%;
  max-width: 30%;
}
#castpopup-img-thumb img {
	width: 100%;
}
#cast-popup-name, #creative-popup-name {
	margin: 1rem 0 0;
	text-transform: uppercase;
	text-align: left;
	font-size: 34px;
	color: var(--pink);
}
#cast-popup-role, #creative-popup-role {
 font-size: 22px;
}
#cast-popup-about a, #creative-popup-about a {
	text-decoration: none;
}



/* TABS */
.tabcontent {display: none;}
.tablinks {cursor: pointer;}
.tablinks:hover {text-decoration: none;}
.tablinks.active {
	color: var(--pink);
	background-image: url(https://littlebearridgeroad.com/images/_icons/squiggle.svg);
	background-size: 100% 17px;
	background-position-y: bottom;
	background-repeat: no-repeat;
	display: inline-block;
	line-height: 1;
	padding-bottom: 20px;
}