body {
	background-color: #FFFBF3;
	color: #3F1521;
}

.opt_hero {
	--opt-sticky-offset: clamp(88px, 10vh, 130px);
	--opt-image-height: 430px;
	--opt-bg-offset: 32px;
	padding: 210px 0px 250px 0px;
	overflow-x: clip;
	overflow-y: visible;
}

.opt_hero._scroll-ready {
	min-height: calc(100vh + var(--opt-scroll-distance, 1800px));
	padding: 0;
}

.opt_hero._scroll-ready .opt_hero_container {
	min-height: calc(100vh - var(--opt-sticky-offset));
	padding-top: clamp(30px, 5vh, 64px);
	padding-bottom: clamp(30px, 5vh, 64px);
	position: sticky;
	top: var(--opt-sticky-offset);
	box-sizing: border-box;
	overflow: hidden;
}

.opt_hero._scroll-ready .opt_content {
	transform: none;
}

.opt_hero_container {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
	align-items: center;
	gap: clamp(28px, 4vw, 56px);
}

._container {}

.opt_content {
	max-width: 560px;
}

.opt_title {
	font-size: clamp(30px, 2.5vw, 36px);
	font-weight: 500;
	line-height: 100%;
	color: #3F1521;
	text-transform: uppercase;
	margin-bottom: 15px;
	overflow-wrap: anywhere;
}

.opt_title span {
	position: relative;
}

.opt_title span::before {
	content: "";
	position: absolute;
	top: -8px;
	left: -20px;
	width: 190px;
	height: 58px;
	background-image: url("../img/opt/circle.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.opt_title b {
	font-style: italic;
}

.opt_text {
	font-weight: 600;
	font-size: 18px;
	line-height: 100%;
	color: #3F1521;
	margin-bottom: clamp(24px, 4vh, 44px);
	max-width: 500px;
	overflow-wrap: anywhere;
}

.opt_images {
	position: relative;
	width: min(100%, calc((var(--opt-image-height) - var(--opt-bg-offset)) * 1.22 + var(--opt-bg-offset)));
	height: var(--opt-image-height);
	justify-self: center;
}

.opt_hero._scroll-ready .opt_images {
	width: min(100%, calc((var(--opt-image-height) - var(--opt-bg-offset)) * 1.22 + var(--opt-bg-offset)));
}

.opt_main_img {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - var(--opt-bg-offset));
	height: calc(100% - var(--opt-bg-offset));
	z-index: 2;
}

.opt_main_img img,
.opt_bg_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

main {}

.opt_bg_image {
	position: absolute;
	top: var(--opt-bg-offset);
	left: var(--opt-bg-offset);
	width: calc(100% - var(--opt-bg-offset));
	height: calc(100% - var(--opt-bg-offset));
}

.opt_image_slide {
	opacity: 0;
	transform: translate3d(0, 16px, 0) scale(0.985);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
}

.opt_image_slide._active {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.opt_image_slide_small {
	transform: translate3d(0, 16px, 0) scale(0.83);
	transform-origin: top left;
}

.opt_image_slide_small._active {
	transform: translate3d(0, 0, 0) scale(0.83);
}

.opt_items {
	display: flex;
	flex-direction: column;
	gap: clamp(18px, 3vh, 32px);
}

.opt_hero._scroll-ready .opt_items {
	will-change: transform;
	transition: transform 0.3s ease;
}

.opt_item {
	font-weight: 600;
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: 1.08;
	color: #3F1521;
	min-height: clamp(156px, 22vh, 230px);
	border: 2px dashed #FFCC07;
	border-radius: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(18px, 2vw, 24px);
	background: rgba(255, 251, 243, 0.68);
	overflow-wrap: anywhere;
	transition: border-color 0.25s ease, border-style 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.opt_item_active {
	border: 2px solid #DF206E;
	background: #FFFBF3;
	transform: translate3d(-8px, 0, 0);
}

.opt_item p {
	max-width: 500px;
}

.opt_info {
	position: relative;
	background: #3F1521;
	padding: 95px 0 120px;
	margin-top: 90px;
	overflow: visible;
	z-index: 0;
}

.wave-top {
	position: absolute;
	top: -155px;
	left: 0;
	width: 100%;
	height: 200px;
	display: block;
	pointer-events: none;
	z-index: 0;
}

.opt_info_container {
	position: relative;
	z-index: 1;
}

.opt_info_title {
	color: #FFFBF3;
	font-size: 36px;
	font-weight: 500;
	line-height: 100%;
	max-width: 450px;
	margin-bottom: 114px;
}

.opt_info_title b {
	font-style: italic;
}

.opt_info_items {
	display: flex;
	flex-direction: column;
}

.opt_info_item {
	background-color: #FFFBF3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	font-weight: 500;
	font-size: 36px;
	text-transform: uppercase;
	padding: 60px 0px;
	border-bottom: 2px solid #3F1521;
	text-align: center;
	overflow-wrap: anywhere;
}

.info_item_icon {
	flex: 0 0 auto;
}

.info_item_icon img {
	display: block;
	width: 42px;
	height: 42px;
}

.opt_info_item:nth-child(1) {
	color: #FFCC07;
}

.opt_info_item:nth-child(2) {
	color: #27CEDB;
}

.opt_info_item:nth-child(3) {
	color: #F5440A;
}

.out_info_body {
	background-color: #FFFFFF;
	max-width: 1300px;
	margin: 0px auto;
	padding: 150px 0px;
	border: 9px dashed #3F1521;
	border-top: none;
	position: relative;
	z-index: 2;
}

.out_info_body_container {
	max-width: 800px;
	margin: 0px auto;
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.out_info_body_container p {
	font-weight: 600;
	font-size: 28px;
	line-height: 100%;
	color: #3F1521;
	overflow-wrap: anywhere;
}

@media (max-width: 1280px) {
	.opt_hero {
		padding: 175px 0 190px;
		--opt-image-height: 380px;
		--opt-bg-offset: 24px;
	}

	.opt_hero_container {
		gap: 38px;
	}

	.opt_title {
		font-size: 32px;
	}

	.opt_title span::before {
		top: -7px;
		left: -16px;
		width: 155px;
		height: 47px;
	}

	.opt_text {
		margin-bottom: 44px;
	}

	.opt_item {
		min-height: 220px;
		border-radius: 38px;
	}

	.opt_items {
		gap: 24px;
	}

	.opt_info {
		padding: 82px 0 100px;
		margin-top: 75px;
	}

	.wave-top {
		top: -128px;
		height: 170px;
	}

	.opt_info_title {
		font-size: 32px;
		margin-bottom: 78px;
	}

	.opt_info_item {
		gap: 34px;
		font-size: 30px;
		padding: 48px 24px;
	}

	.out_info_body {
		max-width: calc(100% - 30px);
		padding: 100px 0;
		border-width: 7px;
	}

	.out_info_body_container {
		max-width: 760px;
		gap: 64px;
		padding: 0 28px;
	}

	.out_info_body_container p {
		font-size: 24px;
		line-height: 1.06;
	}
}

@media (min-width: 901px) and (max-height: 760px) {
	.opt_hero {
		--opt-image-height: 320px;
		--opt-bg-offset: 22px;
	}

	.opt_hero._scroll-ready .opt_hero_container {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.opt_title {
		font-size: 28px;
		margin-bottom: 10px;
	}

	.opt_text {
		font-size: 16px;
		line-height: 1.08;
		margin-bottom: 22px;
	}

	.opt_items {
		gap: 16px;
	}

	.opt_item {
		min-height: 148px;
		border-radius: 30px;
		padding: 16px 18px;
		font-size: 15px;
	}
}

@media (max-width: 900px) {
	.opt_hero {
		--opt-image-height: 300px;
		--opt-bg-offset: 24px;
	}

	.opt_hero._scroll-ready {
		min-height: auto;
		padding: 126px 0 138px;
	}

	.opt_hero._scroll-ready .opt_hero_container {
		min-height: auto;
		padding-top: 0;
		padding-bottom: 0;
		position: static;
	}

	.opt_hero {
		padding: 126px 0 138px;
	}

	.opt_hero_container {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.opt_content {
		max-width: none;
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
		gap: 24px;
		align-items: center;
	}

	.opt_title {
		font-size: 29px;
		line-height: 1.04;
	}

	.opt_text {
		font-size: 16px;
		line-height: 1.12;
		margin-bottom: 0;
	}

	.opt_images {
		grid-column: 2;
		grid-row: 1 / span 2;
		width: min(100%, calc((var(--opt-image-height) - var(--opt-bg-offset)) * 1.22 + var(--opt-bg-offset)));
	}

	.opt_bg_image {
		top: 24px;
		left: 24px;
	}

	.opt_items {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.opt_item {
		min-height: 190px;
		border-radius: 30px;
		padding: 18px;
		font-size: 16px;
		line-height: 1.1;
	}

	.opt_item_active {
		transform: none;
	}

	.opt_info {
		padding: 66px 0 76px;
		margin-top: 58px;
	}

	.wave-top {
		top: -92px;
		height: 120px;
	}

	.opt_info_title {
		max-width: 650px;
		font-size: 28px;
		line-height: 1.04;
		margin-bottom: 52px;
	}

	.opt_info_item {
		justify-content: space-between;
		gap: 20px;
		font-size: 24px;
		padding: 36px 28px;
		text-align: left;
	}

	.out_info_body {
		padding: 70px 0;
		border-width: 5px;
	}

	.out_info_body_container {
		gap: 42px;
	}

	.out_info_body_container p {
		font-size: 21px;
		line-height: 1.1;
	}
}

@media (max-width: 720px) {
	body {
		overflow-x: hidden;
	}

	.opt_hero {
		padding: 112px 0 92px;
		--opt-image-height: 320px;
		--opt-bg-offset: 18px;
	}

	.opt_content {
		display: block;
	}

	.opt_title {
		font-size: 25px;
		margin-bottom: 14px;
	}

	.opt_title br {
		display: none;
	}

	.opt_title span::before {
		top: -5px;
		left: -11px;
		width: 118px;
		height: 36px;
	}

	.opt_text {
		margin-bottom: 30px;
		font-size: 15px;
	}

	.opt_images {
		width: min(100%, calc((var(--opt-image-height) - var(--opt-bg-offset)) * 1.22 + var(--opt-bg-offset)));
		margin: 0 auto;
	}

	.opt_bg_image {
		top: 18px;
		left: 18px;
	}

	.opt_items {
		display: flex;
		flex-direction: row;
		gap: 14px;
		margin: 8px -15px 0;
		padding: 0 15px 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.opt_items::-webkit-scrollbar {
		display: none;
	}

	.opt_item {
		flex: 0 0 82%;
		min-height: 178px;
		border-radius: 26px;
		scroll-snap-align: center;
	}

	.opt_info {
		padding: 54px 0 62px;
		margin-top: 42px;
	}

	.wave-top {
		top: -62px;
		height: 84px;
	}

	.opt_info_title {
		font-size: 24px;
		margin-bottom: 34px;
	}

	.opt_info_item {
		font-size: 20px;
		padding: 26px 18px;
	}

	.info_item_icon img {
		width: 32px;
		height: 32px;
	}

	.out_info_body {
		max-width: 100%;
		padding: 44px 0;
		border-right: 0;
		border-left: 0;
	}

	.out_info_body_container {
		gap: 28px;
		padding: 0 18px;
	}

	.out_info_body_container p {
		font-size: 18px;
		line-height: 1.15;
	}
}

@media (max-width: 480px) {
	.opt_hero {
		padding-top: 102px;
		padding-bottom: 72px;
		--opt-image-height: 250px;
	}

	.opt_title {
		font-size: 22px;
	}

	.opt_text {
		font-size: 14px;
	}

	.opt_images {
		width: min(100%, calc((var(--opt-image-height) - var(--opt-bg-offset)) * 1.22 + var(--opt-bg-offset)));
	}

	.opt_item {
		flex-basis: 88%;
		min-height: 160px;
		border-radius: 22px;
		font-size: 15px;
	}

	.opt_info_title {
		font-size: 21px;
	}

	.opt_info_item {
		font-size: 17px;
		line-height: 1.05;
		padding: 22px 14px;
	}

	.out_info_body_container p {
		font-size: 16px;
	}
}

/* Article page */
.article {
	padding: clamp(170px, 16vh, 220px) 0 clamp(80px, 10vh, 120px);
	background-color: #FFFBF3;
}

.article-hero {
	max-width: 900px;
}

.article-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 15px;
	color: #3F1521;
	text-transform: uppercase;
	margin-bottom: 28px;
	transition: color 0.2s ease;
}

.article-back:hover {
	color: #DF206E;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	color: #DF206E;
}

.article-meta time {
	color: #3F1521;
	opacity: 0.7;
}

.article-author {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	color: #3F1521;
	margin-bottom: 20px;
}

.article-hero h1 {
	font-weight: 500;
	font-size: clamp(28px, 3.2vw, 42px);
	line-height: 1.1;
	color: #3F1521;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.article-hero h1 b {
	font-style: italic;
}

.article-hero h1 span {
	position: relative;
}

.article-hero h1 span::before {
	content: "";
	position: absolute;
	top: -8px;
	left: -16px;
	width: 130px;
	height: 44px;
	background-image: url("../img/main/marked.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.article-lead {
	font-weight: 600;
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.3;
	color: #3F1521;
	max-width: 760px;
}

.article-cover {
	margin: clamp(36px, 5vh, 56px) auto;
	max-width: 900px;
}

.article-cover img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: cover;
	border: 6px solid #F90777;
	border-radius: 46px;
}

.article-content {
	max-width: 760px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.article-content h2 {
	font-weight: 500;
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.15;
	color: #3F1521;
	text-transform: uppercase;
	margin-top: 16px;
}

.article-content p,
.article-content li {
	font-weight: 600;
	font-size: clamp(16px, 1.1vw, 18px);
	line-height: 1.35;
	color: #3F1521;
}

.article-content ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 20px;
}

.article-content li {
	list-style: disc;
}

.related-posts {
	margin-top: clamp(56px, 8vh, 90px);
	max-width: 900px;
}

.related-posts h2 {
	font-weight: 500;
	font-size: clamp(24px, 2.2vw, 32px);
	text-transform: uppercase;
	color: #3F1521;
	margin-bottom: 24px;
}

.related-posts_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.related-posts_grid a {
	display: block;
	padding: 20px 24px;
	border: 2px dashed #FFCC07;
	border-radius: 28px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2;
	color: #3F1521;
	background: rgba(255, 251, 243, 0.8);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.related-posts_grid a:hover {
	border-color: #DF206E;
	border-style: solid;
	transform: translateY(-2px);
}

.blog-list {
	padding: clamp(170px, 16vh, 220px) 0 clamp(80px, 10vh, 120px);
	background-color: #FFFBF3;
}

.blog-list_hero h1 {
	font-weight: 500;
	font-size: clamp(32px, 3vw, 48px);
	text-transform: uppercase;
	color: #3F1521;
	margin-bottom: 12px;
}

.blog-list_hero p {
	font-weight: 600;
	font-size: 18px;
	color: #3F1521;
	margin-bottom: 40px;
}

.blog-list_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.blog-list_card {
	display: flex;
	flex-direction: column;
	border: 2px solid #3F1521;
	border-radius: 28px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background: #FFFBF3;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-list_card:hover {
	border-color: #DF206E;
	transform: translateY(-2px);
}

.blog-list_card_image img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog-list_card_body {
	padding: 20px 24px 24px;
}

.blog-list_card_meta {
	display: flex;
	gap: 12px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: #DF206E;
	margin-bottom: 10px;
}

.blog-list_card_meta time {
	color: #3F1521;
	opacity: 0.7;
}

.blog-list_card h2 {
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.15;
	margin-bottom: 10px;
}

.blog-list_card p {
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
}

.blog-list_empty {
	font-weight: 600;
	font-size: 18px;
	color: #3F1521;
}

.reveal_on_scroll {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal_on_scroll._in-view {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 720px) {
	.article {
		padding-top: 110px;
	}

	.article-cover img {
		border-radius: 30px;
		border-width: 4px;
	}

	.article-hero h1 span::before {
		top: -5px;
		left: -10px;
		width: 100px;
		height: 34px;
	}
}
