.mosaic-basic {
	margin-bottom: var(--space-10);
}

@media (min-width: 64em) {
	.mosaic-basic {
		margin-bottom: var(--space-20);
	}
}

.mosaic-basic .cols {
	display: grid;
	gap: var(--space-1);
}

.mosaic-basic .slide > .inner {
	position: relative;
	width: 100%;
}

.mosaic-basic .content-section {
	position: absolute;
	bottom: var(--space-8);
	left: var(--space-8);
	z-index: 1;
}

.mosaic-basic .slide-title,
.mosaic-basic .slide-title > a {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 32px;
	line-height: 32px;
	color: white;
	text-decoration: none;
}

.mosaic-basic .img-cont {
	border-radius: 4px;
	overflow: hidden;
}

.mosaic-basic .img-cont img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

.mosaic-basic .slide .img-cont::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.72) 100%);
	pointer-events: none;
	border-radius: 4px;
}

.mosaic-basic .img-cont .credits {
	position: absolute;
	top: 0;
	right: -3.15rem;
	bottom: unset;
	background: rgb(45, 43, 43, 0.6);
	margin: 0;
	padding: var(--space-2) var(--space-3);
	font-family: var(--font-body);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	transform-origin: left top;
	transform: rotate(-90deg) translate(-100%);
	border-bottom-right-radius: 4px;
}

.mosaic-basic .landscape-large .credits {
	right: -1.75rem;
}

.mosaic-basic .landscape .credits {
	right: -3.75rem;
}

@media screen and (min-width: 640px) {
	.mosaic-basic .slide-title,
	.mosaic-basic .slide-title > a {
		font-size: 24px;
		line-height: 24px;
	}
}

@media screen and (min-width: 769px) {
	.mosaic-basic {
		padding-left: var(--space-10);
	}
	
	.mosaic-basic .cols {
		grid-template-columns: repeat(12, 1fr);
		gap: var(--space-2);
	}
	
	.mosaic-basic .cols .slide {
		display: flex;
		flex-direction: column;
		justify-content: end;
		align-items: start;
		overflow: hidden;
	}
	
	.mosaic-basic .cols .slide > .inner img {
		transition: all 0.3s ease-in-out;
	}
	
	.mosaic-basic .cols .slide > .inner:hover img {
		transform: scale(1.2);
		transition: all 0.3s ease-in-out;
	}
	
	.mosaic-basic .cols .slide:nth-child(4),
	.mosaic-basic .cols .slide:nth-child(5) {
		justify-content: start;
	}
	
	.mosaic-basic .cols .slide:first-child {
		grid-column: 1 / span 3;
		grid-row: 1 / span 2;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.mosaic-basic .cols .slide:nth-child(2) {
		grid-row: 1 / 1;
		grid-column: 4 / span 4;
	}
	
	.mosaic-basic .cols .slide:nth-child(3) {
		grid-column: 8 / span 4;
	}
	
	.mosaic-basic .cols .slide:nth-child(4) {
		grid-row-start: 2;
		grid-column: 4 / span 5;
	}
	
	.mosaic-basic .cols .slide:nth-child(5) {
		grid-row-start: 2;
		grid-column: 9 / span 5;
	}
}