:root {
	--ccz-primary: #146c63;
	--ccz-accent: #f3b33d;
	--ccz-contrast: #0b2f36;
	--ccz-bg: #fbfaf5;
	--ccz-surface: #ffffff;
	--ccz-muted: #5e6b70;
	--ccz-text: #16262b;
	--ccz-border: #d9e6e3;
	--ccz-shadow: 0 24px 70px rgba(11, 47, 54, 0.12);
	--ccz-radius: 24px;
	--ccz-font-scale: 1;
	--ccz-container-width: 1120px;
	color-scheme: light;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: calc(100% * var(--ccz-font-scale, 1));
}

body {
	margin: 0;
	background: var(--ccz-bg);
	color: var(--ccz-text);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1.0625rem;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body.ccz-high-contrast {
	--ccz-bg: #000000;
	--ccz-surface: #ffffff;
	--ccz-text: #000000;
	--ccz-muted: #111111;
	--ccz-primary: #004c45;
	--ccz-accent: #ffd400;
	--ccz-contrast: #000000;
	--ccz-border: #000000;
}

body.ccz-dark-contrast {
	--ccz-bg: #071418;
	--ccz-surface: #10252b;
	--ccz-text: #f4fbff;
	--ccz-muted: #c8d8dc;
	--ccz-primary: #7ce0d0;
	--ccz-accent: #ffd85a;
	--ccz-contrast: #ffffff;
	--ccz-border: rgba(255, 255, 255, 0.18);
	color-scheme: dark;
}

body.ccz-layout-wide {
	--ccz-container-width: 1320px;
}

body.ccz-high-contrast .site-main,
body.ccz-high-contrast .site-header {
	background: #ffffff;
	color: #000000;
}

a {
	color: var(--ccz-primary);
	text-underline-offset: 0.18em;
}

a:hover {
	text-decoration-thickness: 0.16em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
	outline: 4px solid var(--ccz-accent);
	outline-offset: 4px;
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(var(--ccz-container-width), calc(100% - 32px));
	margin-inline: auto;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: 12px;
	z-index: 1000;
	padding: 12px 18px;
	background: var(--ccz-accent);
	color: #000000;
	font-weight: 800;
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--ccz-border);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 86px;
}

.site-logo-text {
	display: inline-flex;
	flex-direction: column;
	color: var(--ccz-contrast);
	text-decoration: none;
}

.site-logo-text strong {
	font-size: 1.2rem;
	line-height: 1.2;
}

.site-logo-text span {
	color: var(--ccz-muted);
	font-size: 0.92rem;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 16px;
}

.menu-toggle {
	display: none;
	border: 2px solid var(--ccz-primary);
	border-radius: 999px;
	background: var(--ccz-surface);
	color: var(--ccz-primary);
	padding: 10px 16px;
	font-weight: 800;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a {
	display: inline-flex;
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--ccz-contrast);
	font-weight: 700;
	text-decoration: none;
}

.primary-nav a:hover {
	background: rgba(20, 108, 99, 0.1);
}

.accessibility-toolbar {
	border-top: 1px solid var(--ccz-border);
	background: var(--ccz-contrast);
	color: #ffffff;
}

.accessibility-toolbar__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-block: 10px;
}

.accessibility-toolbar button {
	border: 1px solid currentColor;
	border-radius: 999px;
	background: transparent;
	color: inherit;
	padding: 8px 14px;
	font-weight: 700;
	cursor: pointer;
}

.hero {
	padding: clamp(56px, 8vw, 110px) 0;
	background:
		radial-gradient(circle at 80% 10%, rgba(243, 179, 61, 0.34), transparent 30%),
		linear-gradient(135deg, #eaf7f4 0%, #fff7df 100%);
}

.hero__grid,
.two-columns,
.accessibility-section {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
}

.hero h1,
.page-hero h1 {
	margin: 0 0 24px;
	color: var(--ccz-contrast);
	font-size: clamp(2.4rem, 7vw, 5rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
}

.hero__content p,
.lead {
	font-size: 1.18rem;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--ccz-primary);
	font-size: 0.86rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 900;
	text-decoration: none;
}

.button--primary {
	background: var(--ccz-primary);
	color: #ffffff;
}

.hero__card,
.contact-card,
.audio-description,
.gallery-placeholder,
.post-card {
	padding: clamp(22px, 4vw, 36px);
	border: 1px solid var(--ccz-border);
	border-radius: var(--ccz-radius);
	background: var(--ccz-surface);
	box-shadow: var(--ccz-shadow);
}

.hero__card strong {
	display: block;
	margin-bottom: 10px;
	color: var(--ccz-primary);
	font-size: 1.4rem;
}

.section {
	padding: clamp(56px, 8vw, 96px) 0;
}

.section--soft {
	background: #eef8f6;
}

.section-heading {
	max-width: 780px;
	margin-bottom: 34px;
}

h1,
h2,
h3 {
	color: var(--ccz-contrast);
	line-height: 1.15;
}

h2 {
	margin: 0 0 18px;
	font-size: clamp(2rem, 4vw, 3.25rem);
	letter-spacing: -0.03em;
}

h3 {
	margin-top: 0;
	font-size: 1.4rem;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.feature-grid li {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-height: 180px;
	padding: 24px;
	border-radius: 22px;
	background: var(--ccz-surface);
	box-shadow: 0 12px 34px rgba(11, 47, 54, 0.08);
}

.feature-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ccz-accent);
	color: #000000;
	font-size: 0.75rem;
	font-weight: 900;
}

.ccz-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.ccz-gallery-item {
	display: block;
	overflow: hidden;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: var(--ccz-shadow);
}

.ccz-gallery-item img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.2s ease;
}

.ccz-gallery-item:hover img,
.ccz-gallery-item:focus-visible img {
	transform: scale(1.04);
}

.audio-description audio {
	width: 100%;
	margin-top: 12px;
}

.contact-section {
	background: var(--ccz-contrast);
	color: #ffffff;
}

.contact-section h2,
.contact-section .eyebrow {
	color: #ffffff;
}

.contact-card {
	color: var(--ccz-text);
	font-style: normal;
}

.contact-card > div + div {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--ccz-border);
}

.page-hero {
	padding: 70px 0;
	background: #eaf7f4;
}

.virtual-hero {
	overflow: hidden;
	padding: clamp(42px, 6vw, 78px) 0;
	background:
		linear-gradient(90deg, rgba(238, 248, 255, 0.95) 0%, rgba(255, 250, 241, 0.72) 100%);
}

.virtual-hero__grid,
.virtual-content-grid {
	display: grid;
	gap: clamp(26px, 5vw, 72px);
	align-items: center;
}

.virtual-hero__grid {
	grid-template-columns: minmax(0, 1fr);
}

.virtual-hero__grid.has-media {
	grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
}

.virtual-content-grid {
	display: block;
}

.virtual-hero h1 {
	max-width: none;
	margin: 0 0 14px;
	color: #062b63;
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.virtual-hero p:not(.eyebrow) {
	max-width: none;
	margin: 0;
	color: #30475f;
	font-size: 1.18rem;
}

.virtual-hero__intro {
	max-width: none;
	color: #30475f;
	font-size: 1.18rem;
	line-height: 1.65;
}

.virtual-hero__intro > *:first-child {
	margin-top: 0;
}

.virtual-hero__intro > *:last-child {
	margin-bottom: 0;
}

.virtual-content-card .entry-content,
.virtual-content-card .virtual-hero__intro {
	word-break: normal;
	overflow-wrap: anywhere;
}

.virtual-content-card .entry-content ul,
.virtual-content-card .entry-content ol,
.lead ul,
.lead ol,
.virtual-hero__intro ul,
.virtual-hero__intro ol {
	margin: 0.8em 0;
	padding-left: 1.4em;
}

.virtual-content-card .entry-content li + li,
.lead li + li,
.virtual-hero__intro li + li {
	margin-top: 0.35em;
}

.virtual-hero__card {
	min-height: 260px;
	border: 10px solid #ffffff;
	border-radius: 28px;
	background-position: center;
	background-size: cover;
	box-shadow: var(--ccz-shadow);
}

.virtual-content-section {
	background: #ffffff;
}

.virtual-content-grid {
	align-items: start;
}

.virtual-contact-box {
	border: 1px solid var(--ccz-border);
	border-radius: var(--ccz-radius);
	background: var(--ccz-surface);
	box-shadow: var(--ccz-shadow);
}

.virtual-content-card {
	width: 100%;
	max-width: none;
	padding: 0;
}

.virtual-content-card .entry-content {
	width: 100%;
	max-width: none;
}

.virtual-content-card > *:first-child {
	margin-top: 0;
}

.virtual-content-card p {
	font-size: 1.05rem;
}

.entry-content--intro {
	margin-bottom: 28px;
}

.day-schedule {
	width: 100%;
	margin-top: 8px;
}

.day-schedule__list {
	display: grid;
	gap: 14px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.day-schedule__item {
	width: 100%;
}

.day-schedule__card {
	display: grid;
	grid-template-columns: minmax(148px, 220px) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(30, 41, 59, 0.06);
}

.day-schedule__time {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	padding: 18px 16px;
	background: linear-gradient(180deg, #eef9ee 0%, #fff7d6 100%);
	box-shadow: inset -1px 0 0 rgba(47, 125, 50, 0.1);
}

.day-schedule__time time {
	color: var(--ccz-primary, #2f7d32);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
	letter-spacing: 0.01em;
}

.day-schedule__text {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 18px 22px;
	color: #334155;
	font-size: 1.03rem;
	line-height: 1.65;
}

.virtual-content-card--schedule {
	max-width: none;
	width: 100%;
}

.virtual-content-card--schedule .entry-content--intro {
	max-width: none;
}

.virtual-content-card--documents {
	display: block;
	width: 100%;
	max-width: none;
}

.virtual-content-card--documents .entry-content,
.virtual-content-card--documents .page-doc-links,
.virtual-content-card--documents .page-pdf-links {
	width: 100%;
	max-width: none;
}

.virtual-content-card--safety-procedures {
	display: block;
	width: 100%;
	max-width: none;
}

.virtual-content-card--safety-procedures .entry-content--intro,
.virtual-content-card--safety-procedures .safety-procedures,
.virtual-content-card--safety-procedures .safety-procedures-footer {
	width: 100%;
	max-width: none;
}

.virtual-content-card--safety-procedures .entry-content--intro {
	margin-bottom: 8px;
}

.safety-procedures {
	margin-top: 28px;
}

.safety-procedures__list {
	display: grid;
	gap: 14px;
	width: 100%;
}

.safety-procedure-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px 22px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(30, 41, 59, 0.06);
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.safety-procedure-card:hover,
.safety-procedure-card:focus-visible {
	border-color: rgba(6, 43, 99, 0.22);
	background: #f8fbff;
	box-shadow: 0 14px 28px rgba(30, 41, 59, 0.1);
	outline: none;
	transform: translateY(-1px);
}

.safety-procedure-card__head {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.safety-procedure-card__title {
	color: #062b63;
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.3;
}

.safety-procedure-card__description {
	color: #334155;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.55;
	text-transform: uppercase;
}

.safety-procedure-card__chevron {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: #eef4fb;
	color: #062b63;
}

.safety-procedure-card__chevron svg {
	width: 20px;
	height: 20px;
}

.procedure-modal__eyebrow {
	margin: 0 0 10px;
	color: #64748b;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.55;
	text-transform: uppercase;
}

.procedure-modal__pending {
	margin: 0;
	padding: 14px 16px;
	border-radius: 12px;
	background: #f8fafc;
	color: #64748b;
}

.safety-procedures-footer {
	margin-top: 32px;
	padding-top: 8px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.page-doc-file-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	background: #f8fafc;
}

.page-doc-file-actions__icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
}

.page-doc-file-actions__badge {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #64748b;
}

.page-doc-file-actions__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-left: auto;
}

.page-doc-file-actions--doc .page-doc-action--view:hover,
.page-doc-file-actions--doc .page-doc-action--view:focus-visible {
	border-color: rgba(21, 101, 192, 0.28);
	background: #e3f2fd;
	color: #1565c0;
}

.page-doc-file-actions--doc .page-doc-action--download:hover,
.page-doc-file-actions--doc .page-doc-action--download:focus-visible {
	border-color: rgba(21, 101, 192, 0.24);
	background: #e8f2fc;
	color: #0d47a1;
}

.day-schedule__footer {
	margin-top: 24px;
	padding: 20px 22px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	background: #f8fafc;
	color: #475569;
	font-size: 1rem;
	line-height: 1.7;
}

.day-schedule__footer p:last-child {
	margin-bottom: 0;
}

.virtual-contact-box {
	display: grid;
	gap: 14px;
}

.virtual-news-list {
	display: grid;
	gap: 20px;
}

.virtual-news-item {
	display: grid;
	grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
	gap: 22px;
	padding: 18px;
	border: 1px solid var(--ccz-border);
	border-radius: 18px;
	background: #ffffff;
}

.virtual-news-item__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 14px;
}

.virtual-news-item h2 {
	font-size: 1.4rem;
}

.virtual-contact-box {
	margin-top: 24px;
	padding: 24px;
}

.virtual-contact-layout {
	display: grid;
	gap: clamp(22px, 4vw, 34px);
	margin-top: 24px;
}

.virtual-contact-layout .virtual-contact-box {
	margin-top: 0;
}

@media (min-width: 900px) {
	.virtual-contact-layout {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
		align-items: stretch;
	}

	.virtual-content-card--contact .virtual-contact-layout {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
		gap: clamp(20px, 2.5vw, 28px);
	}

	.virtual-content-card--contact .virtual-contact-map__frame {
		min-height: 520px;
	}

	.virtual-contact-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas:
			"address email"
			"nip regon"
			"phone hours";
		gap: 14px;
	}

	.virtual-contact-item {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
		align-items: start;
		padding: 16px;
		border: 1px solid var(--ccz-border);
		border-radius: 14px;
		background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
		box-shadow: 0 8px 20px rgba(23, 50, 77, 0.05);
	}

	.virtual-contact-item + .virtual-contact-item {
		padding-top: 16px;
		border-top: none;
	}

	.virtual-contact-item--address {
		grid-area: address;
	}

	.virtual-contact-item--email {
		grid-area: email;
	}

	.virtual-contact-item--nip {
		grid-area: nip;
	}

	.virtual-contact-item--regon {
		grid-area: regon;
	}

	.virtual-contact-item--phone {
		grid-area: phone;
	}

	.virtual-contact-item--hours {
		grid-area: hours;
	}

	.virtual-contact-item--hours .virtual-contact-item__value,
	.virtual-opening-hours {
		max-width: none;
		width: 100%;
	}

	.virtual-contact-item__icon {
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}

	.virtual-contact-item__icon svg {
		width: 20px;
		height: 20px;
	}

	.virtual-contact-map {
		display: flex;
		flex-direction: column;
		min-height: 100%;
	}
}

.virtual-contact-list {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.virtual-contact-item {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.virtual-contact-item + .virtual-contact-item {
	padding-top: 18px;
	border-top: 1px solid var(--ccz-border);
}

.virtual-contact-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(6, 43, 99, 0.12);
}

.virtual-contact-item__icon svg {
	width: 24px;
	height: 24px;
}

.virtual-contact-item__icon--address {
	background: linear-gradient(135deg, #2f7d32 0%, #1f9a6d 100%);
}

.virtual-contact-item__icon--phone {
	background: linear-gradient(135deg, #0f6db8 0%, #2f7d32 100%);
}

.virtual-contact-item__icon--email {
	background: linear-gradient(135deg, #f6a623 0%, #f6c844 100%);
	color: #1f2a37;
}

.virtual-contact-item__icon--hours {
	background: linear-gradient(135deg, #062b63 0%, #1b4f9c 100%);
}

.virtual-contact-item__label {
	display: block;
	margin-bottom: 6px;
	color: var(--ccz-contrast);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.virtual-contact-item__value,
.virtual-contact-item__value p {
	margin: 0;
	color: #344755;
	font-size: 1.05rem;
	line-height: 1.55;
}

.virtual-contact-item__value p + p {
	margin-top: 0.35em;
}

.virtual-contact-item__meta {
	display: inline-block;
	margin-right: 0.35rem;
	color: var(--ccz-muted, #5b6472);
	font-size: 0.92rem;
	font-weight: 700;
}

.virtual-opening-hours {
	display: grid;
	gap: 4px;
	max-width: 22rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.virtual-opening-hours__day {
	display: grid;
	grid-template-columns: 1.75rem minmax(0, 1fr) auto;
	gap: 8px;
	align-items: center;
	padding: 5px 8px;
	border-radius: 10px;
	background: transparent;
}

.virtual-opening-hours__day.is-open {
	background: rgba(47, 125, 50, 0.06);
}

.virtual-opening-hours__day.is-closed {
	background: rgba(148, 163, 184, 0.08);
}

.virtual-opening-hours__name {
	margin: 0;
	color: var(--ccz-contrast);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.2;
}

.virtual-opening-hours__name-short {
	display: inline;
}

.virtual-opening-hours__name-full {
	display: none;
}

.virtual-opening-hours__time {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	color: #344755;
	font-size: 0.84rem;
	font-weight: 700;
	white-space: nowrap;
}

.virtual-opening-hours__time-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 0.95rem;
	height: 0.95rem;
}

.virtual-opening-hours__time-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.virtual-opening-hours__time-icon--open {
	color: #2f7d32;
}

.virtual-opening-hours__time-icon--closed {
	color: #94a3b8;
}

.virtual-contact-item--hours .virtual-contact-item__value {
	max-width: 22rem;
}

.ccz-opening-hours-day-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 8px;
	color: #ffffff;
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.01em;
	box-shadow: none;
}

.virtual-opening-hours__day.is-open .ccz-opening-hours-day-icon {
	background: linear-gradient(135deg, #2f7d32 0%, #1f9a6d 100%);
}

.virtual-opening-hours__day.is-closed .ccz-opening-hours-day-icon {
	background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.virtual-contact-item__icon--nip {
	background: linear-gradient(135deg, #5b4b8a 0%, #7c6cbf 100%);
}

.virtual-contact-item__icon--regon {
	background: linear-gradient(135deg, #0f6db8 0%, #3b82c4 100%);
}

@media (max-width: 640px) {
	.virtual-opening-hours {
		max-width: none;
	}

	.virtual-opening-hours__name-short {
		display: none;
	}

	.virtual-opening-hours__name-full {
		display: inline;
	}

	.virtual-contact-item--hours .virtual-contact-item__value {
		max-width: none;
	}

	.day-schedule__card {
		grid-template-columns: 1fr;
	}

	.day-schedule__time {
		justify-content: flex-start;
		min-height: 0;
		padding: 12px 16px;
		box-shadow: inset 0 -1px 0 rgba(47, 125, 50, 0.1);
	}

	.day-schedule__time time {
		text-align: left;
	}

	.day-schedule__text {
		padding: 16px 18px;
	}
}

.virtual-contact-item__link {
	color: var(--ccz-contrast);
	font-weight: 700;
	text-decoration: none;
}

.virtual-contact-item__link:hover,
.virtual-contact-item__link:focus-visible {
	color: var(--ccz-primary);
	text-decoration: underline;
}

.virtual-contact-map {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid var(--ccz-border);
	border-radius: var(--ccz-radius);
	background: #ffffff;
	box-shadow: var(--ccz-shadow);
}

.virtual-contact-map__frame {
	display: block;
	width: 100%;
	min-height: 280px;
	height: 100%;
	border: 0;
}

.virtual-contact-map__canvas {
	background: #dfe7ef;
}

.virtual-contact-map__canvas.leaflet-container {
	z-index: 1;
	font-family: inherit;
}

.ccz-map-marker {
	background: transparent;
	border: 0;
}

.ccz-map-marker__wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.ccz-map-marker__label {
	padding: 8px 14px;
	border: 1px solid rgba(6, 43, 99, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
	color: var(--ccz-contrast);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.ccz-map-marker__point {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ccz-map-marker__pin {
	display: block;
	width: 20px;
	height: 20px;
	border: 3px solid #ffffff;
	border-radius: 50%;
	background: var(--ccz-primary);
	box-shadow: 0 0 0 4px rgba(47, 125, 50, 0.24);
}

.ccz-map-marker__tail {
	display: block;
	width: 0;
	height: 0;
	margin-top: -2px;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 10px solid var(--ccz-primary);
	filter: drop-shadow(0 2px 2px rgba(15, 23, 42, 0.12));
}

.virtual-contact-map__caption {
	margin: 0;
	padding: 12px 16px 14px;
	border-top: 1px solid var(--ccz-border);
	background: #f8fbfd;
	font-size: 0.92rem;
	text-align: center;
}

.virtual-contact-map__caption a {
	color: var(--ccz-contrast);
	font-weight: 700;
	text-decoration: none;
}

.virtual-contact-map__caption a:hover,
.virtual-contact-map__caption a:focus-visible {
	text-decoration: underline;
}

.content-area {
	width: 100%;
	max-width: none;
}

.content-area > *:first-child {
	margin-top: 0;
}

.ccz-sitemap {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.ccz-sitemap__section {
	padding: clamp(20px, 3vw, 30px);
	border: 1px solid var(--ccz-border);
	border-radius: var(--ccz-radius);
	background: var(--ccz-surface);
	box-shadow: var(--ccz-shadow);
}

.ccz-sitemap__section h2 {
	margin-bottom: 18px;
	font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.ccz-sitemap ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 1.2rem;
}

.ccz-sitemap li ul {
	margin-top: 8px;
}

.ccz-sitemap a {
	font-weight: 800;
}

.post-list {
	display: grid;
	gap: 22px;
}

.site-footer {
	background: var(--ccz-contrast);
	color: #ffffff;
	border-top: 4px solid var(--ccz-primary);
	padding-block: 22px 18px;
}

.site-footer a {
	color: #ffffff;
}

.site-footer__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px 40px;
	flex-wrap: wrap;
}

.site-footer__legal {
	min-width: 0;
	max-width: 720px;
}

@media (min-width: 761px) {
	.site-footer__legal {
		flex: 1 1 260px;
	}
}

.site-footer__title {
	margin: 0 0 4px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}

.site-footer__subtitle {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.92rem;
	line-height: 1.5;
}

.site-footer__powered {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 12px;
}

.site-footer__powered span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-footer__powered a {
	display: inline-flex;
	align-items: center;
	padding: 0;
}

.site-footer__powered img {
	display: block;
	width: 128px;
	max-width: 34vw;
	height: auto;
	object-fit: contain;
}

.wfg-gallery-tree {
	font-size: 1rem;
}

@media (max-width: 900px) {
	.site-header__inner,
	.primary-nav {
		align-items: flex-start;
	}

	.site-header__inner {
		flex-direction: column;
		padding-block: 18px;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border-radius: 10px;
	}

	.primary-nav {
		width: 100%;
		flex-direction: column;
	}

	.primary-nav ul {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.primary-nav.is-open ul {
		display: flex;
	}

	.primary-nav a {
		display: flex;
		background: rgba(20, 108, 99, 0.08);
	}

	.hero__grid,
	.two-columns,
	.accessibility-section,
	.virtual-hero__grid,
	.virtual-hero__grid.has-media,
	.virtual-content-grid,
	.ccz-sitemap {
		grid-template-columns: 1fr;
	}

	.virtual-hero__grid > div:first-child {
		width: 100%;
		max-width: none;
	}

	.virtual-hero h1,
	.virtual-hero p:not(.eyebrow),
	.virtual-hero__intro {
		max-width: none;
	}

	.virtual-hero__card {
		width: 100%;
		min-height: 220px;
	}

	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	body {
		font-size: 1rem;
	}

	.container {
		width: min(100% - 22px, 1120px);
	}

	.accessibility-toolbar__inner {
		display: grid;
		grid-template-columns: 1fr;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Layout inspired by the supplied nursery reference. */
:root {
	--ccz-primary: #2f7d32;
	--ccz-accent: #f6c844;
	--ccz-contrast: #062b63;
	--ccz-bg: #fffaf1;
	--ccz-soft-blue: #eef8ff;
	--ccz-soft-green: #eef9ee;
	--ccz-radius: 18px;
	--ccz-shadow: 0 18px 48px rgba(6, 43, 99, 0.1);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.top-accessibility {
	border-bottom: 1px solid rgba(6, 43, 99, 0.08);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 250, 0.94)),
		linear-gradient(90deg, rgba(20, 108, 99, 0.12), rgba(243, 179, 61, 0.15));
	color: #062b63;
	font-size: 0.9rem;
}

.top-accessibility__inner,
.top-accessibility__actions,
.header-bip-link,
.hero__actions,
.section-heading--split {
	display: flex;
	align-items: center;
}

.top-accessibility__inner {
	justify-content: space-between;
	gap: 18px;
	min-height: 58px;
	padding-block: 8px;
}

.top-accessibility__title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 950;
	white-space: nowrap;
}

.top-accessibility__title::before {
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--ccz-accent);
	box-shadow: 0 0 0 6px rgba(243, 179, 61, 0.18);
}

.top-accessibility__actions {
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px 14px;
}

.a11y-group {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px;
	border: 1px solid rgba(6, 43, 99, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 10px 24px rgba(6, 43, 99, 0.06);
}

.a11y-group > span {
	padding: 0 6px 0 8px;
	color: #445b68;
	font-size: 0.82rem;
	font-weight: 900;
}

.a11y-control {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid #dbe7eb;
	border-radius: 11px;
	background: #ffffff;
	color: #062b63;
	box-shadow: inset 0 -1px 0 rgba(6, 43, 99, 0.06);
	cursor: pointer;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.a11y-control:hover,
.a11y-control:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(20, 108, 99, 0.38);
	background: #edf8f5;
}

.a11y-control[aria-pressed="true"] {
	border-color: var(--ccz-primary);
	background: var(--ccz-primary);
	color: #ffffff;
}

.a11y-control--high[aria-pressed="true"] {
	border-color: #000000;
	background: #ffe500;
	color: #000000;
}

.a11y-control svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.a11y-sitemap-link {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid #dbe6ec;
	background: #f7faf8;
	color: var(--ccz-contrast);
	font-weight: 900;
	text-decoration: none;
}

.a11y-sitemap-link:hover,
.a11y-sitemap-link:focus-visible {
	background: var(--ccz-primary);
	color: #ffffff;
}

.site-header {
	top: 0;
	background: #ffffff;
	backdrop-filter: none;
}

.site-header__inner {
	min-height: 74px;
}

.site-logo-text {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.site-logo-image-link {
	display: inline-flex;
	align-items: center;
	width: var(--ccz-logo-desktop, 170px);
	max-width: min(100%, 360px);
}

.site-logo-image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 82px;
	object-fit: contain;
}

.site-logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 20px 24px 18px 28px;
	background: #ffdc4d;
	color: #e1487b;
	font-size: 0.8rem;
	font-weight: 950;
	box-shadow: inset 0 -8px 0 rgba(255, 255, 255, 0.45);
}

.site-logo-copy {
	display: inline-flex;
	flex-direction: column;
}

.site-logo-text strong {
	color: #062b63;
	font-size: 1.18rem;
	text-transform: uppercase;
}

.header-bip-link {
	justify-content: center;
	min-height: 42px;
	border-radius: 999px;
	background: var(--ccz-primary);
	color: #ffffff;
	padding: 9px 18px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.header-bip-link:hover {
	background: #246627;
	color: #ffffff;
}

.site-nav-row {
	border-top: 1px solid #edf2f5;
}

.primary-nav {
	justify-content: center;
	width: 100%;
}

.primary-nav li {
	position: relative;
}

.primary-nav a {
	border-radius: 0;
	color: #142d48;
	font-size: 0.9rem;
}

.primary-nav a:hover {
	background: transparent;
	color: var(--ccz-primary);
	box-shadow: inset 0 -3px 0 var(--ccz-primary);
}

.primary-nav .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 70;
	display: none;
	min-width: 260px;
	padding: 10px;
	border: 1px solid #edf2f5;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(6, 43, 99, 0.12);
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
	display: grid;
}

.primary-nav .sub-menu a {
	display: flex;
	border-radius: 12px;
	padding: 10px 12px;
	white-space: nowrap;
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu a:focus-visible {
	background: rgba(47, 125, 50, 0.1);
	box-shadow: none;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(44px, 6vw, 82px) 0;
	background:
		radial-gradient(circle at 18% 26%, rgba(246, 200, 68, 0.2), transparent 18%),
		radial-gradient(circle at 82% 18%, rgba(62, 150, 218, 0.18), transparent 20%),
		#fffaf1;
}

.hero h1 {
	max-width: 680px;
	font-size: clamp(2.2rem, 5.5vw, 4.1rem);
	color: #062b63;
}

.hero__content p {
	max-width: 570px;
	color: #22384d;
}

.hero__actions {
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.button--ghost {
	border: 2px solid #cddde5;
	background: #ffffff;
	color: #062b63;
}

.hero__media {
	position: relative;
	min-height: 360px;
}

.hero__photo,
.about-visual,
.news-card__image {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0)),
		linear-gradient(135deg, #f9cf62 0%, #f7a7c7 48%, #78c6ef 100%);
}

.hero__photo {
	background-position: center;
	background-size: cover;
	min-height: 360px;
	border: 14px solid #ffffff;
	border-radius: 42% 58% 46% 54% / 48% 40% 60% 52%;
	box-shadow: var(--ccz-shadow);
}

.hero__photo::before {
	content: "Zdjęcie dzieci z sali";
	display: grid;
	place-items: center;
	min-height: 330px;
	color: #062b63;
	font-size: 1.3rem;
	font-weight: 900;
	text-align: center;
}

.hero__photo.has-custom-image::before {
	content: "";
}

.hero__sun,
.hero__cloud,
.hero__heart {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
}

.hero__sun {
	left: -8px;
	top: 18px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #ffd74a;
	box-shadow: 0 0 0 10px rgba(255, 215, 74, 0.24);
}

.hero__cloud {
	right: -4px;
	top: 42px;
	width: 86px;
	height: 42px;
	border-radius: 999px;
	background: #75c7f0;
}

.hero__heart {
	left: 18px;
	bottom: 44px;
	width: 34px;
	height: 34px;
	border: 3px solid #e47aa1;
	border-radius: 50%;
	background: #ffffff;
}

.highlights {
	padding: 34px 0;
	background: #ffffff;
}

.highlight-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.highlight-card {
	padding: 22px;
	border: 1px solid #e7eef2;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(6, 43, 99, 0.06);
}

.highlight-card span,
.parent-card span {
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	border-radius: 18px;
	background: #f4fbef;
	color: var(--ccz-primary);
	font-size: 0.78rem;
	font-weight: 950;
}

.parent-card__icon {
	box-shadow: 0 10px 24px rgba(47, 125, 50, 0.12);
}

.parent-card__icon svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.highlight-card h2 {
	margin-bottom: 8px;
	color: var(--ccz-contrast);
	font-size: 1rem;
	letter-spacing: 0;
}

.highlight-card p,
.parent-card small,
.news-card p {
	margin: 0;
	color: var(--ccz-muted);
	font-size: 0.92rem;
}

.about-visual {
	display: grid;
	place-items: center;
	min-height: 310px;
	border-radius: 22px;
	background-position: center;
	background-size: cover;
	box-shadow: var(--ccz-shadow);
	color: #062b63;
	font-weight: 900;
	text-align: center;
}

.age-groups {
	padding-top: clamp(48px, 6vw, 72px);
	padding-bottom: clamp(48px, 6vw, 72px);
	background:
		linear-gradient(180deg, #f7fbf9 0%, #ffffff 42%, #ffffff 100%);
}

.age-groups .section-heading {
	max-width: none;
	margin-bottom: 34px;
}

.age-groups__heading {
	position: relative;
}

.age-groups__heading .eyebrow {
	margin-bottom: 10px;
}

.age-groups__title {
	max-width: 760px;
	margin: 0 auto;
	color: var(--ccz-contrast);
	font-size: clamp(1.55rem, 2.8vw, 2.15rem);
	font-weight: 800;
	line-height: 1.38;
	text-align: center;
	text-wrap: balance;
}

.age-groups__heading::after {
	content: "";
	display: block;
	width: 76px;
	height: 4px;
	margin: 20px auto 0;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--ccz-primary), var(--ccz-accent));
	box-shadow: 0 6px 18px rgba(20, 108, 99, 0.18);
}

.age-groups__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.age-group-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 24px 20px;
	border: 1px solid #e7eef2;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(6, 43, 99, 0.06);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.age-group-card:hover {
	border-color: rgba(20, 108, 99, 0.2);
	box-shadow: 0 18px 40px rgba(6, 43, 99, 0.1);
	transform: translateY(-2px);
}

.age-group-card__icon {
	display: inline-grid;
	flex-shrink: 0;
	place-items: center;
	width: 72px;
	height: 72px;
	border-radius: 20px;
}

.age-group-card__emoji {
	display: block;
	font-size: clamp(2.1rem, 4vw, 2.75rem);
	line-height: 1;
}

.age-group-card--zabki .age-group-card__icon {
	background: #edf8f0;
	color: #1f7a45;
}

.age-group-card--biedronki .age-group-card__icon {
	background: #fff1f1;
	color: #c62828;
}

.age-group-card--motylki .age-group-card__icon {
	background: #f3ecff;
	color: #7b4fd1;
}

.age-group-card--pszczolki .age-group-card__icon {
	background: #fff7df;
	color: #c58a00;
}

.age-group-card__body {
	min-width: 0;
}

.age-group-card__order {
	margin: 0 0 4px;
	color: #146c63;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.age-group-card__name {
	margin: 0 0 8px;
	color: var(--ccz-contrast);
	font-size: 1.2rem;
	line-height: 1.25;
}

.age-group-card__range {
	margin: 0;
	color: var(--ccz-muted);
	font-size: 0.96rem;
	line-height: 1.55;
}

.text-link {
	display: inline-flex;
	margin-top: 10px;
	color: var(--ccz-contrast);
	font-weight: 900;
	text-decoration-thickness: 0.12em;
}

.parent-zone {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0, #eef8ff 18%, #eef8ff 100%);
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading--split {
	justify-content: space-between;
	gap: 24px;
	max-width: none;
}

.parent-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.parent-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 190px;
	padding: 24px 16px;
	border-radius: 18px;
	color: var(--ccz-contrast);
	text-align: center;
	text-decoration: none;
}

.parent-card strong {
	margin-bottom: 8px;
	color: inherit;
}

.parent-card:hover {
	background: #ffffff;
	box-shadow: var(--ccz-shadow);
}

.parent-card em {
	margin-top: auto;
	color: var(--ccz-primary);
	font-style: normal;
	font-weight: 900;
}

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

.news-grid--archive {
	gap: 24px;
}

.news-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #e7eef2;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 16px 36px rgba(6, 43, 99, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
	transform: translateY(-4px);
	border-color: rgba(47, 125, 50, 0.22);
	box-shadow: 0 22px 46px rgba(6, 43, 99, 0.13);
}

.news-card--latest {
	border-color: rgba(47, 125, 50, 0.34);
	box-shadow: 0 18px 40px rgba(47, 125, 50, 0.12);
}

.news-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 6px 12px;
	border: 2px solid var(--ccz-primary);
	border-radius: 8px;
	background: #ffffff;
	color: var(--ccz-primary);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 8px 18px rgba(23, 50, 77, 0.12);
}

.news-card__image {
	display: block;
	width: 100%;
	min-height: 160px;
	padding: 0;
	border: 0;
	background-position: center;
	background-size: cover;
	cursor: pointer;
}

.news-card__image--photo {
	min-height: 0;
}

.news-card__image img {
	aspect-ratio: 16 / 9;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.news-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
}

.news-card__meta {
	color: var(--ccz-primary);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.news-card h3 {
	margin: 0;
	font-size: 1.12rem;
}

.news-card h3 button {
	padding: 0;
	border: 0;
	background: transparent;
	color: #062b63;
	font: inherit;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
}

.news-card h3 button:hover,
.news-card h3 button:focus-visible {
	color: var(--ccz-primary);
	text-decoration: underline;
	text-decoration-thickness: 0.12em;
}

.news-card__more {
	align-self: flex-start;
	margin-top: auto;
	padding: 10px 16px;
	border: 0;
	border-radius: 999px;
	background: #f4fbef;
	color: var(--ccz-primary);
	font-weight: 900;
	cursor: pointer;
}

.news-card__more:hover,
.news-card__more:focus-visible {
	background: var(--ccz-primary);
	color: #ffffff;
}

.news-modal {
	position: fixed;
	z-index: 99999;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 100%;
	height: 100%;
	height: 100dvh;
	padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
	box-sizing: border-box;
}

.news-modal.is-open {
	display: flex;
}

.news-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(6, 43, 99, 0.78);
	backdrop-filter: blur(6px);
}

.news-modal__frame {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(860px, 100%);
	max-height: calc(100dvh - 24px);
	min-height: 0;
}

.news-modal__dialog {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	width: 100%;
	max-height: inherit;
	min-height: 0;
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 32px 80px rgba(6, 43, 99, 0.28);
}

.news-modal__toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
	padding: 12px 12px 0;
	background: #ffffff;
}

.news-modal__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.news-modal__close {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 14px;
	border: 0;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(6, 43, 99, 0.16);
	color: #062b63;
	font-size: 0.95rem;
	font-weight: 900;
	cursor: pointer;
}

body.admin-bar .news-modal__close {
	top: auto;
}

.news-modal__close span {
	font-size: 1.45rem;
	line-height: 1;
}

.news-modal__image img {
	display: block;
	width: 100%;
	max-height: 360px;
	object-fit: cover;
}

.news-modal__content {
	padding: 20px clamp(20px, 4vw, 42px) clamp(28px, 5vw, 42px);
}

.news-modal__content h2 {
	margin: 0 0 16px;
	color: #062b63;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.news-modal__content p {
	color: #33485f;
	font-size: 1.06rem;
}

.news-modal__content ul,
.news-modal__content ol {
	padding-left: 1.35rem;
}

.news-modal__content .alignleft {
	text-align: left;
}

.news-modal__content .aligncenter {
	text-align: center;
}

.news-modal__content .alignright {
	text-align: right;
}

.news-modal__content .alignjustify {
	text-align: justify;
}

body.news-modal-open {
	position: fixed;
	inset: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.page-doc-links,
.page-pdf-links {
	display: grid;
	gap: 14px;
	width: 100%;
	max-width: none;
	margin-top: 24px;
}

.page-doc-links--duo {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-doc-links--single {
	grid-template-columns: minmax(0, 1fr);
}

.page-doc-link,
.page-pdf-link {
	display: grid;
	gap: 14px;
	width: 100%;
	max-width: none;
	min-height: 92px;
	padding: 18px 20px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(30, 41, 59, 0.06);
	color: #0f172a;
	box-sizing: border-box;
}

.page-doc-link__main {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.page-doc-link__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-doc-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 14px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 999px;
	background: #f8fafc;
	color: #0f172a;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.page-doc-action--view:hover,
.page-doc-action--view:focus-visible {
	border-color: rgba(47, 125, 50, 0.28);
	background: #eef9ee;
	color: #1b5e20;
	outline: none;
}

.page-doc-action--download:hover,
.page-doc-action--download:focus-visible {
	border-color: rgba(6, 43, 99, 0.2);
	background: #eef4fb;
	color: #062b63;
	outline: none;
}

.page-doc-link--doc .page-doc-action--view:hover,
.page-doc-link--doc .page-doc-action--view:focus-visible {
	border-color: rgba(21, 101, 192, 0.28);
	background: #e3f2fd;
	color: #1565c0;
}

.page-doc-link--doc .page-doc-action--download:hover,
.page-doc-link--doc .page-doc-action--download:focus-visible {
	border-color: rgba(21, 101, 192, 0.24);
	background: #e8f2fc;
	color: #0d47a1;
}

.page-doc-link__icon,
.page-pdf-link__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: #fff5f5;
}

.page-doc-link__icon--doc {
	background: #e3f2fd;
}

.page-doc-link__text {
	display: grid;
	flex: 1 1 auto;
	gap: 4px;
	min-width: 0;
}

.page-doc-link__label,
.page-pdf-link__label {
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	font-weight: 800;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.page-doc-link__meta {
	color: #64748b;
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.page-doc-link__badge,
.page-pdf-link__badge {
	flex-shrink: 0;
	padding: 5px 11px;
	border-radius: 999px;
	background: #ffebee;
	color: #c62828;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.page-doc-link__badge--doc {
	background: #e3f2fd;
	color: #1565c0;
}

.pdf-modal .news-modal__frame,
.pdf-modal__frame {
	width: min(1080px, 100%);
}

.pdf-modal__toolbar {
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px 0;
}

.pdf-modal__title {
	margin: 0;
	padding-right: 12px;
	color: #0f172a;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
}

.pdf-modal__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.pdf-modal__external {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 9px 14px;
	border-radius: 999px;
	background: #eef9ee;
	color: #1b5e20;
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}

.pdf-modal__external:hover,
.pdf-modal__external:focus-visible {
	background: var(--ccz-primary, #2f7d32);
	color: #ffffff;
}

.pdf-modal__body {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.pdf-modal__viewer {
	display: block;
	width: 100%;
	min-height: min(78vh, 820px);
	height: min(78vh, 820px);
	border: 0;
	background: #f8fafc;
}

.pdf-modal__fallback {
	margin: 0;
	padding: 14px 18px calc(18px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid #e7eef2;
	background: #ffffff;
	color: #475569;
	font-size: 0.92rem;
	line-height: 1.55;
	text-align: center;
}

.pdf-modal__fallback a {
	font-weight: 800;
}

/* Professional visual refinements for the public site. */
:root {
	--ccz-primary: #2f6f5f;
	--ccz-accent: #d9a441;
	--ccz-contrast: #17324d;
	--ccz-bg: #f7f5ef;
	--ccz-surface: #ffffff;
	--ccz-muted: #5f6f7b;
	--ccz-text: #1d2a33;
	--ccz-border: #dfe6e8;
	--ccz-soft-blue: #f2f6f8;
	--ccz-soft-green: #f1f6f2;
	--ccz-radius: 14px;
	--ccz-shadow: 0 12px 30px rgba(23, 50, 77, 0.08);
}

body {
	background: var(--ccz-bg);
	color: var(--ccz-text);
	font-size: 1.0625rem;
	line-height: 1.68;
}

.top-accessibility {
	border-bottom: 1px solid #e6ecee;
	background: #ffffff;
	color: var(--ccz-contrast);
	font-size: 0.86rem;
}

.top-accessibility__inner {
	justify-content: flex-end;
	min-height: 52px;
}

.top-accessibility__title::before {
	background: var(--ccz-primary);
	box-shadow: none;
}

.a11y-group {
	border-radius: 12px;
	box-shadow: none;
}

.a11y-control {
	border-radius: 8px;
}

.a11y-sitemap-link {
	background: #f7faf8;
	color: var(--ccz-contrast);
	border-radius: 8px;
}

.header-bip-link {
	background: var(--ccz-contrast);
	border-radius: 8px;
}

.a11y-sitemap-link:hover,
.a11y-sitemap-link:focus-visible,
.header-bip-link:hover {
	background: var(--ccz-primary);
}

.site-header {
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid #e3eaed;
	box-shadow: 0 8px 24px rgba(23, 50, 77, 0.04);
}

.site-header__inner {
	min-height: 78px;
}

.site-header__actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.site-logo-mark {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: #f1f5f2;
	color: var(--ccz-primary);
	box-shadow: inset 0 0 0 1px #dfe8e2;
}

.site-logo-text strong {
	color: var(--ccz-contrast);
	letter-spacing: 0.01em;
}

.site-logo-text span {
	color: var(--ccz-muted);
}

.primary-nav a {
	color: #25394b;
	font-size: 0.92rem;
	font-weight: 750;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.menu-toggle__bars {
	position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.menu-toggle__bars::before {
	top: -6px;
}

.menu-toggle__bars::after {
	top: 6px;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
	color: var(--ccz-primary);
	box-shadow: inset 0 -2px 0 var(--ccz-primary);
}

.primary-nav li.ccz-menu-current > a,
.primary-nav li.ccz-menu-current-ancestor > a {
	background: #eef7f0;
	color: var(--ccz-primary);
	box-shadow: inset 0 0 0 1px rgba(42, 105, 50, 0.14);
}

.primary-nav .sub-menu {
	border-radius: 10px;
	box-shadow: 0 18px 42px rgba(23, 50, 77, 0.12);
}

@media (min-width: 901px) {
	.site-header__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: clamp(28px, 4vw, 64px);
		min-height: 92px;
	}

	.site-branding {
		flex: 0 0 auto;
	}

	.site-header__actions {
		display: none;
	}

	.site-nav-row {
		display: none;
	}

	.primary-nav {
		flex: 1 1 auto;
		justify-content: flex-end;
		width: auto;
		min-width: 0;
	}

	.primary-nav > ul {
		justify-content: flex-end;
		gap: 4px;
		width: auto;
	}

	.primary-nav > ul > li > a {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		min-height: 42px;
		padding: 10px 14px;
		border-radius: 12px;
		color: #24384a;
		font-size: 0.9rem;
		font-weight: 800;
		line-height: 1.1;
		box-shadow: none;
		transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
	}

	.primary-nav > ul > li > a:hover,
	.primary-nav > ul > li > a:focus-visible {
		background: #f2f7f4;
		color: var(--ccz-primary);
		box-shadow: inset 0 0 0 1px rgba(42, 105, 50, 0.12);
	}

	.primary-nav > ul > li.ccz-menu-current > a,
	.primary-nav > ul > li.ccz-menu-current-ancestor > a {
		background: #eef7f0;
		color: var(--ccz-primary);
		box-shadow: inset 0 0 0 1px rgba(42, 105, 50, 0.18);
	}

	.primary-nav > ul > .menu-item-has-children > a::after {
		content: "";
		display: inline-block;
		width: 7px;
		height: 7px;
		margin-top: -3px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg);
		opacity: 0.72;
	}

	.primary-nav .sub-menu {
		top: 100%;
		min-width: 250px;
		margin-top: 8px;
		padding: 8px;
		border: 1px solid #dde8ed;
		border-radius: 14px;
		box-shadow: 0 20px 48px rgba(23, 50, 77, 0.14);
	}

	.primary-nav .sub-menu::before {
		content: "";
		position: absolute;
		left: 18px;
		top: -6px;
		width: 12px;
		height: 12px;
		background: #ffffff;
		border-left: 1px solid #dde8ed;
		border-top: 1px solid #dde8ed;
		transform: rotate(45deg);
	}

	.primary-nav .menu-item-has-children::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		height: 12px;
	}

	.primary-nav .sub-menu a {
		position: relative;
		z-index: 1;
		padding: 11px 12px;
		border-radius: 10px;
		color: #24384a;
		font-size: 0.9rem;
		font-weight: 750;
		box-shadow: none;
	}

	.primary-nav .sub-menu a:hover,
	.primary-nav .sub-menu a:focus-visible {
		background: #f2f7f4;
		color: var(--ccz-primary);
		box-shadow: none;
	}
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(520px, 58vw, 680px);
	padding: clamp(82px, 9vw, 132px) 0;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
}

.hero__background {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero--has-background {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
}

.hero--has-background::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
	pointer-events: none;
}

.hero::before {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: #e3eaed;
}

.hero__grid {
	display: block;
	max-width: 850px;
	text-align: center;
}

.hero h1 {
	margin-inline: auto;
	max-width: 760px;
	color: var(--ccz-contrast);
	font-size: clamp(2.25rem, 5vw, 3.65rem);
	letter-spacing: -0.035em;
}

.hero__content p {
	margin-inline: auto;
	max-width: 640px;
	color: var(--ccz-muted);
}

.hero__actions {
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

.button {
	min-height: 48px;
	border-radius: 8px;
	font-weight: 850;
}

.button--primary {
	background: var(--ccz-primary);
}

.button--ghost {
	border: 1px solid #c9d5d9;
	background: #ffffff;
	color: var(--ccz-contrast);
}

.hero__media {
	min-height: 0;
}

.hero__photo {
	min-height: 390px;
	border: 1px solid #dfe7e9;
	border-radius: 18px;
	background-color: #e8eeef;
	box-shadow: 0 20px 46px rgba(23, 50, 77, 0.12);
}

.hero__photo::before {
	min-height: 390px;
	color: var(--ccz-muted);
	font-size: 1rem;
	font-weight: 750;
}

.hero__sun,
.hero__cloud,
.hero__heart {
	display: none;
}

.section {
	padding: clamp(54px, 7vw, 88px) 0;
}

.section--soft,
.parent-zone {
	background: #f2f6f8;
}

.section-heading {
	margin-bottom: 30px;
}

.eyebrow {
	color: var(--ccz-primary);
	font-size: 0.78rem;
	letter-spacing: 0.11em;
}

h2 {
	color: var(--ccz-contrast);
	font-size: clamp(1.85rem, 3.2vw, 2.75rem);
	letter-spacing: -0.025em;
}

.highlight-grid {
	gap: 0;
	overflow: hidden;
	border: 1px solid var(--ccz-border);
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 16px 36px rgba(23, 50, 77, 0.06);
}

.highlight-card {
	border: 0;
	border-right: 1px solid var(--ccz-border);
	border-radius: 0;
	box-shadow: none;
}

.highlight-card:last-child {
	border-right: 0;
}

.highlight-card:first-child {
	border-radius: 16px 0 0 16px;
}

.highlight-card:last-child {
	border-radius: 0 16px 16px 0;
}

.highlight-card span,
.parent-card span {
	width: 40px;
	height: 40px;
	margin-bottom: 14px;
	border-radius: 10px;
	background: #edf5f1;
	color: var(--ccz-primary);
	font-size: 0.9rem;
}

.highlight-card h2 {
	color: var(--ccz-contrast);
	font-size: 1rem;
}

.two-columns {
	align-items: start;
}

.about-visual {
	min-height: 340px;
	border: 1px solid #dfe7e9;
	border-radius: 16px;
	background-color: #e8eeef;
	box-shadow: none;
}

img.about-visual.has-custom-image {
	display: block;
	width: 100%;
	min-height: 340px;
	object-fit: cover;
}

.feature-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.feature-grid li {
	min-height: 0;
	padding: 20px 22px;
	border: 1px solid var(--ccz-border);
	border-radius: 12px;
	box-shadow: none;
}

.feature-grid span {
	width: 26px;
	height: 3px;
	border-radius: 999px;
	background: var(--ccz-primary);
	color: transparent;
}

.parent-grid {
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--ccz-border);
	border-radius: 16px;
	background: var(--ccz-border);
}

.parent-card {
	align-items: flex-start;
	min-height: 0;
	padding: 24px;
	border-radius: 0;
	background: #ffffff;
	text-align: left;
}

.parent-card:hover {
	box-shadow: none;
	background: #f8faf8;
}

.parent-card em,
.text-link {
	color: var(--ccz-primary);
	font-weight: 850;
}

.news-card {
	border-color: var(--ccz-border);
	border-radius: 14px;
	box-shadow: 0 14px 32px rgba(23, 50, 77, 0.07);
}

.news-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(23, 50, 77, 0.1);
}

.news-card__image {
	min-height: 150px;
	background:
		linear-gradient(135deg, #e9efea 0%, #f5f1e8 100%);
}

.news-card__body {
	padding: 22px;
}

.news-card__meta {
	color: #63707a;
	font-size: 0.76rem;
	letter-spacing: 0.08em;
}

.news-card h3 button {
	color: var(--ccz-contrast);
}

.news-card__more {
	border-radius: 8px;
	background: #edf5f1;
}

.ccz-gallery-grid {
	gap: 14px;
}

.ccz-gallery-item {
	border: 1px solid var(--ccz-border);
	border-radius: 12px;
	box-shadow: none;
}

.virtual-hero {
	padding: clamp(46px, 6vw, 76px) 0;
	background: #ffffff;
	border-bottom: 1px solid var(--ccz-border);
}

.virtual-hero h1 {
	color: var(--ccz-contrast);
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.virtual-hero p:not(.eyebrow) {
	color: #425565;
}

.virtual-hero__card {
	border: 1px solid #dfe7e9;
	border-radius: 16px;
	box-shadow: none;
}

.virtual-content-section {
	background: var(--ccz-bg);
}

.virtual-content-card,
.virtual-content-card--wide {
	width: 100%;
	max-width: none;
}

.virtual-content-card--contact .virtual-contact-layout {
	width: 100%;
}

.virtual-content-section--gallery {
	padding-top: clamp(28px, 4vw, 44px);
}

.virtual-content-card .wfg-gallery-tree,
.virtual-content-card--wide .wfg-gallery-tree {
	margin-top: 0;
	width: 100%;
}

.virtual-content-card .wfg-folder-cards-section--no-heading,
.virtual-content-card--wide .wfg-folder-cards-section--no-heading {
	margin-top: 0;
}

@media (min-width: 901px) {
	.virtual-content-card .wfg-folder-cards-section--group .wfg-folder-cards,
	.virtual-content-card--wide .wfg-folder-cards-section--group .wfg-folder-cards {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

.virtual-content-card .wfg-folder-card__media,
.virtual-content-card--wide .wfg-folder-card__media {
	aspect-ratio: 4 / 3;
}

.virtual-content-card p {
	color: #344755;
}

.ccz-sitemap__section,
.virtual-contact-box {
	border-color: var(--ccz-border);
	border-radius: 14px;
	background: #ffffff;
	box-shadow: none;
}

.ccz-sitemap a {
	color: var(--ccz-contrast);
	font-weight: 750;
}

.news-modal__backdrop {
	background: rgba(23, 50, 77, 0.58);
}

.news-modal__dialog {
	border-radius: 16px;
	box-shadow: 0 28px 70px rgba(23, 50, 77, 0.28);
}

.news-modal__close {
	border-radius: 999px;
}

body.ccz-high-contrast .site-footer {
	background: #000000;
	color: #ffffff;
	border-top-color: #ffffff;
}

body.ccz-high-contrast .site-footer a,
body.ccz-high-contrast .site-footer__title,
body.ccz-high-contrast .site-footer__subtitle,
body.ccz-high-contrast .site-footer__powered span {
	color: #ffffff;
}

body.ccz-high-contrast .site-footer__powered img {
	filter: brightness(0) invert(1);
}

body.ccz-dark-contrast .site-footer {
	background: #0d2228;
	color: #f4fbff;
	border-top-color: var(--ccz-primary);
}

body.ccz-dark-contrast .site-footer a,
body.ccz-dark-contrast .site-footer__title,
body.ccz-dark-contrast .site-footer__subtitle,
body.ccz-dark-contrast .site-footer__powered span {
	color: #f4fbff;
}

body.ccz-dark-contrast .site-footer__powered img {
	filter: brightness(0) invert(1);
}

body.ccz-dark-contrast .top-accessibility {
	border-color: rgba(255, 255, 255, 0.12);
	background:
		linear-gradient(135deg, rgba(7, 20, 24, 0.96), rgba(16, 37, 43, 0.96)),
		linear-gradient(90deg, rgba(124, 224, 208, 0.14), rgba(255, 216, 90, 0.12));
	color: #ffffff;
}

body.ccz-dark-contrast .site-main,
body.ccz-dark-contrast .site-header {
	background: var(--ccz-bg);
	color: var(--ccz-text);
}

body.ccz-dark-contrast h1,
body.ccz-dark-contrast h2,
body.ccz-dark-contrast h3,
body.ccz-dark-contrast .hero h1,
body.ccz-dark-contrast .virtual-hero h1,
body.ccz-dark-contrast .site-logo-text strong,
body.ccz-dark-contrast .primary-nav a,
body.ccz-dark-contrast .news-card h3 button,
body.ccz-dark-contrast .ccz-sitemap a,
body.ccz-dark-contrast .button--ghost {
	color: #ffffff;
}

body.ccz-dark-contrast .virtual-content-card p,
body.ccz-dark-contrast .hero__content p,
body.ccz-dark-contrast .virtual-hero p:not(.eyebrow),
body.ccz-dark-contrast .news-card p,
body.ccz-dark-contrast .highlight-card p,
body.ccz-dark-contrast .parent-card small,
body.ccz-dark-contrast .feature-grid li,
body.ccz-dark-contrast .section-heading .text-link {
	color: var(--ccz-muted);
}

body.ccz-dark-contrast .highlights,
body.ccz-dark-contrast .parent-zone,
body.ccz-dark-contrast .section--soft {
	background: var(--ccz-bg);
}

body.ccz-dark-contrast .highlight-card,
body.ccz-dark-contrast .highlight-card h2,
body.ccz-dark-contrast .parent-card,
body.ccz-dark-contrast .parent-card strong {
	color: var(--ccz-text);
}

body.ccz-dark-contrast .parent-card em,
body.ccz-dark-contrast .text-link,
body.ccz-dark-contrast .eyebrow {
	color: var(--ccz-primary);
}

body.ccz-dark-contrast .parent-card:hover,
body.ccz-dark-contrast .highlight-card:hover {
	background: rgba(255, 255, 255, 0.06);
}

body.ccz-dark-contrast .hero--has-background {
	background:
		linear-gradient(90deg, rgba(7, 20, 24, 0.9), rgba(7, 20, 24, 0.78)),
		var(--ccz-hero-bg) center / cover no-repeat;
}

body.ccz-dark-contrast .ccz-sitemap__section,
body.ccz-dark-contrast .virtual-contact-box,
body.ccz-dark-contrast .virtual-contact-map,
body.ccz-dark-contrast .news-card,
body.ccz-dark-contrast .parent-card,
body.ccz-dark-contrast .feature-grid li,
body.ccz-dark-contrast .highlight-grid,
body.ccz-dark-contrast .highlight-card {
	background: var(--ccz-surface);
	border-color: var(--ccz-border);
}

body.ccz-dark-contrast .button--ghost,
body.ccz-dark-contrast .a11y-sitemap-link,
body.ccz-dark-contrast .header-bip-link {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

body.ccz-dark-contrast .site-header__actions,
body.ccz-dark-contrast .primary-nav > ul,
body.ccz-dark-contrast .primary-nav.is-open .sub-menu {
	border-color: var(--ccz-border);
	background: var(--ccz-surface);
}

body.ccz-dark-contrast .menu-toggle {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

body.ccz-dark-contrast .a11y-group {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
}

body.ccz-dark-contrast .a11y-group > span {
	color: #dcebef;
}

body.ccz-dark-contrast .a11y-control {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

body.ccz-dark-contrast .a11y-control[aria-pressed="true"] {
	background: var(--ccz-accent);
	color: #071418;
}

body.ccz-dark-contrast .virtual-hero,
body.ccz-dark-contrast .page-hero {
	background: var(--ccz-surface);
	border-bottom: 1px solid var(--ccz-border);
}

body.ccz-dark-contrast .virtual-hero h1,
body.ccz-dark-contrast .virtual-content-card .entry-content h1,
body.ccz-dark-contrast .virtual-content-card .entry-content h2,
body.ccz-dark-contrast .virtual-content-card .entry-content h3,
body.ccz-dark-contrast .virtual-content-card .entry-content h4,
body.ccz-dark-contrast .ccz-sitemap__section h2 {
	color: var(--ccz-text);
}

body.ccz-dark-contrast .virtual-hero p:not(.eyebrow),
body.ccz-dark-contrast .virtual-hero__intro,
body.ccz-dark-contrast .virtual-content-card .entry-content,
body.ccz-dark-contrast .virtual-content-card .entry-content p,
body.ccz-dark-contrast .virtual-content-card .entry-content li,
body.ccz-dark-contrast .virtual-content-section,
body.ccz-dark-contrast .section {
	background: var(--ccz-bg);
	color: var(--ccz-text);
}

body.ccz-dark-contrast .virtual-content-card .entry-content a,
body.ccz-dark-contrast .virtual-contact-item__link {
	color: var(--ccz-primary);
}

body.ccz-dark-contrast .virtual-hero__card {
	border-color: var(--ccz-border);
	background: rgba(255, 255, 255, 0.04);
}

body.ccz-dark-contrast .wfg-folder-cards-section h2,
body.ccz-dark-contrast .wfg-folder-card__body strong {
	color: var(--ccz-text);
}

body.ccz-dark-contrast .wfg-folder-card__body small,
body.ccz-dark-contrast .wfg-folder-card__stat {
	color: var(--ccz-muted);
}

body.ccz-dark-contrast .wfg-folder-card {
	background: var(--ccz-surface);
	border-color: var(--ccz-border);
}

body.ccz-high-contrast .a11y-group {
	border-color: #ffffff;
	background: #000000;
	box-shadow: none;
}

body.ccz-high-contrast .a11y-group > span,
body.ccz-high-contrast .a11y-control {
	color: #ffffff;
}

body.ccz-high-contrast .a11y-control {
	border-color: #ffffff;
	background: #000000;
	box-shadow: none;
}

body.ccz-high-contrast .a11y-control[aria-pressed="true"] {
	background: #ffff00;
	color: #000000;
}

body.ccz-high-contrast .a11y-sitemap-link {
	border: 2px solid #ffffff;
	background: #000000;
	color: #ffffff;
}

body.ccz-high-contrast .hero,
body.ccz-high-contrast .section--soft,
body.ccz-high-contrast .parent-zone {
	background: #ffffff;
}

body.ccz-high-contrast h1,
body.ccz-high-contrast h2,
body.ccz-high-contrast h3,
body.ccz-high-contrast .hero h1,
body.ccz-high-contrast .virtual-hero h1,
body.ccz-high-contrast .hero__content p,
body.ccz-high-contrast .virtual-content-card p,
body.ccz-high-contrast .virtual-hero p:not(.eyebrow),
body.ccz-high-contrast .highlight-card p,
body.ccz-high-contrast .parent-card small {
	color: #000000;
}

body.ccz-high-contrast .highlights,
body.ccz-high-contrast .parent-zone,
body.ccz-high-contrast .section--soft {
	background: #ffffff;
}

body.ccz-high-contrast .highlight-card,
body.ccz-high-contrast .parent-card,
body.ccz-high-contrast .parent-card strong {
	color: #000000;
	background: #ffffff;
}

body.ccz-high-contrast .parent-card em,
body.ccz-high-contrast .text-link,
body.ccz-high-contrast .eyebrow {
	color: #000000;
	font-weight: 900;
}

body.ccz-high-contrast .highlight-card h2 {
	color: #000000;
}

body.ccz-high-contrast .virtual-hero,
body.ccz-high-contrast .virtual-content-section,
body.ccz-high-contrast .virtual-content-card,
body.ccz-high-contrast .page-hero,
body.ccz-high-contrast .section,
body.ccz-high-contrast .section--soft {
	background: #ffffff;
	color: #000000;
}

body.ccz-high-contrast .virtual-hero h1,
body.ccz-high-contrast .virtual-hero p:not(.eyebrow),
body.ccz-high-contrast .virtual-hero__intro,
body.ccz-high-contrast .virtual-content-card .entry-content,
body.ccz-high-contrast .virtual-content-card .entry-content h1,
body.ccz-high-contrast .virtual-content-card .entry-content h2,
body.ccz-high-contrast .virtual-content-card .entry-content h3,
body.ccz-high-contrast .virtual-content-card .entry-content h4,
body.ccz-high-contrast .virtual-content-card .entry-content p,
body.ccz-high-contrast .virtual-content-card .entry-content li,
body.ccz-high-contrast .ccz-sitemap__section,
body.ccz-high-contrast .ccz-sitemap__section h2,
body.ccz-high-contrast .ccz-sitemap a,
body.ccz-high-contrast .virtual-contact-item__label,
body.ccz-high-contrast .virtual-contact-item__value,
body.ccz-high-contrast .virtual-contact-item__value p,
body.ccz-high-contrast .wfg-folder-cards-section h2,
body.ccz-high-contrast .wfg-folder-card__body strong,
body.ccz-high-contrast .wfg-folder-card__stat {
	color: #000000;
}

body.ccz-high-contrast .wfg-folder-card {
	background: #ffffff;
	border: 2px solid #000000;
}

body.ccz-high-contrast .virtual-hero__card,
body.ccz-high-contrast .virtual-contact-box,
body.ccz-high-contrast .virtual-contact-map,
body.ccz-high-contrast .ccz-sitemap__section {
	background: #ffffff;
	border: 2px solid #000000;
}

body.ccz-high-contrast .site-logo-text strong,
body.ccz-high-contrast .primary-nav a,
body.ccz-high-contrast .news-card h3 button,
body.ccz-high-contrast .ccz-sitemap a,
body.ccz-high-contrast .button--ghost {
	color: #000000;
}

body.ccz-high-contrast .hero__photo,
body.ccz-high-contrast .about-visual,
body.ccz-high-contrast .news-card__image {
	background: #ffffff;
	border: 3px solid #000000;
}

body.ccz-high-contrast .news-card,
body.ccz-high-contrast .news-modal__dialog {
	border: 3px solid #000000;
	box-shadow: none;
}

body.ccz-high-contrast .news-card__more {
	background: #000000;
	color: #ffffff;
}

body.ccz-high-contrast .button--primary,
body.ccz-high-contrast .header-bip-link,
body.ccz-high-contrast .a11y-sitemap-link {
	background: #000000;
	color: #ffffff;
}

body.ccz-high-contrast .site-header__actions,
body.ccz-high-contrast .primary-nav > ul,
body.ccz-high-contrast .primary-nav.is-open .sub-menu {
	border-color: #000000;
	background: #ffffff;
	box-shadow: none;
}

body.ccz-high-contrast .menu-toggle {
	border-color: #000000;
	background: #ffffff;
	color: #000000;
}

body.ccz-high-contrast .menu-toggle[aria-expanded="true"] {
	background: #000000;
	color: #ffffff;
}

body.ccz-high-contrast .button--ghost {
	border-color: #000000;
	background: #ffffff;
}

body.ccz-high-contrast .news-modal__backdrop {
	background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1080px) {
	.highlight-grid,
	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.parent-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

}

@media (max-width: 760px) {
	.site-header__inner,
	.section-heading--split {
		align-items: stretch;
		flex-direction: column;
	}

	.top-accessibility {
		font-size: 0.78rem;
	}

	.top-accessibility__inner {
		display: grid;
		gap: 8px;
		min-height: 0;
		padding-block: 10px;
	}

	.top-accessibility__actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.a11y-group--layout {
		display: none;
	}

	.a11y-group {
		width: 100%;
		min-height: 42px;
		padding: 4px;
		border-radius: 12px;
		justify-content: space-between;
	}

	.a11y-group > span {
		min-width: 0;
		padding-left: 8px;
		font-size: 0.78rem;
	}

	.a11y-control {
		width: 32px;
		height: 32px;
	}

	.a11y-sitemap-link {
		justify-content: center;
		width: auto;
		min-height: 42px;
		padding: 8px 12px;
		font-size: 0.82rem;
	}

	.site-header__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.site-header__actions {
		justify-self: end;
		gap: 8px;
	}

	.header-bip-link {
		width: auto;
		min-height: 44px;
		padding: 9px 14px;
		font-size: 0.9rem;
	}

	.site-nav-row {
		padding-bottom: 14px;
	}

	.hero__media {
		min-height: 280px;
	}

	.hero__photo,
	.hero__photo::before {
		min-height: 280px;
	}

	.highlight-grid,
	.parent-grid,
	.news-grid {
		grid-template-columns: 1fr;
	}

	.news-modal {
		align-items: stretch;
		justify-content: stretch;
		padding: 0;
	}

	.news-modal__frame {
		width: 100%;
		height: 100%;
		max-height: none;
	}

	.news-modal__dialog {
		height: 100%;
		max-height: none;
		border-radius: 0;
	}

	.news-modal__toolbar {
		position: sticky;
		top: 0;
		z-index: 2;
		padding: max(10px, env(safe-area-inset-top)) 14px 10px;
		border-bottom: 1px solid #e7eef2;
	}

	.news-modal__close {
		min-height: 44px;
		padding: 10px 16px;
		font-size: 0.92rem;
	}

	.news-modal__content {
		padding: 18px 20px calc(24px + env(safe-area-inset-bottom, 0px));
	}

	.news-modal__content h2 {
		font-size: 1.45rem;
	}

	.news-modal__content p {
		font-size: 1rem;
		line-height: 1.65;
	}

	.news-modal__image img {
		max-height: 200px;
	}

	.pdf-modal__toolbar {
		align-items: flex-start;
		flex-direction: column;
		padding: max(10px, env(safe-area-inset-top)) 14px 10px;
	}

	.pdf-modal__actions {
		width: 100%;
		justify-content: space-between;
	}

	.pdf-modal__external,
	.pdf-modal .news-modal__close {
		min-height: 44px;
	}

	.pdf-modal__viewer {
		min-height: calc(100dvh - 150px);
		height: calc(100dvh - 150px);
	}

	.page-doc-links--duo {
		grid-template-columns: 1fr;
	}

	.page-doc-link,
	.page-pdf-link {
		min-height: 84px;
		padding: 16px 18px;
	}

	.page-doc-link__actions {
		width: 100%;
	}

	.page-doc-action {
		flex: 1 1 auto;
		min-height: 40px;
	}

	.page-doc-link__badge,
	.page-pdf-link__badge {
		align-self: flex-start;
	}

	.site-footer {
		padding-block: 16px 14px;
	}

	.site-footer__bar {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 12px;
		text-align: center;
	}

	.site-footer__legal {
		width: 100%;
	}

	.site-footer__title {
		font-size: 0.94rem;
	}

	.site-footer__subtitle {
		font-size: 0.86rem;
		line-height: 1.45;
	}

	.site-footer__powered {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin: 0;
		padding-top: 12px;
		border-top: 1px solid rgba(255, 255, 255, 0.16);
	}

	.site-footer__powered img {
		width: 112px;
	}
}

@media (max-width: 900px) {
	.site-header {
		box-shadow: 0 8px 22px rgba(23, 50, 77, 0.06);
	}

	.site-header__inner {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		column-gap: 14px;
		row-gap: 0;
		padding-block: 12px;
	}

	.site-branding {
		grid-column: 1 / 2;
		grid-row: 1;
		min-width: 0;
	}

	.site-logo-image-link {
		width: var(--ccz-logo-mobile, 148px);
		max-width: 100%;
	}

	.site-logo-image {
		max-height: 64px;
	}

	.site-header__actions {
		grid-column: 2 / 3;
		grid-row: 1;
		justify-self: end;
		gap: 8px;
		padding: 4px;
		border: 1px solid var(--ccz-border);
		border-radius: 14px;
		background: #ffffff;
		box-shadow: 0 10px 24px rgba(23, 50, 77, 0.06);
	}

	.menu-toggle {
		width: 42px;
		height: 42px;
		border: 1px solid #cfdade;
		border-radius: 10px;
		background: #f7faf8;
		color: var(--ccz-primary);
	}

	.menu-toggle[aria-expanded="true"] {
		background: var(--ccz-primary);
		color: #ffffff;
	}

	.header-bip-link {
		min-height: 42px;
		padding: 8px 12px;
		border-radius: 10px;
		font-size: 0.84rem;
		line-height: 1.15;
	}

	.site-nav-row {
		padding-bottom: 12px;
	}

	.primary-nav {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
	}

	.primary-nav.is-open {
		margin-top: 12px;
	}

	.primary-nav > ul {
		display: none;
		width: 100%;
		margin: 0;
		padding: 10px;
		border: 1px solid var(--ccz-border);
		border-radius: 16px;
		background: #ffffff;
		box-shadow: 0 18px 42px rgba(23, 50, 77, 0.1);
	}

	.primary-nav.is-open > ul {
		display: grid;
		gap: 4px;
	}

	.primary-nav > ul > li > a {
		display: flex;
		justify-content: space-between;
		padding: 12px 14px;
		border-radius: 10px;
		background: transparent;
		color: var(--ccz-contrast);
		font-size: 0.95rem;
		box-shadow: none;
	}

	.primary-nav > ul > li > a:hover,
	.primary-nav > ul > li > a:focus-visible {
		background: #f2f6f3;
		color: var(--ccz-primary);
		box-shadow: none;
	}

	.primary-nav.is-open .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		gap: 4px;
		margin: 2px 0 8px;
		padding: 8px 8px 8px 18px;
		border: 0;
		border-left: 2px solid #dfe8e2;
		border-radius: 0;
		background: #fbfcfb;
		box-shadow: none;
	}

	.primary-nav.is-open .sub-menu a {
		padding: 9px 10px;
		border-radius: 8px;
		background: transparent;
		color: #425565;
		font-size: 0.9rem;
		white-space: normal;
	}

	.primary-nav.is-open .sub-menu a:hover,
	.primary-nav.is-open .sub-menu a:focus-visible {
		background: #eef5f1;
		color: var(--ccz-primary);
		box-shadow: none;
	}
}

@media (max-width: 1080px) {
	.highlight-card:first-child {
		border-radius: 16px 0 0 0;
	}

	.highlight-card:nth-child(2) {
		border-right: 0;
		border-radius: 0 16px 0 0;
	}

	.highlight-card:nth-child(-n+2) {
		border-bottom: 1px solid var(--ccz-border);
	}

	.highlight-card:nth-child(3) {
		border-radius: 0 0 0 16px;
	}

	.highlight-card:last-child {
		border-radius: 0 0 16px 0;
	}
}

@media (max-width: 760px) {
	.hero {
		padding-top: 42px;
	}

	.hero__grid {
		grid-template-columns: 1fr;
	}

	.highlight-grid,
	.parent-grid {
		border-radius: 12px;
	}

	.highlight-card {
		border-radius: 0;
		border-right: 0;
		border-bottom: 1px solid var(--ccz-border);
	}

	.highlight-card:first-child {
		border-radius: 12px 12px 0 0;
	}

	.highlight-card:last-child {
		border-radius: 0 0 12px 12px;
		border-bottom: 0;
	}

	.age-groups__grid {
		grid-template-columns: 1fr;
	}

	.age-group-card {
		padding: 18px;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.virtual-content-card .wfg-folder-cards-section--group .wfg-folder-cards,
	.virtual-content-card--wide .wfg-folder-cards-section--group .wfg-folder-cards,
	.virtual-content-card .wfg-folder-cards-section--subfolder .wfg-folder-cards,
	.virtual-content-card--wide .wfg-folder-cards-section--subfolder .wfg-folder-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.virtual-content-card .wfg-folder-cards-section--group .wfg-folder-card--featured,
	.virtual-content-card--wide .wfg-folder-cards-section--group .wfg-folder-card--featured {
		grid-column: 1 / -1;
	}
}

html.ccz-cookie-accepted .ccz-cookie-notice {
	display: none;
}

.ccz-cookie-notice {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10050;
	padding: clamp(12px, 2.5vw, 20px);
	pointer-events: none;
}

.ccz-cookie-notice__panel {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: clamp(14px, 2.5vw, 22px);
	align-items: center;
	width: min(100%, 1120px);
	margin: 0 auto;
	padding: clamp(16px, 2.8vw, 22px) clamp(18px, 3vw, 26px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;
	background:
		radial-gradient(circle at 12% 18%, rgba(246, 200, 68, 0.16), transparent 30%),
		radial-gradient(circle at 88% 12%, rgba(47, 125, 50, 0.18), transparent 32%),
		linear-gradient(135deg, rgba(10, 49, 87, 0.97) 0%, rgba(16, 47, 61, 0.97) 54%, rgba(9, 35, 41, 0.97) 100%);
	box-shadow: 0 24px 70px rgba(4, 20, 31, 0.28);
	color: #ffffff;
	backdrop-filter: blur(12px);
	pointer-events: auto;
}

.ccz-cookie-notice__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: linear-gradient(135deg, #f6a623 0%, #f6c844 100%);
	color: #1f2a37;
	box-shadow: 0 12px 28px rgba(6, 43, 99, 0.18);
}

.ccz-cookie-notice__icon svg {
	width: 28px;
	height: 28px;
}

.ccz-cookie-notice__title {
	margin: 0 0 6px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.ccz-cookie-notice__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.96rem;
	line-height: 1.55;
}

.ccz-cookie-notice__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.ccz-cookie-notice__more.button--ghost {
	min-height: 46px;
	padding-inline: 18px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 0.92rem;
}

.ccz-cookie-notice__more.button--ghost:hover,
.ccz-cookie-notice__more.button--ghost:focus-visible {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
}

.ccz-cookie-notice__accept {
	min-height: 46px;
	padding-inline: 22px;
	border: 0;
	font-size: 0.94rem;
	cursor: pointer;
}

@media (max-width: 860px) {
	.ccz-cookie-notice__panel {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.ccz-cookie-notice__actions {
		grid-column: 1 / -1;
		justify-content: stretch;
	}

	.ccz-cookie-notice__actions .button {
		flex: 1 1 180px;
	}
}

body.ccz-dark-contrast .ccz-cookie-notice__panel,
body.ccz-high-contrast .ccz-cookie-notice__panel {
	border-color: var(--ccz-border);
	background: var(--ccz-surface);
	color: var(--ccz-text);
	box-shadow: var(--ccz-shadow);
}

body.ccz-dark-contrast .ccz-cookie-notice__title,
body.ccz-high-contrast .ccz-cookie-notice__title {
	color: var(--ccz-text);
}

body.ccz-dark-contrast .ccz-cookie-notice__text,
body.ccz-high-contrast .ccz-cookie-notice__text {
	color: var(--ccz-text);
}

body.ccz-dark-contrast .ccz-cookie-notice__more.button--ghost,
body.ccz-high-contrast .ccz-cookie-notice__more.button--ghost {
	border-color: var(--ccz-border);
	background: transparent;
	color: var(--ccz-text);
}
