/* Structure */
#youtube {
	padding-bottom: 20rem;
	position: relative;
}

#youtube .body {
	position: relative;
}

#youtube .main-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 5rem 10rem;
}

/* Background */
#youtube .buffer {
	background-color: var(--c100);
	background-position: 50% 50%;
	background-size: cover;
	background-attachment: fixed;
	height: max(30rem, 66vh);
	filter: brightness(.8);
}

#youtube .background {
	--depth: -2;
	display: grid;
	top: 20rem;
	align-content: flex-end;
	justify-content: start;
	text-align: left;
	pointer-events: none;
}

#youtube .bgr-text {
	opacity: .02;
}

#youtube .background .bgr-text:nth-child(1) {
	font-size: max(30vw, 12rem);
	letter-spacing: .17em;
}

#youtube .background .bgr-text:nth-child(2) {
	font-size: max(20vw, 8rem);
	padding-left: 20vw;
}

/* Profile pic */
#youtube .profile-pic {
	--depth: 1;
	width: min(32rem, 90%);
	aspect-ratio: 1;
	margin-bottom: -15rem;
	position: relative;
	top: -15rem;
}

#youtube .profile-pic img {
	background-color: var(--c400);
	border-radius: 50%;
	box-shadow: 5px 10px 2rem rgba(0, 0, 0, .3);
}

/* Content */
#youtube .section-title {
	font-size: min(6rem, 15vw);
	letter-spacing: .26em;
}

#youtube .section-title .big {
	font-size: 1.2em;
	letter-spacing: .03em;
}

#youtube .text-quote {
	margin-top: 3rem;
	color: var(--title-color);
	font-size: 1.2rem;
}

#youtube .sbtn {
	padding-inline: 2rem;
}

/* Podcast */
.coming-soon {
	max-width: 600px;
	margin-inline: auto;
}

.coming-soon svg {
	transform: rotate(5deg);
	fill: var(--primary);
}

/* Videos */
/*#youtube .videos {
	display: grid;
	gap: 1rem;
}

#youtube .video {
	background-color: var(--c100);
}

#youtube .video iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	filter: saturate(0);
	transition: filter .3s;
}

#youtube .video:focus iframe,
#youtube .video:active iframe,
#youtube .video:hover iframe {
	filter: saturate(1);
}*/

/* Responsive */
@media (max-width: 1024px) {

	#youtube .buffer {
		background-attachment: initial;
	}

	#youtube .profile-pic {
		margin-bottom: 0;
		top: -5rem;
	}

	#youtube .main-grid {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 768px) {

	#youtube {
		text-align: center;
		padding-bottom: 10rem;
	}

	#youtube .buffer {
		background-position: 45% 50%;
	}

	#youtube .background {
		top: 0;
		align-content: center;
	}

}