/**
 * Video section styles.
 *
 * @package Hima_Construction
 */

.video-section {
	width: 100%;
	padding: 2.5rem 0 0;
	background-color: #f4f4f4;
	border-radius: 0;
}

.video-section__frame {
	position: relative;
	width: 100%;
	min-height: min(72vh, 42rem);
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background-color: #111111;
	background-image: linear-gradient(160deg, #2a2a2a 0%, #111111 55%, #0a0a0a 100%);
	border-radius: 0;
}

.video-section__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	background-color: #111111;
}

.video-section__control {
	position: absolute;
	left: 3rem;
	bottom: 2.75rem;
	display: inline-flex;
	align-items: center;
	gap: 1.15rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	border-radius: 0;
	z-index: 2;
}

.video-section__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 4.25rem;
	height: 4.25rem;
	background-color: #ffffff;
	box-shadow:
		0 0 0 10px rgba(255, 255, 255, 0.12),
		0 0 36px rgba(255, 255, 255, 0.28);
	border-radius: 0;
}

.video-section__play-icon {
	display: block;
	width: 0;
	height: 0;
	margin-left: 0.25rem;
	border-top: 0.55rem solid transparent;
	border-bottom: 0.55rem solid transparent;
	border-left: 0.95rem solid #0a0a0a;
	border-radius: 0;
}

.video-section__label {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.3rem;
	text-align: left;
}

.video-section__headline {
	font-family: "Inter Placeholder", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
}

.video-section__meta {
	font-family: "Inter Placeholder", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2;
	color: #c8c8c8;
	opacity: 0.75;
}

@media (max-width: 768px) {
	.video-section {
		padding-top: 1.5rem;
	}

	.video-section__frame {
		min-height: 20rem;
		aspect-ratio: 4 / 5;
	}

	.video-section__control {
		left: 1.5rem;
		bottom: 1.75rem;
		gap: 0.85rem;
	}

	.video-section__play {
		width: 3.25rem;
		height: 3.25rem;
		box-shadow:
			0 0 0 7px rgba(255, 255, 255, 0.12),
			0 0 24px rgba(255, 255, 255, 0.24);
	}

	.video-section__headline {
		font-size: 16px;
	}
}
