.component-staff-collage {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	gap: 15px;
}

.component-staff-collage.active .staff-collage-slot img:not(.selected) {
	filter: saturate(0);
}

.staff-collage-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.staff-collage-slot {
	position: relative;
	width: 220px;
	height: 304px;
	background-size: cover;
	border-radius: 15px;
	box-shadow: black 0 0 10px;
	cursor: pointer;
	overflow: hidden;
}

.staff-collage-slot:nth-child(6n+1) {
	background-image: url(https://starlight.seventy9.co.uk/static/images/staff/backgrounds/staff_background_1.webp?v=);
}

.staff-collage-slot:nth-child(6n+1) span {
	background-color: var(--color-banner-blue);
}

.staff-collage-slot:nth-child(6n+2) {
	background-image: url(https://starlight.seventy9.co.uk/static/images/staff/backgrounds/staff_background_2.webp?v=);
}

.staff-collage-slot:nth-child(6n+2) span {
	background-color: var(--color-banner-green);
}

.staff-collage-slot:nth-child(6n+3) {
	background-image: url(https://starlight.seventy9.co.uk/static/images/staff/backgrounds/staff_background_3.webp?v=);
}

.staff-collage-slot:nth-child(6n+3) span {
	background-color: var(--color-banner-red);
}

.staff-collage-slot:nth-child(6n+4) {
	background-image: url(https://starlight.seventy9.co.uk/static/images/staff/backgrounds/staff_background_4.webp?v=);
}

.staff-collage-slot:nth-child(6n+4) span {
	background-color: var(--color-banner-yellow);
}

.staff-collage-slot:nth-child(6n+5) {
	background-image: url(https://starlight.seventy9.co.uk/static/images/staff/backgrounds/staff_background_5.webp?v=);
}

.staff-collage-slot:nth-child(6n+5) span {
	background-color: var(--color-banner-pink);
}

.staff-collage-slot:nth-child(6n+6) {
	background-image: url(https://starlight.seventy9.co.uk/static/images/staff/backgrounds/staff_background_6.webp?v=);
}

.staff-collage-slot:nth-child(6n+6) span {
	background-color: var(--color-banner-orange);
}

.staff-collage-slot span {
	position: absolute;
	bottom: 0;
	height: 35px;
	background-color: red;
	font-size: 0.7em;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	width: 100%;
	text-shadow: black 0 0 10px;
}

.staff-collage-slot img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	max-height: unset !important;
	max-width: unset !important;
	pointer-events: none;
}

.staff-collage-slot .name {
	font-weight: bold;
}

.staff-collage-tooltip {
	pointer-events: none;
	position: absolute;
	display: none;
	flex-direction: column;
	padding: 15px;
	border-radius: 10px;
	z-index: 200;
}

.staff-collage-tooltip p[data-key="title"] {
	font-weight: bold;
	margin-bottom: 5px;
}

.staff-collage-tooltip p {
	text-shadow: black 0 0 5px;
}

.preload-container {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	z-index: -1;
}