.tvk-film-script-story,
.tvk-film-script-story * {
	box-sizing: border-box;
}

.tvk-film-script-story {
	--tvk-story-red: #b7262c;
	--tvk-story-text: #1c1918;
	--tvk-story-bg: #faf9f7;
	width: 100%;
	/*min-height: 720px;*/
	/*padding: 24px 0;*/
	/*background: var(--tvk-story-bg);*/
	color: var(--tvk-story-text);
	font-family: 'Open Sans', sans-serif;
}

.tvk-film-script-story__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 50px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.tvk-film-script-story__visual,
.tvk-film-script-story__content {
	min-width: 0;
}

.tvk-film-script-story__main-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 10px!important;
}

.tvk-film-script-story__quote {
	margin: 37px 0 0;
	padding: 0;
	border: 0;
	color: var(--tvk-story-text);
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.45;
}

.tvk-film-script-story__author {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 27px;
}

.tvk-film-script-story__author-image {
	flex: 0 0 76px;
	width: 76px;
	height: 76px;
	border-radius: 50%!important;
	object-fit: cover;
}

.tvk-film-script-story__author-copy {
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 0;
}

.tvk-film-script-story__author-copy cite {
	font-family: Prata, serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.25;
}

.tvk-film-script-story__author-copy span {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
}

.tvk-film-script-story__title {
	margin: -2px 0 0;
	color: var(--tvk-story-text);
	font-family: Prata, serif;
	font-size: clamp(38px, 3.15vw, 48px);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.tvk-film-script-story__text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.43;
}

.tvk-film-script-story__text--lead {
	margin-top: 36px;
}

.tvk-film-script-story__statement {
	margin: 38px 0 0;
	padding: 10px 40px 11px;
	border-radius: 12px;
	background: #fff;
	color: var(--tvk-story-red);
	font-family: Prata, serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.4;
}

.tvk-film-script-story__text--closing {
	margin-top: 37px;
}

.tvk-film-script-story__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	width: min(100%, 360px);
	min-height: 56px;
	margin-top: 43px;
	padding: 12px 31px;
	border: 1px solid var(--tvk-story-red);
	border-radius: 28px;
	color: var(--tvk-story-red);
	font-family: Prata, serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
	text-decoration: none!important;
	transition: background-color 180ms ease, color 180ms ease;
}

.tvk-film-script-story__button-arrow {
	position: relative;
	flex: 0 0 33px;
	width: 33px;
	height: 10px;
}

.tvk-film-script-story__button-arrow::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 32px;
	height: 1px;
	background: currentColor;
	content: '';
	transform: translateY(-50%);
}

.tvk-film-script-story__button-arrow::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 7px;
	height: 7px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	content: '';
	transform: translateY(-50%) rotate(45deg);
}

.tvk-film-script-story__button:hover,
.tvk-film-script-story__button:focus-visible {
	background: var(--tvk-story-red);
	color: #fff;
}

.tvk-film-script-story__button:focus-visible {
	outline: 2px solid var(--tvk-story-red);
	outline-offset: 3px;
}

@media (max-width: 980px) {
	.tvk-film-script-story {
		/*padding: 72px 32px;*/
	}

	.tvk-film-script-story__inner {
		grid-template-columns: 1fr;
		gap: 56px;
		/*max-width: 680px;*/
	}

	.tvk-film-script-story__title {
		font-size: 44px;
	}
}

@media (max-width: 767px) {
	.tvk-film-script-story {
		min-height: 0;
		/*padding: 54px 16px 60px;*/
	}

	.tvk-film-script-story__inner {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.tvk-film-script-story__visual,
	.tvk-film-script-story__content {
		display: contents;
	}

	.tvk-film-script-story__main-image {
		order: 2;
		margin-top: 32px;
		border-radius: 8px!important;
	}

	.tvk-film-script-story__quote {
		order: 3;
		margin-top: 25px;
		font-size: 15px;
	}

	.tvk-film-script-story__desktop-break {
		display: none;
	}

	.tvk-film-script-story__author {
		order: 4;
		gap: 14px;
		margin-top: 24px;
	}

	.tvk-film-script-story__author-image {
		flex-basis: 64px;
		width: 64px;
		height: 64px;
	}

	.tvk-film-script-story__author-copy cite {
		font-size: 18px;
	}

	.tvk-film-script-story__author-copy span {
		font-size: 14px;
	}

	.tvk-film-script-story__title {
		order: 1;
		font-size: clamp(34px, 10.3vw, 42px);
		line-height: 1.2;
	}

	.tvk-film-script-story__text {
		font-size: 15px;
	}

	.tvk-film-script-story__text--lead {
		order: 5;
		margin-top: 42px;
	}

	.tvk-film-script-story__statement {
		order: 6;
		margin-top: 28px;
		padding: 14px 18px;
		font-size: 18px;
	}

	.tvk-film-script-story__text--closing {
		order: 7;
		margin-top: 28px;
	}

	.tvk-film-script-story__button {
		order: 8;
		width: 100%;
		margin-top: 32px;
		padding-right: 24px;
		padding-left: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tvk-film-script-story__button {
		transition: none;
	}
}
