/* =====================================================================
   Sphere Cookie Policy (Sphere-Cookie)
   Scoped to .sphere-cookie-page only.
   Every --scookie-* variable below is editable without affecting other pages.
   ===================================================================== */

.sphere-home.sphere-cookie-page {
	/* Brand / surfaces — edit freely */
	--scookie-orange: #e54225;
	--scookie-orange-deep: #d63d22;
	--scookie-ink: #1a1a1a;
	--scookie-muted: #666666;
	--scookie-body: #4a4a4a;
	--scookie-white: #ffffff;
	--scookie-surface: #f5f5f5;
	--scookie-line: rgba(0, 0, 0, 0.1);

	/* Layout */
	--scookie-container-pad: clamp(1.25rem, 3vw, 1.5rem);
	--scookie-radius-card: 0.625rem;
	--scookie-shadow-card: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);

	/* Typography */
	--scookie-title-size: clamp(2rem, 4vw, 2.75rem);
	--scookie-section-title-size: clamp(1.25rem, 2vw, 1.5rem);
	--scookie-subtitle-size: 0.9375rem;
	--scookie-body-size: 0.90625rem;
	--scookie-body-line: 1.75;

	background: var(--scookie-white);
}

/* ── Light sticky header (Cookie page only) ────────────────────────── */
.sphere-home.sphere-cookie-page.sphere-header-cookie {
	--scookie-header-bg: #ffffff;
	--scookie-header-link: rgba(51, 51, 51, 0.78);
	--scookie-header-link-hover: #222222;
}

.sphere-home.sphere-cookie-page.sphere-header-cookie .site-header {
	background: var(--scookie-header-bg);
	backdrop-filter: none;
	box-shadow: 0 0.0625rem 0 rgba(0, 0, 0, 0.06);
}

.sphere-home.sphere-cookie-page.sphere-header-cookie .site-header.is-nav-open {
	background: var(--scookie-header-bg);
	box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.08);
}

@media (min-width: 769px) {
	.sphere-home.sphere-cookie-page.sphere-header-cookie .site-nav > .site-nav__item > a {
		color: var(--scookie-header-link);
	}

	.sphere-home.sphere-cookie-page.sphere-header-cookie .site-nav > .site-nav__item > a:hover,
	.sphere-home.sphere-cookie-page.sphere-header-cookie .site-nav > .site-nav__item > a:focus-visible,
	.sphere-home.sphere-cookie-page.sphere-header-cookie .site-nav .current-menu-item > a,
	.sphere-home.sphere-cookie-page.sphere-header-cookie .site-nav .current_page_item > a {
		color: var(--scookie-header-link-hover);
	}
}

@media (max-width: 768px) {
	.sphere-home.sphere-cookie-page.sphere-header-cookie .nav-toggle {
		border-color: rgba(0, 0, 0, 0.15);
		color: #333333;
	}
}

/* ── Page title ────────────────────────────────────────────────────── */
.sphere-home.sphere-cookie-page .scookie-hero {
	/* Title band — edit freely */
	--scookie-hero-pad-top: clamp(4.5rem, 9vw, 6.5rem);
	--scookie-hero-pad-bottom: clamp(3rem, 6vw, 4.5rem);

	background: var(--scookie-white);
	padding: 9rem 0rem 10rem 0rem;
}

.sphere-home.sphere-cookie-page .scookie-hero__inner {
	padding-left: var(--scookie-container-pad);
	padding-right: var(--scookie-container-pad);
}

.sphere-home.sphere-cookie-page .scookie-hero__title {
	margin: 0;
	font-size: 80px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--scookie-ink);
}

.sphere-home.sphere-cookie-page .scookie-hero__title-accent {
	color: var(--scookie-orange);
}

/* ── Layout: contents nav + policy ─────────────────────────────────── */
.sphere-home.sphere-cookie-page .scookie-main {
	/* Body band — edit freely */
	--scookie-main-bg: #f4f4f4;

	padding-top: clamp(2.5rem, 5vw, 3.75rem);
	padding-bottom: 2rem;
	background: var(--scookie-main-bg);
}

.sphere-home.sphere-cookie-page .scookie-layout {
	/* Contents column width / gap — edit freely */
	--scookie-toc-w: 13.75rem;
	--scookie-layout-gap: clamp(1.75rem, 4vw, 3rem);

	display: grid;
	grid-template-columns: var(--scookie-toc-w) minmax(0, 1fr);
	gap: var(--scookie-layout-gap);
	align-items: start;
	padding-left: var(--scookie-container-pad);
	padding-right: var(--scookie-container-pad);
}

/* ── Contents card ─────────────────────────────────────────────────── */
.sphere-home.sphere-cookie-page .scookie-toc {
	position: static;
}

.sphere-home.sphere-cookie-page .scookie-toc__card {
	/* Contents card — edit freely */
	--scookie-toc-bg: #ededed;

	padding: 1.1rem 0 0.85rem;
	border-radius: var(--scookie-radius-card);
	background: #e6e3e3;
	box-shadow: var(--scookie-shadow-card);
}

.sphere-home.sphere-cookie-page .scookie-toc__heading {
	margin: 0 0 0.5rem;
	padding: 0 1.1rem;
	font-size: 20px;
	font-weight: 700;
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-toc__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
}

.sphere-home.sphere-cookie-page .scookie-toc__link {
	/* Active/hover left bar — edit freely */
	--scookie-toc-bar: var(--scookie-orange);
	--scookie-toc-bar-width: 0.1875rem;

	position: relative;
	display: block;
	padding: 0.55rem 1rem 0.55rem 1.1rem;
	font-size: 0.8125rem;
	line-height: 1.4;
	text-decoration: none;
	color: var(--scookie-muted);
	transition: color 0.2s ease, background-color 0.2s ease;
}

.sphere-home.sphere-cookie-page .scookie-toc__link::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: var(--scookie-toc-bar-width);
	height: 100%;
	background: transparent;
	transition: background-color 0.2s ease;
}

.sphere-home.sphere-cookie-page .scookie-toc__link:hover,
.sphere-home.sphere-cookie-page .scookie-toc__link:focus-visible,
.sphere-home.sphere-cookie-page .scookie-toc__link.is-active {
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-toc__link.is-active {
	font-weight: 700;
}

.sphere-home.sphere-cookie-page .scookie-toc__link:hover::before,
.sphere-home.sphere-cookie-page .scookie-toc__link:focus-visible::before,
.sphere-home.sphere-cookie-page .scookie-toc__link.is-active::before {
	background: var(--scookie-toc-bar);
}

/* ── Policy content column ─────────────────────────────────────────── */
.sphere-home.sphere-cookie-page .scookie-content {
	/* Content column width — edit freely */
	--scookie-content-max: 46rem;

	max-width: var(--scookie-content-max);
}

/* ── Policy sections ───────────────────────────────────────────────── */
.sphere-home.sphere-cookie-page .scookie-section {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	scroll-margin-top: 6rem;
}

.sphere-home.sphere-cookie-page .scookie-section--card {
	/* Intro card — edit freely */
	--scookie-intro-bg: #ffffff;
	--scookie-intro-pad-x: clamp(1.5rem, 3vw, 2.25rem);

	padding: clamp(1.5rem, 3vw, 2rem) var(--scookie-intro-pad-x);
	border-radius: var(--scookie-radius-card);
	background: var(--scookie-intro-bg);
	box-shadow: var(--scookie-shadow-card);
}

/* Card title with orange bar on the card's left edge — edit freely */
.sphere-home.sphere-cookie-page .scookie-section__title--bar {
	--scookie-title-bar-color: var(--scookie-orange);
	--scookie-title-bar-width: 0.25rem;

	position: relative;
	font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

.sphere-home.sphere-cookie-page .scookie-section__title--bar::before {
	content: '';
	position: absolute;
	left: calc(-1 * var(--scookie-intro-pad-x));
	top: 0.1em;
	width: 3px;
    height: 1.45em;
	background: var(--scookie-title-bar-color);
}

.sphere-home.sphere-cookie-page .scookie-section__title {
	margin: 0 0 0.9rem;
	font-size: var(--scookie-section-title-size);
	font-weight: 700;
	line-height: 1.3;
	color: var(--scookie-ink);
}

.sphere-home.sphere-cookie-page .scookie-section__title-accent {
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-section__subtitle {
	margin: 1.25rem 0 0.5rem;
	font-size: var(--scookie-subtitle-size);
	font-weight: 700;
	line-height: 1.4;
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-section p {
	margin: 0 0 0.85rem;
	font-size: var(--scookie-body-size);
	line-height: var(--scookie-body-line);
	color: var(--scookie-body);
}

.sphere-home.sphere-cookie-page .scookie-section p:last-child {
	margin-bottom: 0;
}

.sphere-home.sphere-cookie-page .scookie-section__note {
	font-style: italic;
	color: var(--scookie-muted);
}

.sphere-home.sphere-cookie-page .scookie-list {
	margin: 0 0 0.85rem;
	padding: 0 0 0 1.1rem;
	list-style: disc;
	display: grid;
	gap: 0.35rem;
}

.sphere-home.sphere-cookie-page .scookie-list li {
	font-size: var(--scookie-body-size);
	line-height: 1.6;
	color: var(--scookie-body);
}

.sphere-home.sphere-cookie-page .scookie-link {
	color: var(--scookie-orange);
	text-decoration: none;
}

.sphere-home.sphere-cookie-page .scookie-link:hover,
.sphere-home.sphere-cookie-page .scookie-link:focus-visible {
	color: var(--scookie-orange-deep);
	text-decoration: underline;
}

/* ── Durations table ───────────────────────────────────────────────── */
.sphere-home.sphere-cookie-page .scookie-table {
	/* Table — edit freely */
	--scookie-table-head-bg: #e4e4e4;
	--scookie-table-row-bg: #ffffff;

	width: 100%;
	margin: 0.5rem 0 1rem;
	border-collapse: collapse;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--scookie-body);
}

.sphere-home.sphere-cookie-page .scookie-table th,
.sphere-home.sphere-cookie-page .scookie-table td {
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--scookie-line);
	text-align: left;
	vertical-align: top;
}

.sphere-home.sphere-cookie-page .scookie-table thead th {
	background: var(--scookie-table-head-bg);
	font-weight: 700;
	color: var(--scookie-ink);
}

.sphere-home.sphere-cookie-page .scookie-table tbody tr:nth-child(odd) td {
	background: var(--scookie-table-row-bg);
}

.sphere-home.sphere-cookie-page .scookie-table td:first-child {
	font-weight: 600;
	color: var(--scookie-ink);
}

/* ── Contact card ──────────────────────────────────────────────────── */
.sphere-home.sphere-cookie-page .scookie-contact {
	/* Contact card — edit freely */
	--scookie-contact-bg: var(--scookie-orange);
	--scookie-contact-text: rgba(255, 255, 255, 0.92);

	padding: clamp(1.5rem, 3vw, 2.25rem);
	border-radius: var(--scookie-radius-card);
	background: var(--scookie-contact-bg);
	color: var(--scookie-contact-text);
	scroll-margin-top: 6rem;
}

.sphere-home.sphere-cookie-page .scookie-contact__title {
	margin: 0 0 0.6rem;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
	color: var(--scookie-white);
}

.sphere-home.sphere-cookie-page .scookie-contact__text {
	margin: 0 0 1.25rem;
	font-size: var(--scookie-body-size);
	line-height: 1.65;
	color: var(--scookie-contact-text);
}

.sphere-home.sphere-cookie-page .scookie-contact__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.sphere-home.sphere-cookie-page .scookie-contact__item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.sphere-home.sphere-cookie-page .scookie-contact__label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

.sphere-home.sphere-cookie-page .scookie-contact__value {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--scookie-white);
	text-decoration: none;
	word-break: break-word;
}

.sphere-home.sphere-cookie-page a.scookie-contact__value:hover,
.sphere-home.sphere-cookie-page a.scookie-contact__value:focus-visible {
	text-decoration: underline;
}

/* ── The Cookies We Use (standalone white section) ─────────────────── */
.sphere-home.sphere-cookie-page .scookie-use {
	/* Section — edit freely */
	--scookie-use-bg: #ffffff;
	--scookie-use-pad-top: clamp(3rem, 6vw, 4.5rem);
	--scookie-use-pad-bottom: clamp(3rem, 6vw, 4.5rem);
	--scookie-use-max: 46rem;
	--scookie-use-title-size: clamp(1.5rem, 2.5vw, 1.875rem);
	--scookie-use-subtitle-size: 0.9375rem;
	--scookie-use-body-size: 0.90625rem;
	--scookie-use-body-line: 1.75;

	padding: var(--scookie-use-pad-top) 0 var(--scookie-use-pad-bottom);
	background: var(--scookie-use-bg);
	scroll-margin-top: 5rem;
}

.sphere-home.sphere-cookie-page .scookie-use__inner {
	max-width: var(--scookie-use-max);
	margin: 0 auto;
	padding-left: var(--scookie-container-pad);
	padding-right: var(--scookie-container-pad);
}

.sphere-home.sphere-cookie-page .scookie-use__title {
	margin: 0 0 0.9rem;
	font-size: var(--scookie-use-title-size);
	font-weight: 700;
	line-height: 1.3;
	color: var(--scookie-ink);
}

.sphere-home.sphere-cookie-page .scookie-use__title-accent {
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-use__intro,
.sphere-home.sphere-cookie-page .scookie-use__text {
	margin: 0 0 0.85rem;
	font-size: var(--scookie-use-body-size);
	line-height: var(--scookie-use-body-line);
	color: var(--scookie-body);
	text-align: justify;
	hyphens: auto;
	-webkit-hyphens: auto;
}

.sphere-home.sphere-cookie-page .scookie-use__subtitle {
	margin: 1.5rem 0 0.4rem;
	font-size: var(--scookie-use-subtitle-size);
	font-weight: 700;
	line-height: 1.4;
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-use__text:last-child {
	margin-bottom: 0;
}

/* ── How Long Cookies Last (standalone white section) ──────────────── */
.sphere-home.sphere-cookie-page .scookie-last {
	/* Section — edit freely */
	--scookie-last-bg: #ffffff;
	--scookie-last-pad-top: clamp(1.5rem, 3vw, 2.25rem);
	--scookie-last-pad-bottom: clamp(3rem, 6vw, 4.5rem);
	--scookie-last-max: 46rem;
	--scookie-last-title-size: clamp(1.5rem, 2.5vw, 1.875rem);
	--scookie-last-body-size: 0.90625rem;
	--scookie-last-body-line: 1.75;

	padding: var(--scookie-last-pad-top) 0 var(--scookie-last-pad-bottom);
	background: var(--scookie-last-bg);
	scroll-margin-top: 5rem;
}

.sphere-home.sphere-cookie-page .scookie-last__inner {
	max-width: var(--scookie-last-max);
	margin: 0 auto;
	padding-left: var(--scookie-container-pad);
	padding-right: var(--scookie-container-pad);
}

.sphere-home.sphere-cookie-page .scookie-last__title {
	margin: 0 0 0.9rem;
	font-size: var(--scookie-last-title-size);
	font-weight: 700;
	line-height: 1.3;
	color: var(--scookie-ink);
}

.sphere-home.sphere-cookie-page .scookie-last__title-accent {
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-last__text,
.sphere-home.sphere-cookie-page .scookie-last__note {
	margin: 0 0 0.85rem;
	font-size: var(--scookie-last-body-size);
	line-height: var(--scookie-last-body-line);
	color: var(--scookie-body);
	text-align: justify;
	hyphens: auto;
	-webkit-hyphens: auto;
}

.sphere-home.sphere-cookie-page .scookie-last__text-accent {
	color: var(--scookie-orange);
	text-decoration: none;
}

.sphere-home.sphere-cookie-page a.scookie-last__text-accent:hover,
.sphere-home.sphere-cookie-page a.scookie-last__text-accent:focus-visible {
	color: var(--scookie-orange-deep);
	text-decoration: underline;
}

/* Retention table card — edit freely */
.sphere-home.sphere-cookie-page .scookie-last__card {
	--scookie-last-card-bg: #f4f4f4;
	--scookie-last-card-radius: 0.5rem;
	--scookie-last-card-bar: var(--scookie-orange);
	--scookie-last-card-bar-width: 0.1875rem;
	--scookie-last-card-bar-inset: 1.25rem;

	position: relative;
	margin: 1.6rem 0 2rem;
	padding: 0.75rem 1.25rem;
	border-radius: var(--scookie-last-card-radius);
	background: var(--scookie-last-card-bg);
}

.sphere-home.sphere-cookie-page .scookie-last__card::before {
	content: '';
	position: absolute;
	left: 0;
	top: var(--scookie-last-card-bar-inset);
	bottom: var(--scookie-last-card-bar-inset);
	width: var(--scookie-last-card-bar-width);
	background: var(--scookie-last-card-bar);
}

.sphere-home.sphere-cookie-page .scookie-last__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--scookie-body);
}

.sphere-home.sphere-cookie-page .scookie-last__table th,
.sphere-home.sphere-cookie-page .scookie-last__table td {
	padding: 0.9rem 0.75rem;
	text-align: left;
	vertical-align: middle;
}

.sphere-home.sphere-cookie-page .scookie-last__table th {
	width: 32%;
	font-weight: 700;
	color: var(--scookie-ink);
}

.sphere-home.sphere-cookie-page .scookie-last__table tr:first-child th,
.sphere-home.sphere-cookie-page .scookie-last__table tr:first-child td {
	border-bottom: 1px solid #e2e2e2;
}

.sphere-home.sphere-cookie-page .scookie-last__note {
	margin-bottom: 0;
}

/* ── Your Choices and Controls (standalone white section) ──────────── */
.sphere-home.sphere-cookie-page .scookie-choices {
	/* Section — edit freely */
	--scookie-choices-bg: #ffffff;
	--scookie-choices-pad-top: clamp(1.5rem, 3vw, 2.25rem);
	--scookie-choices-pad-bottom: clamp(3rem, 6vw, 4.5rem);
	--scookie-choices-max: 46rem;
	--scookie-choices-title-size: clamp(1.5rem, 2.5vw, 1.875rem);
	--scookie-choices-subtitle-size: 0.9375rem;
	--scookie-choices-body-size: 0.90625rem;
	--scookie-choices-body-line: 1.75;

	padding: var(--scookie-choices-pad-top) 0 var(--scookie-choices-pad-bottom);
	background: var(--scookie-choices-bg);
	scroll-margin-top: 5rem;
}

.sphere-home.sphere-cookie-page .scookie-choices__inner {
	max-width: var(--scookie-choices-max);
	margin: 0 auto;
	padding-left: var(--scookie-container-pad);
	padding-right: var(--scookie-container-pad);
}

.sphere-home.sphere-cookie-page .scookie-choices__title {
	margin: 0 0 0.9rem;
	font-size: var(--scookie-choices-title-size);
	font-weight: 700;
	line-height: 1.3;
	color: var(--scookie-ink);
}

.sphere-home.sphere-cookie-page .scookie-choices__title-accent {
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-choices__subtitle {
	margin: 1.5rem 0 0.4rem;
	font-size: var(--scookie-choices-subtitle-size);
	font-weight: 700;
	line-height: 1.4;
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-choices__text {
	margin: 0 0 0.85rem;
	font-size: var(--scookie-choices-body-size);
	line-height: var(--scookie-choices-body-line);
	color: var(--scookie-body);
	text-align: justify;
	hyphens: auto;
	-webkit-hyphens: auto;
}

.sphere-home.sphere-cookie-page .scookie-choices__text:last-child {
	margin-bottom: 0;
}

.sphere-home.sphere-cookie-page .scookie-choices__browsers {
	margin: 1.4rem 0;
	padding: 0;
	list-style: none;
}

.sphere-home.sphere-cookie-page .scookie-choices__browsers li {
	font-size: var(--scookie-choices-body-size);
	line-height: var(--scookie-choices-body-line);
	color: var(--scookie-body);
}

.sphere-home.sphere-cookie-page .scookie-choices__accent {
	color: var(--scookie-orange);
	text-decoration: none;
}

.sphere-home.sphere-cookie-page a.scookie-choices__accent:hover,
.sphere-home.sphere-cookie-page a.scookie-choices__accent:focus-visible {
	color: var(--scookie-orange-deep);
	text-decoration: underline;
}

/* ── Jurisdiction-Specific Information (standalone white section) ──── */
.sphere-home.sphere-cookie-page .scookie-juris {
	/* Section — edit freely */
	--scookie-juris-bg: #ffffff;
	--scookie-juris-pad-top: clamp(1.5rem, 3vw, 2.25rem);
	--scookie-juris-pad-bottom: clamp(3rem, 6vw, 4.5rem);
	--scookie-juris-max: 46rem;
	--scookie-juris-title-size: clamp(1.5rem, 2.5vw, 1.875rem);
	--scookie-juris-subtitle-size: 0.9375rem;
	--scookie-juris-body-size: 0.90625rem;
	--scookie-juris-body-line: 1.75;

	padding: var(--scookie-juris-pad-top) 0 var(--scookie-juris-pad-bottom);
	background: var(--scookie-juris-bg);
	scroll-margin-top: 5rem;
}

.sphere-home.sphere-cookie-page .scookie-juris__inner {
	max-width: var(--scookie-juris-max);
	margin: 0 auto;
	padding-left: var(--scookie-container-pad);
	padding-right: var(--scookie-container-pad);
}

.sphere-home.sphere-cookie-page .scookie-juris__title {
	margin: 0 0 0.9rem;
	font-size: var(--scookie-juris-title-size);
	font-weight: 700;
	line-height: 1.3;
	color: var(--scookie-ink);
}

.sphere-home.sphere-cookie-page .scookie-juris__title-accent {
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-juris__subtitle {
	margin: 1.5rem 0 0.4rem;
	font-size: var(--scookie-juris-subtitle-size);
	font-weight: 700;
	line-height: 1.4;
	color: var(--scookie-orange);
}

.sphere-home.sphere-cookie-page .scookie-juris__text {
	margin: 0 0 0.85rem;
	font-size: var(--scookie-juris-body-size);
	line-height: var(--scookie-juris-body-line);
	color: var(--scookie-body);
	text-align: justify;
	hyphens: auto;
	-webkit-hyphens: auto;
}

.sphere-home.sphere-cookie-page .scookie-juris__text:last-child {
	margin-bottom: 0;
}

.sphere-home.sphere-cookie-page .scookie-juris__accent {
	color: var(--scookie-orange);
	text-decoration: none;
}

.sphere-home.sphere-cookie-page a.scookie-juris__accent:hover,
.sphere-home.sphere-cookie-page a.scookie-juris__accent:focus-visible {
	color: var(--scookie-orange-deep);
	text-decoration: underline;
}

/* ── Contact Us (standalone orange card section) ───────────────────── */
.sphere-home.sphere-cookie-page .scookie-reach {
	/* Section — edit freely */
	--scookie-reach-bg: #ffffff;
	--scookie-reach-pad-top: clamp(0.5rem, 2vw, 1rem);
	--scookie-reach-pad-bottom: clamp(3rem, 6vw, 4.5rem);
	--scookie-reach-max: 46rem;

	padding: var(--scookie-reach-pad-top) 0 var(--scookie-reach-pad-bottom);
	background: var(--scookie-reach-bg);
	scroll-margin-top: 5rem;
}

.sphere-home.sphere-cookie-page .scookie-reach__inner {
	max-width: var(--scookie-reach-max);
	margin: 0 auto;
	padding-left: var(--scookie-container-pad);
	padding-right: var(--scookie-container-pad);
}

/* Orange card — edit freely */
.sphere-home.sphere-cookie-page .scookie-reach__card {
	--scookie-reach-card-bg: #e54125;
	--scookie-reach-card-radius: 0.625rem;
	--scookie-reach-card-pad: clamp(1.5rem, 3vw, 2.5rem);

	padding: var(--scookie-reach-card-pad);
	border-radius: var(--scookie-reach-card-radius);
	background: var(--scookie-reach-card-bg);
	color: #ffffff;
}

.sphere-home.sphere-cookie-page .scookie-reach__title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.375rem, 2.2vw, 1.75rem);
	font-weight: 700;
	line-height: 1.3;
	color: #ffffff;
}

.sphere-home.sphere-cookie-page .scookie-reach__cols {
	/* Column split — edit freely */
	--scookie-reach-cols-gap: clamp(1.5rem, 4vw, 3rem);

	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: var(--scookie-reach-cols-gap);
	align-items: start;
}

.sphere-home.sphere-cookie-page .scookie-reach__intro {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.95);
}

.sphere-home.sphere-cookie-page .scookie-reach__details p {
	margin: 0 0 0.3rem;
	font-size: 0.875rem;
	line-height: 1.6;
	font-style: italic;
	color: rgba(255, 255, 255, 0.95);
}

.sphere-home.sphere-cookie-page .scookie-reach__details p:last-child {
	margin-bottom: 0;
}

.sphere-home.sphere-cookie-page .scookie-reach__details p.scookie-reach__company {
	font-weight: 700;
	font-style: normal;
}

.sphere-home.sphere-cookie-page .scookie-reach__details p.scookie-reach__gap {
	margin-top: 1.1rem;
}

.sphere-home.sphere-cookie-page .scookie-reach__link {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.sphere-home.sphere-cookie-page .scookie-reach__link:hover,
.sphere-home.sphere-cookie-page .scookie-reach__link:focus-visible {
	color: rgba(255, 255, 255, 0.85);
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.sphere-home.sphere-cookie-page .scookie-layout {
		grid-template-columns: 1fr;
	}

	.sphere-home.sphere-cookie-page .scookie-toc {
		position: static;
	}

	.sphere-home.sphere-cookie-page .scookie-contact__grid {
		grid-template-columns: 1fr;
	}

	.sphere-home.sphere-cookie-page .scookie-reach__cols {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.sphere-home.sphere-cookie-page .scookie-table {
		display: block;
		overflow-x: auto;
	}

	.sphere-home.sphere-cookie-page .scookie-last__card {
		overflow-x: auto;
	}

	.sphere-home.sphere-cookie-page .scookie-last__table {
		min-width: 34rem;
	}
}
