/*
 * Article page — long-form text block under overview card.
 */

.article-content {
	width: min(986px, 100%);
	margin: 0;
}

.article-content__intro {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.article-content__intro-heading {
	margin: 0;
	scroll-margin-top: 24px;
	background-image: linear-gradient(90deg, #e6e7eb 0%, #bdd3fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
}

.article-content__sections {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.article-content__section {
	margin: 0;
	scroll-margin-top: 24px;
}

.article-content__subsection {
	margin-top: 28px;
	scroll-margin-top: 24px;
}

.article-content__section > .article-content__subsection:first-of-type {
	margin-top: 24px;
}

.article-content__subheading {
	margin: 0 0 12px;
	color: rgba(189, 211, 250, 0.92);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
}

.article-content__block-stack {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.article-content__section > .article-content__heading + .article-content__block-stack {
	margin-top: 24px;
}

.article-content__mini-heading {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	color: rgba(230, 231, 235, 0.96);
}

.article-content__bullet-list {
	margin: 0;
	padding: 0 0 0 1.15em;
	list-style-type: disc;
	list-style-position: outside;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.article-content__bullet-item {
	margin: 0;
	padding-left: 0.3em;
	color: rgba(189, 211, 250, 0.75);
	font-size: 16px;
	line-height: 1.35;
}

.article-content__bullet-item::marker {
	color: rgba(189, 211, 250, 0.75);
}

/* Terms & Conditions — monospace body, h4 matches section heading, tight stacks, compact lists. */
.page-template-page-terms-and-conditions .article-content--terms,
.page-template-page-terms-conditions .article-content--terms,
.page-slug-terms-and-conditions .article-content--terms,
.page-slug-terms-conditions .article-content--terms {
	font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.page-template-page-terms-and-conditions .article-content--terms .article-content__sections,
.page-template-page-terms-conditions .article-content--terms .article-content__sections,
.page-slug-terms-and-conditions .article-content--terms .article-content__sections,
.page-slug-terms-conditions .article-content--terms .article-content__sections {
	gap: 20px;
}

/* One legal section with multiple h4 blocks: fixed 20px rhythm (no stacked subsection margins). */
.article-content--terms .article-content__section:has(> .article-content__subsection) {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.article-content--terms .article-content__section:has(> .article-content__subsection) > .article-content__subsection {
	margin-top: 0;
}

/* Legal subsection titles (Ownership, Permitted Use, …) — same gradient treatment as h3 section headings. */
.page-template-page-terms-and-conditions .article-content--terms .article-content__subsection > .article-content__subheading,
.page-template-page-terms-conditions .article-content--terms .article-content__subsection > .article-content__subheading,
.page-slug-terms-and-conditions .article-content--terms .article-content__subsection > .article-content__subheading,
.page-slug-terms-conditions .article-content--terms .article-content__subsection > .article-content__subheading {
	display: inline-block;
	max-width: 100%;
	margin: 0 0 12px;
	background-color: transparent;
	background-image: linear-gradient(90deg, #e6e7eb 0%, #bdd3fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
}

.page-template-page-terms-and-conditions .article-content--terms .article-content__section > .article-content__heading + .article-content__block-stack,
.page-template-page-terms-conditions .article-content--terms .article-content__section > .article-content__heading + .article-content__block-stack,
.page-slug-terms-and-conditions .article-content--terms .article-content__section > .article-content__heading + .article-content__block-stack,
.page-slug-terms-conditions .article-content--terms .article-content__section > .article-content__heading + .article-content__block-stack {
	margin-top: 20px;
	gap: 8px;
}

.page-template-page-terms-and-conditions .article-content--terms .article-content__subsection .article-content__block-stack,
.page-template-page-terms-conditions .article-content--terms .article-content__subsection .article-content__block-stack,
.page-slug-terms-and-conditions .article-content--terms .article-content__subsection .article-content__block-stack,
.page-slug-terms-conditions .article-content--terms .article-content__subsection .article-content__block-stack {
	margin-top: 6px;
	gap: 5px;
}

.page-template-page-terms-and-conditions .article-content--terms .article-content__mini-heading,
.page-template-page-terms-conditions .article-content--terms .article-content__mini-heading,
.page-slug-terms-and-conditions .article-content--terms .article-content__mini-heading,
.page-slug-terms-conditions .article-content--terms .article-content__mini-heading {
	margin: 2px 0 0;
	font-size: 15px;
}

.page-template-page-terms-and-conditions .article-content--terms .article-content__bullet-list,
.page-template-page-terms-conditions .article-content--terms .article-content__bullet-list,
.page-slug-terms-and-conditions .article-content--terms .article-content__bullet-list,
.page-slug-terms-conditions .article-content--terms .article-content__bullet-list {
	display: block;
	gap: 0;
	padding-left: 1.05em;
	list-style-type: disc;
	list-style-position: outside;
}

.page-template-page-terms-and-conditions .article-content--terms .article-content__bullet-item,
.page-template-page-terms-conditions .article-content--terms .article-content__bullet-item,
.page-slug-terms-and-conditions .article-content--terms .article-content__bullet-item,
.page-slug-terms-conditions .article-content--terms .article-content__bullet-item {
	display: list-item;
	margin: 0 0 4px;
	padding-left: 0.2em;
	font-size: 14px;
	line-height: 1.34;
}

.page-template-page-terms-and-conditions .article-content--terms .article-content__text,
.page-template-page-terms-conditions .article-content--terms .article-content__text,
.page-slug-terms-and-conditions .article-content--terms .article-content__text,
.page-slug-terms-conditions .article-content--terms .article-content__text {
	font-size: 14px;
	line-height: 1.45;
}

.page-template-page-terms-and-conditions .article-content--terms > .article-content__sections > .article-content__section > .article-content__heading,
.page-template-page-terms-conditions .article-content--terms > .article-content__sections > .article-content__section > .article-content__heading,
.page-slug-terms-and-conditions .article-content--terms > .article-content__sections > .article-content__section > .article-content__heading,
.page-slug-terms-conditions .article-content--terms > .article-content__sections > .article-content__section > .article-content__heading {
	font-size: 18px;
}

.page-template-page-terms-and-conditions .article-content--terms .article-content__intro-heading,
.page-template-page-terms-conditions .article-content--terms .article-content__intro-heading,
.page-slug-terms-and-conditions .article-content--terms .article-content__intro-heading,
.page-slug-terms-conditions .article-content--terms .article-content__intro-heading {
	font-size: 18px;
}

.article-content__heading {
	margin: 0;
	background-image: linear-gradient(90deg, #e6e7eb 0%, #bdd3fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
}

.article-content__heading--plain {
	background: none;
	color: #bdd3fa;
	-webkit-text-fill-color: #bdd3fa;
}

/* Privacy, Cookie & Refund — subsection titles (smaller than Terms). */
.page-template-page-privacy-policy .article-content__subsection > .article-content__subheading,
.page-slug-privacy-policy .article-content__subsection > .article-content__subheading,
.page-slug-privacy-policy-2 .article-content__subsection > .article-content__subheading,
.page-template-page-cookie-policy .article-content__subsection > .article-content__subheading,
.page-slug-cookie-policy .article-content__subsection > .article-content__subheading,
.page-template-page-refund-policy .article-content__subsection > .article-content__subheading,
.page-slug-refund-policy .article-content__subsection > .article-content__subheading {
	display: inline-block;
	max-width: 100%;
	margin: 0 0 12px;
	background-color: transparent;
	background-image: linear-gradient(90deg, #e6e7eb 0%, #bdd3fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
}

/* Privacy, Cookie & Refund — tighter disc lists (smaller markers / indent). */
.page-template-page-privacy-policy .article-content__bullet-list,
.page-slug-privacy-policy .article-content__bullet-list,
.page-slug-privacy-policy-2 .article-content__bullet-list,
.page-template-page-cookie-policy .article-content__bullet-list,
.page-slug-cookie-policy .article-content__bullet-list,
.page-template-page-refund-policy .article-content__bullet-list,
.page-slug-refund-policy .article-content__bullet-list {
	display: block;
	margin: 2px 0 0;
	padding: 0 0 0 1.05em;
	gap: 0;
	list-style-type: disc;
	list-style-position: outside;
}

.page-template-page-privacy-policy .article-content__bullet-item,
.page-slug-privacy-policy .article-content__bullet-item,
.page-slug-privacy-policy-2 .article-content__bullet-item,
.page-template-page-cookie-policy .article-content__bullet-item,
.page-slug-cookie-policy .article-content__bullet-item,
.page-template-page-refund-policy .article-content__bullet-item,
.page-slug-refund-policy .article-content__bullet-item {
	display: list-item;
	margin: 0 0 4px;
	padding-left: 0.2em;
	font-size: 14px;
	line-height: 1.34;
}

.page-template-page-privacy-policy .article-content__bullet-item::marker,
.page-slug-privacy-policy .article-content__bullet-item::marker,
.page-slug-privacy-policy-2 .article-content__bullet-item::marker,
.page-template-page-cookie-policy .article-content__bullet-item::marker,
.page-slug-cookie-policy .article-content__bullet-item::marker,
.page-template-page-refund-policy .article-content__bullet-item::marker,
.page-slug-refund-policy .article-content__bullet-item::marker {
	color: rgba(189, 211, 250, 0.75);
	font-size: 1em;
}

/* Terms — same list tightening as other legal pages (body typography set above). */
.page-template-page-terms-and-conditions .article-content__bullet-list,
.page-template-page-terms-conditions .article-content__bullet-list,
.page-slug-terms-and-conditions .article-content__bullet-list,
.page-slug-terms-conditions .article-content__bullet-list {
	display: block;
	margin: 2px 0 0;
	padding: 0 0 0 1.05em;
	gap: 0;
	list-style-type: disc;
	list-style-position: outside;
}

.page-template-page-terms-and-conditions .article-content__bullet-item::marker,
.page-template-page-terms-conditions .article-content__bullet-item::marker,
.page-slug-terms-and-conditions .article-content__bullet-item::marker,
.page-slug-terms-conditions .article-content__bullet-item::marker {
	color: rgba(189, 211, 250, 0.75);
	font-size: 1em;
}

.article-content__paragraphs {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.article-content__text {
	margin: 0;
	color: rgba(189, 211, 250, 0.75);
	font-size: 16px;
	line-height: 1.32;
}

/* Legal policy pages — body 14px, headings 18px. */
.page-template-page-privacy-policy .article-content__text,
.page-slug-privacy-policy .article-content__text,
.page-slug-privacy-policy-2 .article-content__text,
.page-template-page-cookie-policy .article-content__text,
.page-slug-cookie-policy .article-content__text,
.page-template-page-refund-policy .article-content__text,
.page-slug-refund-policy .article-content__text,
.page-template-page-terms-and-conditions .article-content__text,
.page-template-page-terms-conditions .article-content__text,
.page-slug-terms-and-conditions .article-content__text,
.page-slug-terms-conditions .article-content__text {
	font-size: 14px;
	line-height: 1.45;
}

.page-template-page-privacy-policy .article-content__heading,
.page-slug-privacy-policy .article-content__heading,
.page-slug-privacy-policy-2 .article-content__heading,
.page-template-page-cookie-policy .article-content__heading,
.page-slug-cookie-policy .article-content__heading,
.page-template-page-refund-policy .article-content__heading,
.page-slug-refund-policy .article-content__heading,
.page-template-page-privacy-policy .article-content__intro-heading,
.page-slug-privacy-policy .article-content__intro-heading,
.page-slug-privacy-policy-2 .article-content__intro-heading,
.page-template-page-cookie-policy .article-content__intro-heading,
.page-slug-cookie-policy .article-content__intro-heading,
.page-template-page-refund-policy .article-content__intro-heading,
.page-slug-refund-policy .article-content__intro-heading,
.page-template-page-terms-and-conditions .article-content__heading,
.page-template-page-terms-conditions .article-content__heading,
.page-slug-terms-and-conditions .article-content__heading,
.page-slug-terms-conditions .article-content__heading,
.page-template-page-terms-and-conditions .article-content__intro-heading,
.page-template-page-terms-conditions .article-content__intro-heading,
.page-slug-terms-and-conditions .article-content__intro-heading,
.page-slug-terms-conditions .article-content__intro-heading {
	font-size: 18px;
}

.page-template-page-privacy-policy .article-content__mini-heading,
.page-slug-privacy-policy .article-content__mini-heading,
.page-slug-privacy-policy-2 .article-content__mini-heading,
.page-template-page-cookie-policy .article-content__mini-heading,
.page-slug-cookie-policy .article-content__mini-heading,
.page-template-page-refund-policy .article-content__mini-heading,
.page-slug-refund-policy .article-content__mini-heading {
	font-size: 15px;
}

.article-content__link {
	color: #bdd3fa;
	text-decoration: underline;
	text-decoration-color: rgba(189, 211, 250, 0.45);
	text-underline-offset: 0.14em;
	transition: color 0.16s ease, text-decoration-color 0.16s ease;
}

.article-content__link:hover,
.article-content__link:focus-visible {
	color: #e6e7eb;
	text-decoration-color: rgba(230, 231, 235, 0.72);
	outline: none;
}

@media (max-width: 1024px) {
	.article-content {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.article-content {
		width: 100%;
	}

	.article-content__sections {
		margin-top: 28px;
		gap: 28px;
	}

	.article-content__heading,
	.article-content__intro-heading {
		font-size: 20px;
	}

	.article-content__text {
		font-size: 15px;
	}

	.page-template-page-privacy-policy .article-content__text,
	.page-slug-privacy-policy .article-content__text,
	.page-slug-privacy-policy-2 .article-content__text,
	.page-template-page-cookie-policy .article-content__text,
	.page-slug-cookie-policy .article-content__text,
	.page-template-page-refund-policy .article-content__text,
	.page-slug-refund-policy .article-content__text,
	.page-template-page-terms-and-conditions .article-content__text,
	.page-template-page-terms-conditions .article-content__text,
	.page-slug-terms-and-conditions .article-content__text,
	.page-slug-terms-conditions .article-content__text,
	.page-template-page-terms-and-conditions .article-content--terms .article-content__text,
	.page-template-page-terms-conditions .article-content--terms .article-content__text,
	.page-slug-terms-and-conditions .article-content--terms .article-content__text,
	.page-slug-terms-conditions .article-content--terms .article-content__text {
		font-size: 13px;
	}

	.page-template-page-terms-and-conditions .article-content--terms .article-content__bullet-item,
	.page-template-page-terms-conditions .article-content--terms .article-content__bullet-item,
	.page-slug-terms-and-conditions .article-content--terms .article-content__bullet-item,
	.page-slug-terms-conditions .article-content--terms .article-content__bullet-item {
		font-size: 13px;
	}

	.page-template-page-privacy-policy .article-content__heading,
	.page-slug-privacy-policy .article-content__heading,
	.page-slug-privacy-policy-2 .article-content__heading,
	.page-template-page-cookie-policy .article-content__heading,
	.page-slug-cookie-policy .article-content__heading,
	.page-template-page-refund-policy .article-content__heading,
	.page-slug-refund-policy .article-content__heading,
	.page-template-page-privacy-policy .article-content__intro-heading,
	.page-slug-privacy-policy .article-content__intro-heading,
	.page-slug-privacy-policy-2 .article-content__intro-heading,
	.page-template-page-cookie-policy .article-content__intro-heading,
	.page-slug-cookie-policy .article-content__intro-heading,
	.page-template-page-refund-policy .article-content__intro-heading,
	.page-slug-refund-policy .article-content__intro-heading,
	.page-template-page-terms-and-conditions .article-content__heading,
	.page-template-page-terms-conditions .article-content__heading,
	.page-slug-terms-and-conditions .article-content__heading,
	.page-slug-terms-conditions .article-content__heading,
	.page-template-page-terms-and-conditions .article-content__intro-heading,
	.page-template-page-terms-conditions .article-content__intro-heading,
	.page-slug-terms-and-conditions .article-content__intro-heading,
	.page-slug-terms-conditions .article-content__intro-heading,
	.page-template-page-terms-and-conditions .article-content--terms > .article-content__sections > .article-content__section > .article-content__heading,
	.page-template-page-terms-conditions .article-content--terms > .article-content__sections > .article-content__section > .article-content__heading,
	.page-slug-terms-and-conditions .article-content--terms > .article-content__sections > .article-content__section > .article-content__heading,
	.page-slug-terms-conditions .article-content--terms > .article-content__sections > .article-content__section > .article-content__heading,
	.page-template-page-terms-and-conditions .article-content--terms .article-content__intro-heading,
	.page-template-page-terms-conditions .article-content--terms .article-content__intro-heading,
	.page-slug-terms-and-conditions .article-content--terms .article-content__intro-heading,
	.page-slug-terms-conditions .article-content--terms .article-content__intro-heading {
		font-size: 17px;
	}
}

.article-cta {
	margin-top: 80px;
	margin-bottom: 80px;
}

.article-cta__inner {
	position: relative;
	width: min(1344px, 100%);
	margin: 0 auto;
	padding: 40px 48px;
	border-radius: 24px;
	border: 1px solid rgba(100, 100, 102, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(circle at 102% 28%, rgba(115, 172, 203, 0.24) 0%, rgba(115, 172, 203, 0.1) 24%, rgba(115, 172, 203, 0.035) 40%, rgba(115, 172, 203, 0) 58%),
		linear-gradient(180deg, rgba(20, 28, 43, 0.2) 0%, rgba(6, 10, 18, 0.14) 100%);
}

.article-cta__inner::before {
	content: "";
	position: absolute;
	left: -116px;
	bottom: -126px;
	width: 286px;
	height: 286px;
	z-index: 0;
	border-radius: 50%;
	background: radial-gradient(
		circle at 62% 38%,
		rgba(115, 172, 203, 0.36) 0%,
		rgba(115, 172, 203, 0.14) 30%,
		rgba(115, 172, 203, 0.05) 50%,
		transparent 68%
	);
	filter: blur(18px);
	opacity: 0.58;
	pointer-events: none;
}

.article-cta__inner::after {
	content: "";
	position: absolute;
	top: -34px;
	right: -14px;
	width: 318px;
	height: 262px;
	z-index: 0;
	pointer-events: none;
	background: url("../../../image/home-offer-spot.png");
	background-repeat: no-repeat;
	background-size: 210% 210%;
	background-position: 90% 20%;
	mask-image: radial-gradient(ellipse 84% 80% at 86% 26%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.48) 56%, rgba(0, 0, 0, 0) 88%);
	-webkit-mask-image: radial-gradient(ellipse 84% 80% at 86% 26%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.48) 56%, rgba(0, 0, 0, 0) 88%);
	opacity: 0.32;
}

.article-cta__copy {
	width: 888px;
	max-width: 100%;
	margin: 0 auto;
}

.article-cta__title,
.article-cta__text,
.article-cta__actions {
	position: relative;
	z-index: 1;
}

.article-cta__title {
	margin: 0;
	background-image: linear-gradient(90deg, #e6e7eb 0%, #bdd3fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.12;
}

.article-cta__text {
	margin: 12px 0 0;
	max-width: 100%;
	background-image: linear-gradient(90deg, #e6e7eb 0%, #bdd3fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	font-size: 16px;
	line-height: 1.3;
}

.article-cta__actions {
	margin-top: 40px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 47px;
}

.article-cta__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 420.5px;
	height: 60px;
	padding: 0 16px 0 14px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 16px;
	line-height: 1;
}

button.article-cta__button {
	font: inherit;
	text-align: left;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.article-cta__button--dark {
	color: #e6e7eb;
	border: 1px solid #bdd3fa;
	background: rgba(3, 7, 12, 0.86);
}

.article-cta__button--light {
	color: #0c111b;
	border: 1px solid #a6b9dc;
	background: #a6b9dc;
}

.article-cta__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 29.5px;
	height: 29.5px;
	border-radius: 3px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 29.5px 29.5px;
}

.article-cta__button--dark .article-cta__button-icon {
	background-image: url("../../../image/btn-arrow-light.png");
}

.article-cta__button--light .article-cta__button-icon {
	background-image: url("../../../image/btn-arrow-dark.png");
}

@media (max-width: 1024px) {
	.article-cta__inner {
		padding: 32px 22px;
	}

	.article-cta__actions {
		gap: 16px;
	}

	.article-cta__copy {
		width: min(888px, 100%);
	}

	.article-cta__button {
		width: min(420.5px, 100%);
	}
}

@media (max-width: 768px) {
	.article-cta {
		margin-top: 56px;
		margin-bottom: 80px;
	}

	.article-cta__inner {
		padding: 24px 16px 28px;
	}

	.article-cta__title {
		font-size: 26px;
	}

	.article-cta__text {
		font-size: 15px;
	}

	.article-cta__actions {
		flex-direction: column;
		gap: 12px;
	}

	.article-cta__button {
		width: 100%;
	}
}

/*
 * Legal / policy article pages — in-flow spacer before footer (reliable 80px; .home-stage .site-main
 * in global.css forces padding:0 on main, so padding-bottom alone may not show).
 */
body.page-template-page-privacy-policy .article-page-footer-gap,
body.page-slug-privacy-policy-2 .article-page-footer-gap,
body.page-template-page-terms-and-conditions .article-page-footer-gap,
body.page-template-page-terms-conditions .article-page-footer-gap,
body.page-slug-terms-and-conditions .article-page-footer-gap,
body.page-slug-terms-conditions .article-page-footer-gap,
body.page-template-page-cookie-policy .article-page-footer-gap,
body.page-slug-cookie-policy .article-page-footer-gap,
body.page-template-page-refund-policy .article-page-footer-gap,
body.page-slug-refund-policy .article-page-footer-gap {
	display: block;
	width: 100%;
	height: 80px;
	min-height: 80px;
	clear: both;
	flex-shrink: 0;
}
