.video-layout {
	text-align: center; font-size: var(--desktop-body-lg);
}
.video-layout .video-layout-header .video-layout-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	width: 3rem;
	height: 3rem;
	background-color: var(--primary-yellow);
	line-height: 1;
	border-radius: 100%;
	margin-bottom: max(1.5rem, calc(1.5 * var(--su)));
}
.video-layout .video-layout-header .video-layout-icon > .material-symbols-outlined {
	font-size: 1.5em;
}

.video-layout .video-layout-header .pk-heading {
	margin-bottom: max(1.5rem, calc(1.5 * var(--su)));
}

.video-layout .video-layout-frame {
	position: relative;
	margin-top: max(1.5rem, calc(3 * var(--su)));
}
.video-layout .video-layout-frame .video-play-button {
	position: absolute;
	left: max(1.5rem, calc(2.5 * var(--su)));
	bottom: max(1.5rem, calc(2.5 * var(--su)));
	z-index: 2;
	background-color: var(--primary-yellow);
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	cursor: pointer;
	border-radius: 100%;
	transition: scale 0.3s ease;
}
.video-layout .video-layout-frame .video-play-button:hover {
	scale: 1.05;
}
.video-layout .video-layout-frame .material-symbols-outlined {
	font-size: 2em;
	color: var(--text-color);
}