/* =========================
   ΚΟΙΝΟΙ ΤΙΤΛΟΙ SECTION
========================= */

.cfcc-header h2,
.cpfc-header h2 {
	margin: 0;
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	line-height: 1.05;
	color: #17345a;
}

/* =========================
   CFCC
========================= */

.cfcc-section {
	--cfcc-section-bg: #dceaff;
	--cfcc-section-text: #17345a;
	--cfcc-accent: #5c8fd8;
	--cfcc-card-bg: #e7f1ff;
	--cfcc-button-primary: #7db3ff;
	--cfcc-button-secondary: #d7e6fb;
	position: relative;
	width: min(100%, 1360px);
	max-width: calc(100% - 16px);
	padding: 18px 6px;
	border-radius: 0;
	background: transparent;
	color: var(--cfcc-section-text);
	overflow: visible;
	box-shadow: none;
	margin: 0 auto;
}

.cfcc-header,
.cfcc-nav,
.cfcc-card__actions {
	display: flex;
	align-items: center;
}

.cfcc-header,
.cfcc-card__actions {
	justify-content: space-between;
}

.cfcc-header {
	gap: 18px;
	margin-bottom: 14px;
	padding-inline: 4px;
}

.cfcc-eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--cfcc-accent);
}

.cfcc-card h3 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
}

.cfcc-title-link {
	color: inherit;
	text-decoration: none;
}

.cfcc-title-link:hover,
.cfcc-title-link:focus-visible {
	opacity: 0.84;
}

.cfcc-nav {
	gap: 10px;
	flex-wrap: wrap;
}

.cfcc-nav__button,
.cfcc-button,
.cfcc-modal__close {
	border: 0;
	cursor: pointer;
}

.cfcc-nav__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: #17345a;
	box-shadow: 0 10px 24px rgba(86, 127, 181, 0.14);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cfcc-nav__button:hover,
.cfcc-nav__button:focus-visible {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 16px 30px rgba(86, 127, 181, 0.16);
}

.cfcc-nav__button:focus-visible {
	outline: 2px solid rgba(92, 143, 216, 0.32);
	outline-offset: 3px;
}

.cfcc-track {
	display: grid;
	grid-auto-columns: minmax(250px, 21vw);
	gap: 18px;
	overflow-x: auto;
	padding: 4px 4px 10px;
	grid-auto-flow: column;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.cfcc-track.is-animating {
	scroll-snap-type: none;
}

.cfcc-track::-webkit-scrollbar {
	display: none;
}

.cfcc-track > .cfcc-card:only-child {
	inline-size: min(100%, 320px);
}

.cfcc-card {
	perspective: 1600px;
	min-height: 440px;
	scroll-snap-align: start;
}

.cfcc-card__inner {
	position: relative;
	width: 100%;
	height: 100%;
	isolation: isolate;
}

.cfcc-card__face {
	position: absolute;
	inset: 0;
	border-radius: 22px;
	overflow: hidden;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	contain: layout paint;
	transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease;
	will-change: transform, opacity;
}

.cfcc-card__face--front,
.cfcc-card__face--back {
	background: var(--cfcc-card-bg);
	border: 1px solid rgba(125, 179, 255, 0.18);
	box-shadow: 0 16px 34px rgba(58, 102, 162, 0.14);
}

.cfcc-card__poster,
.cfcc-card__poster img,
.cfcc-card__overlay,
.cfcc-card__backdrop {
	position: absolute;
	inset: 0;
}

.cfcc-card__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}

.cfcc-card__overlay,
.cfcc-card__backdrop {
	background: linear-gradient(180deg, rgba(18, 58, 104, 0.08), rgba(14, 48, 88, 0.82));
}

.cfcc-card__content,
.cfcc-card__copy {
	position: relative;
	z-index: 2;
	height: 100%;
	padding: 17px;
	display: flex;
	flex-direction: column;
	color: #f8fbff;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateZ(2px);
}

.cfcc-card__content {
	justify-content: flex-end;
}

.cfcc-card__badge {
	align-self: flex-start;
	margin-bottom: auto;
	padding: 7px 11px;
	border: 1px solid color-mix(in srgb, var(--cfcc-accent) 42%, transparent);
	border-radius: 999px;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--cfcc-accent) 62%, #ffffff);
	background: rgba(16, 33, 58, 0.34);
}

.cfcc-card__content h3,
.cfcc-card__copy h3 {
	font-size: clamp(1.28rem, 1.8vw, 1.7rem);
	line-height: 1.06;
	letter-spacing: -0.03em;
	font-weight: 700;
}

.cfcc-card__content h3 {
	text-shadow:
		0 4px 14px rgba(7, 20, 38, 0.34),
		0 1px 2px rgba(7, 20, 38, 0.42);
}

.cfcc-card__copy h3 {
	color: #ffffff;
	text-shadow:
		0 0 1px rgba(8, 21, 40, 0.55),
		0 2px 10px rgba(8, 21, 40, 0.28);
}

.cfcc-card__content p,
.cfcc-card__copy p {
	margin: 8px 0 0;
	color: rgba(248, 251, 255, 0.88);
	line-height: 1.45;
	font-size: 0.94rem;
}

.cfcc-card__face--front {
	transform: rotateY(0deg);
	opacity: 1;
}

.cfcc-card__face--back {
	background-image: none;
	transform: rotateY(180deg);
	opacity: 0;
	pointer-events: none;
}

.cfcc-card:hover .cfcc-card__face--front,
.cfcc-card:focus-within .cfcc-card__face--front,
.cfcc-card.is-flipped .cfcc-card__face--front {
	transform: rotateY(-180deg);
	opacity: 0;
}

.cfcc-card:hover .cfcc-card__face--back,
.cfcc-card:focus-within .cfcc-card__face--back,
.cfcc-card.is-flipped .cfcc-card__face--back {
	transform: rotateY(0deg);
	opacity: 1;
	pointer-events: auto;
}

.cfcc-card__copy {
	justify-content: center;
	gap: 10px;
	padding: 22px 18px;
	text-align: center;
	align-items: center;
	background:
		linear-gradient(180deg, rgba(14, 41, 74, 0.98), rgba(8, 24, 46, 0.99));
}

.cfcc-card__copy::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(circle at top, rgba(143, 180, 228, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
	pointer-events: none;
}

.cfcc-card__kicker {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--cfcc-accent);
}

.cfcc-card__release {
	font-size: 0.92rem;
	font-weight: 700;
	color: #f8fbff;
	letter-spacing: 0.04em;
	margin-top: 2px;
}

.cfcc-card__actions {
	gap: 8px;
	flex-wrap: nowrap;
	justify-content: center;
	margin-top: 6px;
}

.cfcc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 118px;
	padding: 10px 14px;
	border-radius: 12px;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	transition: transform 0.25s ease, background 0.25s ease;
}

.cfcc-button:hover,
.cfcc-button:focus-visible,
.cfcc-nav__button:hover,
.cfcc-nav__button:focus-visible,
.cfcc-modal__close:hover,
.cfcc-modal__close:focus-visible {
	transform: translateY(-1px);
}

.cfcc-button--primary {
	background: var(--cfcc-button-primary);
	color: #10213a;
	box-shadow: 0 12px 24px rgba(90, 146, 224, 0.22);
}

.cfcc-button--ghost {
	background: var(--cfcc-button-secondary);
	color: #17345a;
	box-shadow: 0 10px 22px rgba(86, 127, 181, 0.12);
}

.cfcc-empty {
	padding: 32px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.52);
	color: #17345a;
}

.cfcc-modal[hidden] {
	display: none;
}

.cfcc-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
}

.cfcc-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 5, 11, 0.78);
	backdrop-filter: blur(6px);
}

.cfcc-modal__dialog {
	position: relative;
	z-index: 1;
	max-width: 980px;
	margin: 5vh auto;
	padding: 18px;
}

.cfcc-modal__close {
	position: absolute;
	top: 0;
	right: 8px;
	z-index: 2;
	background: transparent;
	color: #fff;
	font-size: 38px;
}

.cfcc-modal__frame {
	position: relative;
	padding-top: 56.25%;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 25px 90px rgba(0, 0, 0, 0.5);
}

.cfcc-modal__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* =========================
   CPFC
========================= */

.cpfc-section {
	--cpfc-section-bg: #dceaff;
	--cpfc-section-text: #17345a;
	--cpfc-accent: #5c8fd8;
	--cpfc-title-color: #17345a;
	--cpfc-nav-button-bg: rgba(255, 255, 255, 0.72);
	--cpfc-nav-button-text: #17345a;
	--cpfc-nav-button-hover-bg: rgba(255, 255, 255, 0.94);
	--cpfc-nav-button-hover-text: #0f2746;
	--cpfc-poster-ratio: 2 / 3;
	--cpfc-card-width: clamp(250px, 21vw, 320px);
	--cpfc-font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--cpfc-display-font-family: Georgia, "Times New Roman", serif;
	--cpfc-frame-color: #d9e6f8;
	--cpfc-frame-width: 0px;
	--cpfc-card-radius: 22px;
	--cpfc-card-shadow: 0 22px 42px rgba(18, 38, 66, 0.14);
	position: relative;
	box-sizing: border-box;
	width: min(100%, 1360px);
	max-width: calc(100% - 16px);
	padding: 18px 6px;
	border-radius: 0;
	background: transparent;
	color: var(--cpfc-section-text);
	font-family: var(--cpfc-font-family);
	overflow: visible;
	box-shadow: none;
	margin: 0 auto;
}

.cpfc-header,
.cpfc-nav,
.cpfc-poster__info {
	display: flex;
}

.cpfc-header {
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 14px;
	padding-inline: 4px;
}

.cpfc-eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--cpfc-accent);
}

.cpfc-header h2 {
	font-family: var(--cpfc-display-font-family);
	color: var(--cpfc-title-color);
}

.cpfc-nav {
	gap: 10px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

.cpfc-nav[hidden] {
	display: none;
}

.cpfc-nav button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	background: var(--cpfc-nav-button-bg);
	color: var(--cpfc-nav-button-text);
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(86, 127, 181, 0.14);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
	position: relative;
}

.cpfc-nav button:hover,
.cpfc-nav button:focus-visible {
	transform: translateY(-2px);
	background: var(--cpfc-nav-button-hover-bg);
	box-shadow: 0 16px 30px rgba(86, 127, 181, 0.16);
	color: var(--cpfc-nav-button-hover-text);
}

.cpfc-nav button:focus-visible {
	outline: 2px solid rgba(92, 143, 216, 0.32);
	outline-offset: 3px;
}

.cpfc-nav button span {
	font-size: 1.2rem;
	line-height: 1;
}

.cpfc-nav button:disabled {
	opacity: 0.42;
	cursor: default;
	transform: none;
	box-shadow: 0 8px 16px rgba(86, 127, 181, 0.08);
}

.cpfc-nav button:disabled:hover,
.cpfc-nav button:disabled:focus-visible {
	transform: none;
	background: var(--cpfc-nav-button-bg);
	color: var(--cpfc-nav-button-text);
	box-shadow: 0 8px 16px rgba(86, 127, 181, 0.08);
	outline: none;
}

.cpfc-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: var(--cpfc-card-width);
	gap: 18px;
	overflow-x: auto;
	padding: 4px 4px 10px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scroll-padding-inline: 4px;
	scrollbar-width: none;
}

.cpfc-track.is-animating {
	scroll-snap-type: none;
}

.cpfc-track::-webkit-scrollbar {
	display: none;
}

.cpfc-track > .cpfc-poster-card:only-child {
	inline-size: min(100%, 320px);
}

.cpfc-poster-card {
	position: relative;
	width: var(--cpfc-card-width);
	inline-size: var(--cpfc-card-width);
	max-width: var(--cpfc-card-width);
	flex: 0 0 var(--cpfc-card-width);
	scroll-snap-align: start;
	padding: 0 0 12px;
	border-radius: calc(var(--cpfc-card-radius) + 6px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 243, 255, 0.96) 100%);
	box-shadow: var(--cpfc-card-shadow);
}

.cpfc-poster-card__schedule {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 14px 16px 2px;
	text-align: center;
	color: var(--cpfc-title-color);
}

.cpfc-poster-card__schedule p {
	margin: 0;
}

.cpfc-poster-card__schedule-label {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	color: var(--cpfc-title-color);
}

.cpfc-poster-card__schedule-range {
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.4;
}

.cpfc-poster-card__schedule-times {
	display: grid;
	gap: 8px;
	justify-items: center;
}

.cpfc-poster-card__schedule-time {
	display: block;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.45;
	text-align: center;
	text-wrap: balance;
	color: var(--cpfc-title-color);
}

.cpfc-poster-card__schedule-time:not(:last-child)::after {
	content: none;
}

.cpfc-poster {
	position: relative;
	display: block;
	aspect-ratio: var(--cpfc-poster-ratio);
	min-height: 0;
	height: auto;
	border-radius: var(--cpfc-card-radius);
	overflow: hidden;
	border: var(--cpfc-frame-width) solid var(--cpfc-frame-color);
	background: linear-gradient(180deg, #cfdef6 0%, #bfd4f2 100%);
	box-shadow: var(--cpfc-card-shadow);
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.cpfc-poster:hover,
.cpfc-poster:focus-visible {
	transform: translateY(-2px);
	box-shadow: var(--cpfc-card-shadow);
	filter: saturate(1.02);
}

.cpfc-poster:focus-visible {
	outline: 2px solid rgba(92, 143, 216, 0.32);
	outline-offset: 3px;
}

.cpfc-poster img,
.cpfc-poster__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.cpfc-poster img {
	object-fit: cover;
}

.cpfc-poster__shade {
	background:
		linear-gradient(180deg, rgba(8, 26, 48, 0.04), rgba(7, 25, 45, 0.88)),
		linear-gradient(150deg, rgba(132, 187, 255, 0.18), transparent 44%);
}

.cpfc-poster__info {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	flex-direction: column;
	gap: 7px;
	color: #fff;
}

.cpfc-poster__info strong {
	font-family: var(--cpfc-display-font-family);
	font-size: clamp(1.28rem, 1.8vw, 1.7rem);
	line-height: 1.06;
	letter-spacing: -0.03em;
	font-weight: 700;
	text-shadow: 0 8px 24px rgba(5, 15, 32, 0.48);
}

.cpfc-poster__info small {
	align-self: flex-start;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(8, 24, 44, 0.76);
	border: 1px solid rgba(229, 239, 255, 0.34);
	backdrop-filter: blur(10px);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #f4f8ff;
	text-shadow: 0 3px 12px rgba(5, 15, 32, 0.42);
	box-shadow: 0 8px 18px rgba(5, 15, 32, 0.22);
}

.cpfc-poster__tags {
	position: absolute;
	left: 16px;
	right: 16px;
	top: 16px;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: flex-start;
}

.cpfc-poster__tag-link {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--cpfc-tag-accent, #7db3ff) 52%, rgba(9, 31, 55, 0.72));
	border: 1px solid color-mix(in srgb, var(--cpfc-tag-accent, #7db3ff) 58%, rgba(232, 242, 255, 0.26));
	backdrop-filter: blur(10px);
	color: #fff;
	text-decoration: none;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	max-width: 100%;
}

.cpfc-poster__tag-link:hover,
.cpfc-poster__tag-link:focus-visible {
	background: color-mix(in srgb, var(--cpfc-tag-accent, #7db3ff) 62%, rgba(10, 34, 62, 0.8));
}

.cpfc-poster__tag-link.is-static {
	cursor: default;
}

.cpfc-poster__placeholder,
.cpfc-empty {
	display: grid;
	place-items: center;
}

.cpfc-poster__placeholder {
	position: absolute;
	inset: 0;
	font-size: 48px;
	font-weight: 700;
	color: #5c8fd8;
	background: linear-gradient(180deg, #d9e8fb 0%, #cddff7 100%);
}

.cpfc-empty {
	padding: 32px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.52);
	color: #17345a;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
	.cpfc-section {
		max-width: calc(100% - 14px);
		padding: 14px 4px;
	}

	.cpfc-header {
		gap: 12px;
		margin-bottom: 12px;
	}

	.cpfc-track {
		--cpfc-card-width: clamp(220px, 24vw, 300px);
		grid-auto-columns: var(--cpfc-card-width);
		gap: 14px;
		padding: 4px 4px 10px;
	}

	.cpfc-poster {
		border-radius: 20px;
	}

	.cpfc-poster__info {
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.cpfc-poster__info strong {
		font-size: 1rem;
	}

	.cpfc-poster__info small {
		font-size: 9px;
		padding: 6px 9px;
	}

	.cpfc-poster-card__schedule-range {
		font-size: 0.82rem;
	}

	.cpfc-poster-card__schedule-time {
		font-size: 0.82rem;
	}
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1024px) {
	.cfcc-nav,
	.cpfc-nav {
		display: none;
	}
}

@media (max-width: 767px) {
	.cfcc-section,
	.cpfc-section {
		--cpfc-card-width: clamp(200px, 64vw, 248px);
		max-width: calc(100% - 8px);
		padding: 8px 2px;
		border-radius: 0;
	}

	.cfcc-header,
	.cpfc-header {
		margin-bottom: 8px;
		gap: 8px;
		flex-direction: column;
		align-items: flex-start;
		padding-inline: 0;
	}

	.cfcc-eyebrow,
	.cpfc-eyebrow {
		margin-bottom: 8px;
		font-size: 11px;
		letter-spacing: 0.22em;
	}

	.cfcc-header h2,
	.cpfc-header h2 {
		font-size: 1.5rem;
		line-height: 1.05;
	}

	.cfcc-track,
	.cpfc-track {
		grid-auto-columns: var(--cpfc-card-width, clamp(200px, 64vw, 248px));
		gap: 8px;
		padding: 0 2px;
		overflow-x: auto;
		scroll-padding-inline: 2px;
	}

	.cfcc-track > .cfcc-card:only-child {
		inline-size: var(--cfcc-card-width, clamp(200px, 64vw, 248px));
	}

	.cpfc-track > .cpfc-poster-card:only-child {
		width: var(--cpfc-card-width, clamp(200px, 64vw, 248px));
		inline-size: var(--cpfc-card-width, clamp(200px, 64vw, 248px));
		max-width: var(--cpfc-card-width, clamp(200px, 64vw, 248px));
	}

	.cfcc-card {
		min-height: 0;
		transform: none;
		transform-origin: center center;
	}

	.cpfc-poster {
		border-radius: 18px;
		transform: none;
	}

	.cfcc-card__content,
	.cfcc-card__copy {
		padding: 14px;
	}

	.cfcc-card__content h3,
	.cfcc-card__copy h3,
	.cpfc-poster__info strong {
		font-size: 1.2rem;
		line-height: 1.1;
	}

	.cfcc-card__content p,
	.cfcc-card__copy p {
		font-size: 0.85rem;
		line-height: 1.35;
	}

	.cfcc-card__badge,
	.cfcc-card__kicker {
		font-size: 8px;
		letter-spacing: 0.14em;
	}

	.cfcc-card__release {
		font-size: 0.85rem;
	}

	.cfcc-button {
		padding: 9px 12px;
		font-size: 11px;
		border-radius: 10px;
		min-width: 0;
		width: 100%;
	}

	.cfcc-card__actions {
		gap: 6px;
		margin-top: 4px;
	}

	.cpfc-poster__info {
		left: 14px;
		right: 14px;
		bottom: 14px;
		gap: 6px;
	}

	.cpfc-poster__info small {
		padding: 6px 9px;
		font-size: 8px;
		letter-spacing: 0.14em;
	}

	.cpfc-poster:hover,
	.cpfc-poster:focus-visible {
		transform: none;
		filter: none;
	}

	.cpfc-poster__placeholder {
		font-size: 38px;
	}

	.cpfc-empty {
		padding: 24px;
		border-radius: 18px;
	}
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
	.cpfc-poster,
	.cpfc-nav button {
		transition: none;
	}
}
