.front-videos {
	position: relative;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	padding: clamp(76px, 9vw, 132px) max(24px, calc((100vw - 1180px) / 2));
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 34%),
		linear-gradient(115deg, rgba(255, 255, 255, 0.04), transparent 32%),
		linear-gradient(180deg, rgba(42, 36, 32, 0.94), rgba(35, 29, 27, 0.98)),
		#2b2522;
	color: #fff;
}

.front-videos::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
	background-size: 92px 92px;
	content: "";
	opacity: 0.35;
	pointer-events: none;
}

.front-videos__inner {
	position: relative;
	z-index: 1;
}

.front-videos__heading {
	margin-bottom: clamp(38px, 5vw, 58px);
	text-align: center;
}

.front-videos__script {
	margin: 0;
	color: rgba(207, 156, 72, 0.72);
	font-family: "Times New Roman", serif;
	font-size: clamp(72px, 9vw, 124px);
	font-style: italic;
	line-height: 0.9;
}

.front-videos__title {
	position: relative;
	margin: -10px 0 0;
	background: transparent;
	color: #fff;
	font-size: clamp(26px, 2.7vw, 38px);
	font-weight: 500;
	line-height: 1.15;
}

.front-videos__title::after {
	display: block;
	width: 72px;
	height: 1px;
	margin: 18px auto 0;
	background: linear-gradient(90deg, transparent, rgba(207, 156, 72, 0.85), transparent);
	content: "";
}

.front-videos__lead {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 17px;
	line-height: 1.9;
}

.front-videos__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 36px);
}

.front-videos__card {
	overflow: hidden;
	border-radius: 8px;
	background: #201a18;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.08),
		0 0 34px rgba(255, 255, 255, 0.14),
		0 18px 42px rgba(0, 0, 0, 0.34);
}

.front-videos__embed {
	aspect-ratio: 16 / 9;
	background: #140f0e;
}

.front-videos__embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.front-videos__meta {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 18px;
	align-items: center;
	padding: 22px 28px 24px;
	background: linear-gradient(180deg, rgba(37, 30, 28, 0.92), rgba(27, 22, 20, 0.98));
}

.front-videos__note {
	color: #cfa15a;
	font-size: 40px;
	line-height: 1;
}

.front-videos__video-title {
	margin: 0;
	background: transparent;
	color: #fff;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6;
}

.front-videos__duration {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	line-height: 1.4;
}

.front-videos__duration::before {
	content: "○";
	margin-right: 8px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.72em;
	vertical-align: 0.08em;
}

.front-videos__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	width: min(440px, 100%);
	margin: clamp(36px, 5vw, 56px) auto 0;
	padding: 15px 30px;
	border: 1px solid rgba(233, 190, 128, 0.82);
	border-radius: 999px;
	background: linear-gradient(90deg, #c04d70, #a8384e);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26), inset 0 0 0 3px rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: 17px;
	line-height: 1.5;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.front-videos__button:hover,
.front-videos__button:focus-visible {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), inset 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.front-videos__button-icon {
	display: inline-grid;
	place-items: center;
	color: #fff;
	font-size: 24px;
	line-height: 1;
}

.front-videos__button-icon::before {
	content: "\f167";
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.front-videos__footer-text {
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 1.8;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.front-videos {
		padding-top: 84px;
		padding-bottom: 88px;
	}

	.front-videos__grid {
		grid-template-columns: 1fr;
	}

	.front-videos__meta {
		grid-template-columns: 34px 1fr;
		gap: 14px;
		padding: 18px 18px 20px;
	}

	.front-videos__note {
		font-size: 32px;
	}

	.front-videos__button {
		gap: 14px;
	}
}
