.mv {
	padding: 0 10px;

	&.is-show {
		.mv__bg {
			opacity: 1;
			transform: scale(1);
		}

		.mv__ctas {
			opacity: 1;
			transform: translateY(0);
		}

		.mv__cta-wrap {
			&:nth-child(1) {
				opacity: 1;
				transform: translateY(0);
				transition-delay: 0.2s;
			}

			&:nth-child(2) {
				opacity: 1;
				transform: translateY(0);
				transition-delay: 0.35s;
			}
		}
	}

	.mv__card {
		position: relative;
		border-radius: var(--radius-xl);
		overflow: hidden;
		min-height: 600px;
		width: 100%;

		@media (max-width: 900px) {
			min-height: 520px;
		}

		@media (max-width: 768px) {
			min-height: 460px;
		}
	}

	.mv__bg {
		position: absolute;
		inset: 0;
		background:
			linear-gradient(90deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, 0) 100%),
			url("../../images/mv.jpg") center/cover no-repeat;
		opacity: 0;
		transform: scale(1.05);
		transition: opacity 0.9s ease, transform 0.9s ease;
	}

	.mv__content {
		position: absolute;
		z-index: 2;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		right: 0;
		max-width: 1600px;
		/*width: 92%;*/
		margin-inline: auto;
	}

}

.mv__headline {
	margin: 0;
	font-size: clamp(1.375rem, 1.05rem + 1.625vw, 3rem);
	line-height: 1.35;
	letter-spacing: 0.1rem;
	font-weight: 600;
	color: var(--clr-text-main);
	display: inline-flex;
	flex-direction: column;
	gap: 0;
	align-items: flex-start;

	>span {
		position: relative;
		display: inline-block;
		padding: 10px 0px;
		width: auto;
		border-radius: 0;
		font-size: inherit;
		line-height: inherit;
		letter-spacing: inherit;
		isolation: isolate;
		margin-top: -1px;

		&::before {
			content: "";
			position: absolute;
			z-index: -1;
			top: 0;
			bottom: 0;
			right: 0;
			left: min(0px, calc(-1 * (((100vw - var(--layout-inner-width)) / 2) + 20px + 60px)));
			border-radius: var(--radius-md);
			background: #fff;
			transform: scaleX(0);
			transform-origin: left center;
			opacity: 0;
			animation: mvPlateGrow .45s cubic-bezier(.2, .8, .2, 1) both;
			animation-delay: var(--plate-delay, 0s);
			will-change: transform, opacity;

			@media (max-width: 900px) {
				left: -20px;
			}
		}

		&:first-child {
			&::before {
				border-top-right-radius: 12px;
				border-top-left-radius: 0;
				border-bottom-right-radius: 0;
				border-bottom-left-radius: 0;
			}
		}

		&:last-child {
			padding-right: var(--space-inner);

			&::before {
				border-top-left-radius: 0;
				border-bottom-left-radius: 0;
			}
		}
	}
}

.mv__reveal-char {
	display: inline-block;
	font-style: normal;
	position: relative;
	z-index: 1;
	opacity: 0;
	transform: translateY(14px);
	animation: mvRevealGrow .55s cubic-bezier(.2, .8, .2, 1) both;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

@media (prefers-reduced-motion: reduce) {

	.mv__headline span::before,
	.mv__reveal-char {
		animation: none !important;
		transform: none !important;
		opacity: 1 !important;
		filter: none !important;
	}
}

.mv__lead {
	margin: 1.35em var(--space-inner) 0 0;
	color: #fff;
	line-height: 1.8;
	font-weight: 600;
	text-shadow: var(--text-shadow-md);
	font-size: clamp(0.875rem, 0.725rem + 0.75vw, 1.625rem);
	letter-spacing: 0.1rem;
}

.mv__ctas {
	margin: -2em auto 0;
	position: relative;
	z-index: 5;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1020px;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s ease, transform 0.9s ease;

	@media (max-width: 900px) {
		flex-direction: column;
		gap: 15px;
		align-items: stretch;
	}

	.mv__cta-wrap {
		position: relative;
		flex: 1;
		opacity: 0;
		transform: translateY(30px);
		transition: 0.7s ease;
	}
}

.mv__tag {
	position: absolute;
	top: -30px;
	left: 50%;
	z-index: 2;
	transform: translateX(-50%);
	background: #fff;
	color: var(--clr-accent-red);
	font-weight: 600;
	padding: 0.5em 1.5em;
	border-radius: var(--radius-pill);
	white-space: nowrap;
	box-shadow: var(--shadow-sm);
	animation: mvFloat 2.2s ease-in-out infinite;
	will-change: transform;
	font-size: clamp(0.75rem, 0.7125rem + 0.1875vw, 0.9375rem);

	@media (max-width: 900px) {
		transform: translateX(-50%);
	}

	&::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: -7px;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-top: 8px solid #fff;
		filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .12));
	}
}

@keyframes mvFloat {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(-6px);
	}
}

@keyframes mvPlateGrow {
	0% {
		transform: scaleX(0);
		opacity: 0;
	}

	100% {
		transform: scaleX(1);
		opacity: 1;
	}
}

@keyframes mvRevealGrow {
	0% {
		transform: translateY(14px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

/* ------------------------------------------- Recommended Articles */
.rec-articles {
	margin: 6em auto;

	@media (max-width: 768px) {
		margin: 3em auto;
	}

	.rec-articles__grid {
		display: grid;
		grid-template-columns: 1.1fr 1fr;
		gap: 20px;
		align-items: start;

		@media (max-width: 980px) {
			grid-template-columns: 1fr;
		}
	}

	.rec-articles__side {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;

		@media (max-width: 768px) {
			gap: 12px;
		}
	}
}

.rec-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .14);
	height: 100%;

	&:hover {
		box-shadow: 0 5px 10px rgba(0, 0, 0, .2);

		.rec-card__media img {
			transform: scale(1.06);
		}
	}

	.rec-card__media {
		position: relative;
		overflow: hidden;

		img {
			width: 100%;
			height: 100%;
			display: block;
			object-fit: cover;
			transform: scale(1.02);
			transition: transform var(--transition-slow);
		}
	}

	.rec-card__body {
		padding: 1em 1.2em;
	}

	.rec-card__headline {
		margin: 0;
		font-size: 1.25em;
		line-height: 1.5;
		color: var(--clr-text-main);

		@media (max-width: 768px) {
			display: -webkit-box;
			-webkit-line-clamp: 3;
			line-clamp: 3;
			-webkit-box-orient: vertical;
			overflow: hidden;
		}
	}

	.rec-card__desc {
		margin: 1.5em 0 0;
		line-height: 1.8;
	}

	&.rec-card--big {
		.rec-card__media {
			aspect-ratio: 16 / 10;
		}

		.rec-card__body {
			padding: 1.5em 1.8em;
		}
	}

	&.rec-card--sm {
		.rec-card__media {
			aspect-ratio: 16 / 10;
		}

		.rec-card__headline {
			font-size: 1em;
		}

		.rec-badge {
			min-width: 64px;
			font-size: 1em;
			top: 20px;
		}
	}

	.rec-badge {
		position: absolute;
		left: 0px;
		top: 30px;
		padding: 0.5em 1em;
		min-width: 78px;
		border-radius: 0 var(--radius-md) var(--radius-md) 0;
		color: #fff;
		font-weight: 600;
		line-height: 1;
		font-size: 1.2em;
		transform: translateX(-6px);
		font-family: "Oswald", sans-serif;
		text-align: center;

		&.rec-badge--gold {
			background: #dbb331;
		}

		&.rec-badge--gray {
			background: #999;
		}

		&.rec-badge--orange {
			background: #b3591d;
		}

		&.rec-badge--blue,
		&.rec-badge--navy {
			background: var(--clr-primary);
		}

		.rec-badge__num {
			font-size: 1.5em;
			letter-spacing: 0;
		}
	}
}

/* ------------------------------------------- Steps Section */
.steps {
	.steps__lead {
		margin: 12px 0 12px;
		color: #222222;
		font-weight: 600;
		letter-spacing: .04em;
	}

	.steps__outer {
		margin-top: 2.2em;
		padding: 4em 0;
		background: #fbfcfd;
		border-radius: 3em;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.03);

		@media (max-width:768px) {
			padding: 2em 0;
		}
	}
}




.step-row__head {
	display: flex;
	flex-direction: row;
	font-weight: 600;
	font-size: clamp(1.125rem, 1.0125rem + 0.5625vw, 1.6875rem);
	letter-spacing: 0.1rem;
	margin: 0 auto 1.6em;

	@media (max-width: 768px) {
		margin: 0 auto 1em;
	}

	.step-row__label {
		color: #1e5ab4;
		font-family: "Oswald", sans-serif;
		line-height: 1.3;
		padding: 0.1em 0.5em 0.5em;
		border-bottom: 2px solid currentColor;
		text-align: center;
		display: block;

		@media (max-width: 768px) {}
	}

	.step-row__title {
		line-height: 1.3;
		padding-left: 1em;
		padding-bottom: 0.5em;
		border-bottom: 2px solid #d9dee7;
		flex: auto;
		display: block;
		margin: 0;

		@media (max-width: 768px) {
			padding-left: 0.5em;
		}
	}
}

.step-row__rule {
	display: none;
}

.step-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1em;

	@media (max-width: 980px) {
		grid-template-columns: 1fr;
	}
}



.step-col {
	min-width: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	/*
	&.is-open {
		--acc-o: 1;
	}

	&:not(.is-open) {
		--acc-o: 1;
	}*/

	.step-col__tag {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0.3em 0.8em;
		border-radius: var(--radius-sm);
		font-size: 0.75em;
		color: #fff;
		margin-bottom: 1em;
		width: fit-content;

		.btn-outline-blue {
			margin: auto auto 0 auto;
		}

		&.step-col__tag--green {
			background: #1db359;
		}
	}

	.step-col__list {
		--shadow-pad: 8px;
		display: grid;
		gap: 0.5em;
		/* overflow: hidden; */
		/* max-height: var(--acc-h, 0px); */
		/* opacity: var(--acc-o, 1); */
		/* transition: max-height var(--transition-slow), opacity var(--transition-base); */
		/* will-change: max-height; */
		padding: var(--shadow-pad) var(--shadow-pad) 1em var(--shadow-pad);
		margin: calc(-1 * var(--shadow-pad)) calc(-1 * var(--shadow-pad)) calc(-1 * var(--shadow-pad) + 0.8em);
	}

	/*
	.step-col__more {
		width: 100%;
		margin: 1.5em auto;
		border-radius: var(--radius-sm);
		border: 0;
		background: #bdc3c7;
		color: #fff;
		font-size: 0.875em;
		display: inline-flex;
		align-items: center;
		justify-content: flex-end;
		padding: 0.5em;
		cursor: pointer;

		span {
			margin: auto;
		}
	}

	.step-col__chev {
		font-weight: 600;
		line-height: 1;
		margin: 0 !important;
	}
	*/

}

.mini-card {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 12px;
	background: #fff;
	border-radius: var(--radius-md);
	padding: 10px 12px;
	box-shadow: var(--shadow-md);
	text-decoration: none;
	color: inherit;
	transition: transform .2s ease;
	will-change: transform;

	&:hover,
	&:focus-visible {
		outline: none;
	}

	.mini-card__thumb {
		width: 54px;
		height: 54px;
		border-radius: var(--radius-sm);
		overflow: hidden;
		background: #e9eef6;

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}
	}

	.mini-card__title {
		margin: 2px 0 6px;
		font-weight: 600;
		line-height: 1.35;
		color: var(--clr-text-main);
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		overflow: hidden;
	}
}

.step-bottom {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;

	@media (max-width: 980px) {
		grid-template-columns: 1fr;
	}

	/*.step-bottom__col {
		&.is-open {
			--acc-o: 1;
		}

		&:not(.is-open) {
			--acc-o: 1;
		}
	}*/
}

/* ------------------------------------------- Step Promo */
.step-promo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: visible;
	margin: 5em auto 2.5em;

	@media (max-width: 768px) {
		grid-template-columns: 1fr;
		margin: 4em auto 0;
	}

	.step-promo__left {
		position: relative;
		background: url("../../images/step03_town.jpg") center / cover no-repeat;
		color: #fff;
		padding: 5em 2em calc(250px + 2em);

		@media (max-width:768px) {
			padding: 3em 1em calc(140px + 2em);
		}

		.step-promo__copy {
			display: flex;
			justify-content: center;
			text-align: center;
			flex-direction: column;
			gap: 2em;

			>* {
				margin: auto;
				line-height: 1.8;
				letter-spacing: 0.1rem;
				font-weight: 600;
			}

			.step-promo__lead {
				font-size: clamp(1.5rem, 1.3625rem + 0.6875vw, 2.1875rem);
				line-height: 1.3;
			}

			.step-promo__catch {
				font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
				color: var(--clr-secondary);
			}

			.step-promo__mini-link {
				display: inline-flex;
				align-items: center;
				gap: 0.6em;
				color: #fff;

				a {
					color: #fff;
					text-decoration: underline;

					&:hover {
						text-decoration: none;
					}
				}

				.step-promo__q {
					text-decoration: none;
					width: 1.8em;
					height: 1.8em;
					border-radius: 50%;
					border: 2px solid #fff;
					display: inline-flex;
					align-items: center;
					justify-content: center;
					font-size: 0.875em;
					text-align: center;
					letter-spacing: normal;
				}
			}
		}

		.step-promo__device {
			position: absolute;
			left: -2em;
			bottom: -2.5em;
			width: min(380px, 65%);
			pointer-events: none;

			@media (max-width: 768px) {
				left: 50%;
				transform: translateX(-50%);
				bottom: 0;
				width: min(230px, 55%);
			}

			img {
				width: 100%;
				height: auto;
				display: block;
			}
		}
	}

	.step-promo__right {
		background: #ececec;
		display: flex;
		flex-direction: column;
		justify-content: space-between;

		.step-promo__right-inner,
		.promo-more {
			display: flex;
			flex-direction: column;
			justify-content: center;
			gap: 1em;
			padding: 2em 1.5em;
			margin: auto 0;
		}

		.step-promo__right-inner {
			height: 100%;
		}

		.promo-scorebox {
			background: #fff;
			border-radius: var(--radius-md);
			padding: 1em 1.2em;
			box-shadow: var(--shadow-md);
			display: grid;
			gap: 1em;

			.promo-score {
				display: grid;
				grid-template-columns: 1fr auto;
				align-items: flex-end;
				gap: 1em;
				/*	padding-bottom: 1em;
				border-bottom: 1px solid var(--clr-grey-300);*/

				.promo-score__head {
					display: flex;
					flex-direction: column;
					gap: 0.2em;

					.promo-score__kicker,
					.promo-score__title {
						margin: 0;
						font-weight: 600;
					}

					.promo-score__kicker {
						font-size: 0.95em;
					}

					.promo-score__title {
						font-size: 1.5em;
						line-height: 1;
					}
				}

				.promo-score__num {
					display: flex;
					align-items: baseline;
					justify-content: flex-end;
					font-weight: 600;
					color: #1db359;
					line-height: 1;
					font-size: 2em;

					.promo-score__unit {
						font-size: 0.7em;
					}
				}
			}

			.promo-badges {
				display: flex;
				flex-wrap: wrap;
				flex-direction: row;
				gap: 0.5em;

				li {
					display: flex;
					align-items: center;
					justify-content: center;
					gap: 0.3em;
					border-radius: var(--radius-sm);
					background: #bdc3c7;
					padding: 0.5em;
					font-weight: 600;
					line-height: 1;

					img {
						width: 1em;
						height: 1em;
					}

					span {
						color: #fff;
						font-size: 0.875em;
					}
				}
			}
		}

		.promo-note {
			margin: 0;
			background: #fff;
			border-radius: var(--radius-pill);
			padding: 0.5em 1.5em;
			font-size: clamp(0.75rem, 0.7125rem + 0.1875vw, 0.9375rem);
			font-weight: 600;
			color: var(--clr-accent-red);
			text-align: center;
			position: relative;
			top: 20px;
			z-index: 10;
			display: inline-flex;
			width: fit-content;
			margin-inline: auto;
			max-width: 100%;
			line-height: 1.4;
			justify-content: center;
			box-shadow: var(--shadow-sm);
			transform: translateY(-6px);
			animation: floatBubble 2.6s ease-in-out infinite;

			&::after {
				content: "";
				position: absolute;
				left: 50%;
				bottom: -10px;
				transform: translateX(-50%);
				width: 0;
				height: 0;
				border-style: solid;
				border-width: 10px 10px 0 10px;
				border-color: #fff transparent transparent transparent;
				filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .12));
			}
		}

		.promo-cta {
			height: 62px;
			border-radius: var(--radius-pill);
			background: #e30000;
			color: #fff;
			text-decoration: none;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
			font-weight: 600;
			box-shadow: var(--shadow-md);
			position: relative;
			z-index: 1;

			.promo-cta__icon {
				width: 34px;
				height: 34px;
				border-radius: 50%;
				background: rgba(255, 255, 255, .22);
				display: inline-flex;
				align-items: center;
				justify-content: center;
			}

			.promo-cta__arrow {
				margin-left: 6px;
				font-size: 22px;
			}
		}

		.promo-foot {
			margin: -0.2em auto 0;
			font-weight: 600;
			text-align: center;
			font-size: 0.875em;
		}

		.promo-more {
			background: #fff6cf;

			.promo-more__title {
				margin: 0;
				font-weight: 600;
				font-size: 1.25em;
			}

			.promo-card {
				position: relative;
				display: grid;
				grid-template-columns: 60px 1fr;
				gap: 0.8em;
				align-items: center;
				background: #fff;
				border-radius: var(--radius-md);
				padding: 0.8em;
				text-decoration: none;
				color: inherit;
				box-shadow: var(--shadow-md);

				@media (max-width: 768px) {
					grid-template-columns: 40px 1fr;
				}

				.promo-card__thumb {
					width: 60px;
					height: 60px;
					border-radius: var(--radius-md);
					overflow: hidden;

					@media (max-width: 768px) {
						width: 40px;
						height: 40px;
					}

					img {
						width: 100%;
						height: 100%;
						object-fit: cover;
						display: block;
					}
				}

				.promo-card__body {
					display: grid;
					gap: 0.8em;

					p {
						font-weight: 600;
						margin: 0;
						line-height: 1;

						&.promo-card__meta {
							color: #06c755;
							font-size: 0.75em;
						}
					}
				}

				.promo-card__tag {
					position: absolute;
					right: -5px;
					top: 1em;
					background: #db1d1d;
					color: #fff;
					font-size: 0.875em;
					padding: 0.5em 0.7em;
					line-height: 1;

					&::before {
						content: "";
						position: absolute;
						width: 5px;
						height: 5px;
						right: 0;
						bottom: -5px;
						background: #950000;
						clip-path: polygon(0 0, 0% 100%, 100% 0);
					}
				}
			}

			.promo-line {
				display: inline-flex;
				align-items: flex-start;
				justify-content: flex-end;
				gap: 0.8em;
				line-height: 1.5;

				img {
					display: block;
					flex-shrink: 0;
					width: 15px;
					margin-bottom: 1px;
				}

				a {
					color: #1e5ab4;
					text-decoration: underline;

					&:hover {
						text-decoration: none;
					}
				}
			}
		}
	}
}

@keyframes floatBubble {

	0%,
	100% {
		transform: translateY(-6px);
	}

	50% {
		transform: translateY(-14px);
	}
}

@keyframes floatBubble {
	0% {
		transform: translateY(-6px);
	}

	50% {
		transform: translateY(-14px);
	}

	100% {
		transform: translateY(-6px);
	}
}

.lp-wide {
	margin: 6.3em auto;

	@media (max-width: 768px) {
		margin: 3em auto;
	}

	.lp-card {
		margin: 0 10px;

		@media (max-width: 768px) {}

		.lp-card__inner {
			position: relative;
			z-index: 1;
			display: grid;
			grid-template-columns: 1fr 1fr;
			align-items: center;
			border-radius: 3em;
			overflow: hidden;

			@media (max-width: 768px) {
				grid-template-columns: 1fr;
			}

			&::before,
			&::after {
				content: "";
				position: absolute;
				z-index: 0;
			}

			&::before {
				background-image: radial-gradient(circle, rgba(255 255 255 / 0.15) 0.5px, transparent 0.5px), radial-gradient(circle, rgba(255 255 255 / 0.15) 0.5px, transparent 0.5px);
				background-position: 0 0, 2px 2px;
				background-size: 4px 4px;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				border-radius: 3em;
			}

			&::after {
				content: "";
				position: absolute;
				inset: 10px;
				z-index: 10;
				pointer-events: none;
				width: auto;
				height: auto;
				border: 1px solid rgba(255 255 255 / 0.5);
				border-radius: calc(3em - 10px);
			}

			.lp-card__ttl,
			.lp-right-head,
			.lp-cta-wrap,
			.lp-list .lp-list__item span,
			.lp-stations li span,
			a {
				z-index: 1;
			}

			.lp-cta-wrap {
				@media (min-width: 769px) {
					position: absolute;
					left: 0;
					right: 0;
					margin: 0 auto;
					bottom: 3.5em;
				}

				.c-btn {
					&.c-btn--green {
						max-width: 600px;

						.c-btn__text {
							font-size: 1.3em;

							@media (max-width: 768px) {
								font-size: 1em;
								white-space: nowrap;
							}
						}
					}
				}
			}

			.lp-card__left,
			.lp-card__right {
				color: #fff;
				display: flex;
				flex-direction: column;
				gap: 1em;
				height: 100%;
				padding: 4em 3.5em calc(3.5em + 70px + 2.5em);

				@media (max-width: 768px) {
					padding: 3em;
				}

			}

			.lp-card__left {
				background: var(--clr-text-main);

				@media (max-width: 768px) {}
			}

			.lp-card__left {
				background: var(--clr-text-main);

				@media (max-width: 768px) {}
			}

			.lp-card__right {
				position: relative;
				z-index: 0;
				background-image: url("../../images/cta_bg_right.png");
				background-repeat: no-repeat;
				background-size: cover;
				background-position: center;
				z-index: 1;

				@media (max-width: 768px) {}
			}

			.lp-card__right>* {
				position: relative;
				z-index: 2;
			}

			.lp-card__right::after {
				content: "";
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				z-index: 1;
				background: linear-gradient(180deg,
						rgba(30, 180, 90, 0.8),
						rgba(30, 90, 180, 0.8));
			}
		}

		.lp-card__ttl {
			line-height: 2;
			font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);

			@media (min-width: 769px) {
				letter-spacing: 0.15rem;
			}

			em {
				line-height: 1;
				color: var(--clr-secondary);
				font-size: 1.5em;
			}
		}

		.lp-list {
			list-style: none;
			display: grid;
			gap: 0.625em;

			.lp-list__item {
				background: #194483;
				border-radius: var(--radius-lg);
				padding: 0.8em 2em 0.7em;
				font-weight: 600;
				display: flex;
				align-items: center;
				gap: 0.8em;
				font-size: 1.2em;

				@media (max-width: 768px) {
					padding: 0.8em 1em 0.7em;
					align-items: baseline;
					font-size: 1em;
				}

				.lp-check {
					width: 20px;
					height: 15px;
					flex-shrink: 0;

					@media (min-width: 769px) {
						width: 30px;
						height: 25px;
					}
				}
			}
		}

		.lp-right-head {
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 1em;
			padding: 1em;
			border-radius: var(--radius-lg);
			background: #194383;
			box-shadow: var(--shadow-lg);
			font-weight: 600;
			flex-direction: row;

			@media (max-width: 500px) {
				flex-direction: column;
				align-items: baseline;
				gap: 0.5em;
			}

			.lp-right-head__pill {
				padding: 0.5em 1em;
				border-radius: var(--radius-pill);
				background: var(--clr-secondary);
				color: #194383;

				em {
					font-size: 1.5em;
					line-height: 1;
				}
			}

			.lp-right-head__ttl {
				color: var(--clr-secondary);
				line-height: 1.5;
				letter-spacing: 0.1rem;
				text-align: center;
				font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
				width: fit-content;

				@media (max-width: 768px) {}
			}
		}

		.btn-outline-blue {
			margin: auto;
			max-width: 370px;
			padding: 0.5em;

			.btn-icon {
				background: var(--clr-primary);

				img,
				svg {
					width: 17px;
				}
			}
		}

		.lp-stations {
			padding: 1.2em 2.8em;
			column-count: 2;
			column-gap: 1em;
			background: rgba(25 67 131 / 0.6);
			border-radius: var(--radius-sm);
			list-style: outside;

			@media (max-width: 768px) {
				column-count: 1;
			}

			li {
				break-inside: avoid;
				-webkit-column-break-inside: avoid;
				font-weight: 600;
				font-size: 0.9em;

				&:not(:last-child) {
					margin-bottom: 0.5em;
				}
			}
		}


		/*
		.lp-btn--glass {
			height: 70px;
			border-radius: var(--radius-pill);
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 0 28px;
			gap: 16px;
			background: rgba(10, 40, 120, 0.55);
			border: 1px solid rgba(255, 255, 255, 0.35);
			backdrop-filter: blur(6px);
			color: #fff;
			font-weight: 600;
			box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
			transition: transform 0.2s ease, filter 0.2s ease;
			text-decoration: none !important;

			&:hover {
				transform: translateY(-3px);
				filter: brightness(1.08);
			}

			.lp-btn__icon-round {
				width: 46px;
				height: 46px;
				border-radius: 50%;
				background: #fff;
				color: #0d348c;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 18px;
				flex-shrink: 0;
			}

			.lp-btn__text {
				flex: 1;
				text-align: center;
				font-size: 16px;
			}

			.lp-btn__arrow {
				display: flex;
				align-items: center;
				justify-content: center;
			}
		}*/
	}
}

/* ------------------------------------------- New Articles */
.new-articles {
	margin: 0 auto 6.3em;

	@media (max-width: 768px) {
		margin: 0 auto 3em;
	}
}

.new-articles__grid {
	margin-top: 52px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;

	@media (max-width: 768px) {
		grid-template-columns: 1fr;
	}

}

.new-articles__more {
	margin-top: 44px;
	display: flex;
	justify-content: center;
}