/* Fonty McFontface */

@font-face {
	font-family: "Museo Sans";
	font-weight: 200;
	font-style: italic;
	font-stretch: 100%;
	src: url("../fonts/MuseoSans_100_Italic-webfont.woff2");
}

@font-face {
	font-family: "Museo Sans";
	font-weight: 200;
	font-style: normal;
	font-stretch: 100%;
	src: url("../fonts/MuseoSans_100-webfont.woff2");
}

@font-face {
	font-family: "Museo Sans";
	font-weight: 300;
	font-style: italic;
	font-stretch: 100%;
	src: url("../fonts/MuseoSans_300_Italic-webfont.woff2");
}

@font-face {
	font-family: "Museo Sans";
	font-weight: 300;
	font-style: normal;
	font-stretch: 100%;
	src: url("../fonts/MuseoSans_300-webfont.woff2");
}

@font-face {
	font-family: "Museo Sans";
	font-weight: 400;
	font-style: italic;
	font-stretch: 100%;
	src: url("../fonts/MuseoSans_500_Italic-webfont.woff2");
}

@font-face {
	font-family: "Museo Sans";
	font-weight: 400;
	font-style: normal;
	font-stretch: 100%;
	src: url("../fonts/MuseoSans_500-webfont.woff2");
}

@font-face {
	font-family: "Museo Sans";
	font-weight: 700;
	font-style: italic;
	font-stretch: 100%;
	src: url("../fonts/MuseoSans_700_Italic-webfont.woff2");
}

@font-face {
	font-family: "Museo Sans";
	font-weight: 700;
	font-style: normal;
	font-stretch: 100%;
	src: url("../fonts/MuseoSans_700-webfont.woff2");
}

@font-face {
	font-family: "Museo Sans";
	font-weight: 900;
	font-style: normal;
	font-stretch: 100%;
	src: url("../fonts/MuseoSans_900-webfont.woff2");
}

@font-face {
	font-family: "Museo Sans";
	font-weight: 900;
	font-style: italic;
	font-stretch: 100%;
	src: url("../fonts/MuseoSans_900_Italic-webfont.woff2");
}

:root {
	--grey4: #f3f3f3;
	--dark-grey: #58595b;
	--white: white;
	--white-smoke: #ebebeb;
	--black: #00052a;
	--pink-1: #dba1a0;
	--red: #f26a5a;
	--pink-2: #edcbcd;
	--yellow: #e2c53e;
	--red-accent-1: #e05747;
	--red-accent-2: #b84a3d;
	--dim-grey: #cacaca;
	--turquoise: #30d0c7;
	--orange-1: #efba87;
	--transparent: #0000;
	--pale-green: #92fe9d;
	--deep-sky-blue: #00c9ff;
	--grey-3: #747476;
	--cinekids-y: #fcd638;
	--cinekids-g: #00a89e;
	--cinekids-b: #172e4d;
	--black-2: #0000004d;
	--cafe-green: #758a66;
	--cafe-green-light: #c2cbbc;
	
	--aspect-ratio-default: 1920/1080;
	--aspect-ratio-poster: 5/7;
	--aspect-ratio-cover-landscape: 1920/1080;
	--aspect-ratio-cover-portrait: 1;
	--aspect-ratio-carousel-landscape: 1920/1080;
	--aspect-ratio-carousel-portrait: 1;
	--aspect-ratio-gallery: 1920/1080;

	--space-xs: 0.25rem;
	--space-s: 0.5rem;
	--space-m: 1rem;
	--space-l: 2rem;
	--space-xl: 3rem;
}

html {
	scroll-behavior: smooth;
	font-size: 100%;
}

@media (max-width: 40em) {
	html {
		font-size: 90%;
	}
}

body {
	font-family: 'Museo Sans', sans-serif;
	line-height: 1.5;
	color: var(--dark-grey);
	background-color: var(--grey4);
	margin: 0;
}

input, button, textarea, select {
	font: inherit;
	letter-spacing: inherit;
	font-size: max(1em, 16px);
}

button {
	cursor: pointer;
}

a {
	color: inherit;
	text-decoration-thickness: 0.1em;
	text-underline-offset: 0.2em;
}

[href='#main'] {
	position: absolute;
	top: -10em;
	left: 0;
	right: 0;
	background: white;
	padding: var(--space-s) var(--space-m);
	text-align: center;
}

[href='#main']:focus-visible {
	outline-offset: -0.2rem;
}

[href='#main']:focus {
	z-index: 100;
	top: 0;
}

:focus-visible {
	outline: 2px solid var(--black);
	outline-offset: 0.15rem;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* 
	Menus
*/

.menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu a {
	display: flex;
	flex-wrap: nowrap;
	gap: var(--space-s);
	align-items: center;
}

.menu a svg {
	height: 1.5em;
	width: auto;
}

header {
	margin-bottom: var(--space-l);
}

@media (max-width: 40em) {
	header {
		margin-bottom: 0;
	}
}

.site-logo {
	margin-right: var(--space-m);
	display: block;
}

.site-logo svg {
	height: 3.25rem;
	width: auto;
	fill: var(--dark-grey);
	display: block;
}

@media (max-width: 40em) {
	.site-logo svg {
		height: 2.5rem;
	}
}

header nav, header ul, .flex-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

header nav {
	justify-content: space-between;
	margin: var(--space-l) 0;
}

header nav > * {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

header .language-switcher {
	margin-top: var(--space-l);
}

.language-switcher ul {
	text-transform: uppercase;
	gap: var(--space-xs);
}

.language-switcher a {
	background: var(--pink-1);
	color: white;
	text-align: center;
	display: block;
	text-decoration: none;
	padding: var(--space-s) var(--space-m);
}

.language-switcher a.active {
	background: var(--red);
}

.searchbox {
	display: flex;
	gap: var(--space-s);
	margin: var(--space-m) 0;
}

.searchbox .btn {
	padding: var(--space-s) var(--space-m);
}

.searchbox svg {
	/*height: 1em;*/
	width: 1em;
	display: block;
}

.searchbox input {
	appearance: none;
	border: none;
	border-bottom: 1px solid;
	background: transparent;
	padding: 3px 0;
	flex-grow: 1;
}

@media (max-width: 50em) {
	.main-menu {
		display: none;
	}
}

.main-menu .menu {
	/*justify-content: space-between;*/
	gap: 0 var(--space-l);
	font-weight: 700;
	font-size: 1.2em;
}

.main-menu a {
	text-decoration: none;
	display: block;
	border-bottom: 2px solid transparent;
}

.main-menu a:is(.active, :focus-visible, :hover) {
	border-color: var(--red);
}

/*
	Cafe Menu
*/

.cafe-menu details {
	/*border: 1px solid;*/
	margin: var(--space-xs) 0;
	border-radius: 0.25em;
	padding: var(--space-m);
	background: white;
}

.cafe-menu summary {
	font-weight: bold;
	/*display: block;*/
	/*list-style: none;*/
	cursor: pointer;
	font-size: 1.4em;
}

.cafe-menu details ul {
	list-style: none;
	padding: 0;
	margin: var(--space-m);
	display: flex;
	flex-direction: column;
	gap: var(--space-m);
}

.cafe-menu details li {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.cafe-menu details p {
	margin: 0;
}

/*
	Schedule
*/


.schedule-filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-s) var(--space-l);
	align-items: center;
}

.schedule-filter-list {
	display: flex;
	gap: var(--space-s) var(--space-m);
	flex-wrap: nowrap;
	align-items: flex-start;
}

.schedule-filter-list-label {
	font-weight: bold;
	padding: var(--space-xs) var(--space-s);
	min-width: 3em;
}

.schedule-daylist {
	display: flex;
	gap: var(--space-xs);
	flex-wrap: nowrap;
	list-style: none;
	padding: 0;
	overflow-x: auto;
	overscroll-behavior-x: contain;
}

.schedule-daylist > * {
	flex-grow: 1;
}

.schedule-anchor {
	padding: var(--space-s) var(--space-m);
	display: block;
	text-decoration: none;
	background: var(--white);
	color: var(--grey-3);
	text-transform: uppercase;
}

.schedule-anchor-weekday {
	color: var(--black);
	font-weight: 700;
}

.schedule-anchor:is(:hover, :focus-visible) {
	background: var(--red-accent-1);
	color: var(--white);
}

.schedule-anchor:is(:hover, :focus-visible) > * {
	color: inherit;
}

.schedule-item {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--space-l);
	margin: var(--space-m) 0;
	--icon-fill-color: currentColor;
}

@media (max-width: 40em) {
	.schedule-item {
		grid-template-columns: 1fr;
		gap: var(--space-s);
	}
}

.schedule-item:last-child {
	padding-bottom: var(--space-xl);
	margin-bottom: 0;
}

.schedule-item-info {
	display: flex;
	flex-direction: column;
	gap: var(--space-m);
}

.schedule-item-info-head {
	color: var(--dark-grey);
	display: flex;
	align-items: stretch;
}

.schedule-item-date, .schedule-item-time {
	padding: var(--space-s) var(--space-l);
}

.schedule-item-date {
	background: var(--white);
	/*flex-grow: 1;*/
}

.schedule-item-time {
	background: var(--pink-2);
}

.schedule-item-tickets {
	/*margin-inline-start: var(--space-s);*/
}

.schedule-item-tickets a {
	display: block;
}

.schedule-item-title {
	margin: 0;
}

.schedule-item-title a,
.film-title a {
	text-decoration: none;
	font-size: 1.2em;
	line-height: 1;
}

.schedule-item-image img {
	width: 100%;
	height: auto;
	aspect-ratio: var(--aspect-ratio-gallery);
	object-fit: cover;
	object-position: var(--focus, 50% 50%);
}

.schedule-day {
	position: relative;
}

.schedule-day-heading {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: var(--space-s) 0;
	background: var(--grey4);
	/*margin: 0 0 var(--space-m);*/
	margin: 0;
	font-weight: 400;
	border-bottom: 1px solid rgb(0 0 0 / 0.15);
}

.schedule-day-heading span {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--black);
}

.schedule-item-logline {
	background: var(--white-smoke);
	padding: var(--space-s) var(--space-m);
	/*border-radius: var(--space-l);*/
	position: relative;
}

.schedule-item-logline > :first-child {
	margin-top: 0;
}

.schedule-item-logline > :last-child {
	margin-bottom: 0;
}

/*
	Film list
*/

.film-item img {
	aspect-ratio: 5/7;
	object-fit: cover;
}

/*
	Layout
*/
.columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
}

.split-layout {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 0 var(--space-xl);
}

@media (max-width: 40em) {
	.columns, .split-layout {
		grid-template-columns: 1fr;
		gap: var(--space-m);
	}
}

/*
	Showing
*/

.showing-tags {
	display: flex;
	list-style: none;
	padding: 0;
	flex-wrap: wrap;
	gap: var(--space-s);
	margin: 0;
}

.showing-tag {
	background: var(--bg, #fff);
	color: var(--fg, #000);
	padding: var(--space-xs) var(--space-s);
	gap: var(--space-xs) var(--space-s);
	display: flex;
	flex-wrap: nowrap;
}

.showing-tag a {
	text-decoration: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: var(--space-s);
}

.showing-tag svg {
	fill: currentColor;
	height: 1.25em;
	width: auto;
}

.showing-tag--active {
	background: var(--black);
	color: var(--white);
}

.showing-info {
	padding: var(--space-l);
	background: white;
}

.showing-info-coords {
	padding: var(--space-s) 0;
	/*display: flex;*/
	/*flex-wrap: wrap;*/
	/*justify-content: space-between;*/
	/*font-weight: bold;*/
	/*font-size: 1.2em;*/
	/*margin-bottom: var(--space-m);*/
}

.showing-info-coords .schedule-item-info-head {
	font-size: 1.2em;
}

.showing-schedule-shortcut {
	padding: var(--space-s) var(--space-l);
}

@media (max-width: 40em) {
	.showing-info-coords .schedule-item-info-head {
		font-size: 1em;
	}
	
	.showing-info-coords :is(
		.schedule-item-date, 
		.schedule-item-time, 
		.schedule-item-tickets a
	), .showing-schedule-shortcut  {
		padding-inline: var(--space-s);
	}
}

.showing-info-coords .schedule-item-date {
	flex-grow: 1;
}

.showing-tags-and-series {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-s);
}

/*
	Event hero / film hero
*/

.event-hero {
	background: var(--red);
	color: white;
}

.event-hero-info {
	padding: var(--space-l);
}

.event-hero-info > * + * {
	margin-top: var(--space-m);
}

.event-hero-info h1 {
	margin: 0;
	font-size: 2.4em;
	line-height: 1.1;
	letter-spacing: -0.01em;
	text-wrap: balance;
	/*font-weight: 900;*/
	/*letter-spacing: 0.02em;*/
	/*text-transform: uppercase;*/
}


@media (max-width: 40em) {
	.event-hero-info {
		padding: var(--space-m);
	}

	.event-hero-info h1 {
		font-size: 1.4em;
	}
}

.event-hero-cover {
	position: relative;
}

.event-hero-cover img {
	width: 100%;
	height: auto;
	aspect-ratio: var(--aspect-ratio-cover-landscape);
	object-fit: cover;
	object-position: var(--focus, 50% 50%);
}

@media (max-aspect-ratio: 1) {
	.event-hero-cover img {
		/*aspect-ratio: var(--aspect-ratio-cover-portrait);*/
	}
}

.event-hero-facts {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs) var(--space-l);
}

.event-hero-facts svg {
	fill: var(--icon-fill-color, var(--white));
	opacity: 0.6;
}

.event-hero-facts ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	align-items: center;
	gap: 0 var(--space-m);
}

.event-hero-facts li {
	display: flex;
	gap: var(--space-xs);
	align-items: center;
	flex-wrap: nowrap;
}

ul.pipe-separated, 
ul.pipe-separated li {
	gap: var(--space-xs) var(--space-s);
}

.pipe-separated li:not(:last-child)::after {
	content: '|';
	opacity: 0.6;
}

.trailer-btn {
	aspect-ratio: var(--aspect-landscape);
	box-sizing: border-box;
	font-size: 1.25em;
	display: grid !important;
	align-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 40em) {
	.trailer-btn {
		font-size: 1em;
	}
}

.trailer-btn svg {
	fill: currentColor;
	display: block;
	width: auto;
	height: 2em;
	margin: var(--space-s) auto;
	transition: transform 0.2s;
}

.trailer-btn:is(:hover, :focus-visible) svg {
	transform: scale(1.2);
}

/*
	Series item
*/

.series-item {
	background: var(--bg, white);
	color: var(--fg, black);
	margin: 1rem 0;
}

/*
	Footer
*/

footer {
	background: white;
	padding: var(--space-l) 0;
}

.footer-section {
	margin: var(--space-m) 0;
}

@media (max-width: 40em) {
	footer {
		/*padding-block: var(--space-m);*/
	}
}

.social-links p {
	/*font-weight: 500;*/
}

.social-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-m);
}

.footer-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-m);
}

.membership-list {
	list-style: none;
	padding: 0;
	display: flex;
	gap: var(--space-xl);
	flex-wrap: wrap;
}

.membership-list img {
	height: 3em;
	width: auto;
}

/*
	Email newsletter subscribe form
*/

.subscribe-form {
	background: var(--grey4);
	padding: var(--space-xl);
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 0 var(--space-xl);
}

@media (max-width: 40em) {
	.subscribe-form {
		grid-template-columns: 1fr;
		padding: var(--space-m);
	}
}

.subscribe-form h2 {
	text-transform: uppercase;
	margin: 0 0 var(--space-m);
	font-weight: 900;
}

.subscribe-form p {
	margin: 0 0 var(--space-m);
}

.subscribe-form .checkbox-field {
	font-size: 0.9em;
	color: var(--grey-3);
}

.btn, 
.block-button [data-style=default], 
.block-buttons [data-style=default] {
	background: var(--red);
	appearance: none;
	border: none;
	padding: var(--space-s) var(--space-l);
	text-transform: uppercase;
	color: white;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: var(--space-s);
}

.btn svg {
	fill: currentColor;
	height: 1.33em;
	width: auto;
}

.subscribe-form input:not([type=checkbox]) {
	appearance: none;
	border: none;
	border-bottom: 1px solid;
	width: 100%;
	box-sizing: border-box;
	padding: var(--space-xs);
	background: transparent;
}

.subscribe-form input:not([type=checkbox]):focus {
	background: white;
}

.subscribe-form p {
	display: grid;
	grid-template-columns: repeat(var(--columns, 1), 1fr);
	gap: var(--space-m);
}

/*
	Kirby Admin Bar
*/

.kirby-admin-bar {
	padding: var(--space-m);
}

.kirby-admin-bar ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: var(--space-m);
}

/* 
	Grid layout

	https://ryanmulligan.dev/blog/layout-breakouts/
*/

.grid {
	--gap: clamp(0.5rem, 3vw, 3rem);
	--full: minmax(var(--gap), 1fr);
	--content: min(40rem, 100% - var(--gap) * 2);
	--popout: minmax(0, 2rem);
	--feature: minmax(0, 10rem);

	display: grid;
	grid-template-columns:
		[full-start] var(--full)
		[feature-start] var(--feature)
		[popout-start] var(--popout)
		[content-start] var(--content) [content-end]
		var(--popout) [popout-end]
		var(--feature) [feature-end]
		var(--full) [full-end];
}

.grid > * {
	grid-column: feature;
}

.grid-row-content {
	grid-column: content;
}

.grid-row-popout {
	grid-column: popout;
}

.grid-row-feature {
	grid-column: feature;
}

.grid-row-full {
	grid-column: full;
}

/*
	Film / showing page
*/

.page-info-layout {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--space-xl);
	margin: var(--space-m) 0;
}

@media (max-width: 40em) {
	.page-info-layout {
		display: block;
		margin: var(--space-l) 0;
	}
}

.film-actor {
	white-space: nowrap;
}

.page-facts {
	--thickness: var(--thickness-s);
	list-style: none;
	padding: 0;
	margin: var(--space-m) 0;
	border: var(--thickness) solid;
	border-left: none;
	border-right: none;
}

.page-facts li {
	padding: var(--space-s) 0;
}

.page-facts li + li {
	border-top: var(--thickness) solid;
}

.page-facts .btn {
	display: block;
}

.page-description {
	font-size: 1.25em;
	padding: var(--space-s) 0;
}

/*
	Carousel 
*/

.carousel-wrapper {
	margin-bottom: var(--space-l);
}

.carousel-item {
	position: relative;
	/*display: block;*/
	display: flex;
	flex-direction: column;
	text-decoration: none;
	height: 100%;
}

.carousel-item:focus-visible {
	outline-offset: -0.15rem;
}

.carousel-item img {
	width: 100%;
	height: auto;
	aspect-ratio: var(--aspect-ratio-carousel-landscape);
	object-fit: cover;
	object-position: var(--focus, 50% 50%);
}

@media (max-aspect-ratio: 1) {
	.carousel-item img {
		aspect-ratio: var(--aspect-ratio-carousel-portrait);
	}
}

.carousel-item-content {
	background: var(--red);
	color: var(--white);
	padding: var(--space-l) 0;
	flex-grow: 1;
}

@media (max-width: 40em) {
	.carousel-item-content {
		padding-block: var(--space-m);
	}
}

.carousel-item-content p {
	margin: 0;
}

.carousel-item-content .schedule-item-info-head {
	margin-top: var(--space-m);
}

.carousel-item-content .schedule-item-date {
	flex-grow: 1;
}

.carousel-item-title {
	font-weight: bold;
	font-size: 2.4em;
	margin: 0 0 var(--space-s) !important;
	line-height: 1.15;
}

@media (max-width: 40em) {
	.carousel-item-title {
		font-size: 1.4em;
	}
}

.carousel-nav {
	padding: var(--space-s) 0;
	color: var(--color-black);
	background: var(--color-white);
	/*border-top: 1px solid;*/
}

.carousel-nav button {
	cursor: pointer;
	padding: var(--space-s);
	background: none;
	border: none;
	appearance: none;
}

.carousel-nav {
	justify-content: center !important;
}

.carousel-arrows {
	display: none !important;
}

.carousel-nav .carousel-dot {
	width: var(--space-xl);
	height: 10px;
	padding: 0;
	background: var(--grey-3);
	border: none;
	border-radius: 0 !important;
}

.carousel-nav .carousel-dot--selected {
	background: var(--red);
}

/*
	Hamburger menu
*/

.nav-menu {
	padding: var(--space-l) 0;
	background: var(--white);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	box-shadow: 0 1em 2em rgb(0 0 0 / 0.15);
	
	/* Fade-in / fade-out effect… */
	opacity: 1;
	transition-duration: 0.25s;
	transition-property: display, opacity;

	/* Note: not supported in Firefox */
	transition-behavior: allow-discrete;
}

/* …also requires a starting-style */
@starting-style {
	.nav-menu {
		opacity: 0;
	}
}

[aria-controls][aria-expanded=false] + .nav-menu {
	display: none;
	opacity: 0;
}

.nav-menu-header {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.nav-menu-body {
	margin: var(--space-m) 0 0;
}

.nav-menu .menu {
	font-size: 1.2em;
	font-weight: bold;
	margin: var(--space-l) 0 0;
}

.nav-menu .menu a {
	text-decoration: none;
}

@media (max-width: 40em) {
	.nav-menu .menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		font-size: 1.4em;
		gap: 0;
	}

	.nav-menu .menu li {
		border-bottom: 1px solid var(--grey4);
	}

	.nav-menu .menu a {
		padding: var(--space-xs) 0;
	}
}

.mobile-menu .btn {
	padding-inline: var(--space-m);
}

/*
	Tease: Post
*/

.tease-post {
	background: var(--white);
}

.tease-post a {
	display: block;
	text-decoration: none;
}

.tease-post-cover img {
	width: 100%;
	height: auto;
	aspect-ratio: var(--aspect-ratio-default);
	object-fit: cover;
	object-position: var(--focus, 50% 50%);
}

.tease-post-info {
	padding: var(--space-m);
}

.tease-post-title {
	font-weight: bold;
	color: var(--black);
	/*font-size: 1.25em;*/
	line-height: 1.25;
	margin-bottom: var(--space-s);
}

/*
	Post
*/

.post-cover {
	margin-bottom: var(--space-l);
}

.post-cover img {
	width: 100%;
	height: auto;
}

.post-page {
	margin-bottom: var(--space-xl);
}

@media (max-width: 40em) {
	.post-page {
		margin-bottom: var(--space-m);
	}
}

@media (min-width: 40em) {

	.post-page {
		position: relative;
		align-items: start;
	}

	.post-byline {
		position: sticky;
		top: 0;
	}
}

.post-byline h1 {
	line-height: 1.15;
	margin: var(--space-s) 0 var(--space-m);
}

/*
	Tease: film
*/

.film-item a {
	text-decoration: none;
}

.film-meta {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	align-items: center;
	gap: 0 var(--space-m);
}

.film-meta li {
	display: flex;
	gap: var(--space-xs);
	align-items: center;
	flex-wrap: nowrap;
}

/*
	Block: Button / Buttons
*/

.block-button[data-alignment=left] {
	text-align: left;
}

.block-button[data-alignment=center] {
	text-align: center;
}

.block-button[data-alignment=right] {
	text-align: right;
}

.block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-m);
	justify-content: center;
	align-items: center;
}

.block-buttons[data-alignment=left] {
	justify-content: center;
}

.block-buttons[data-alignment=center] {
	justify-content: center;
}

.block-buttons[data-alignment=right] {
	justify-content: right;
}

/*
	Snippet: Switch page language
*/



.switch-page-language {
	margin: var(--space-m) 0;
}

.switch-page-language p {
	margin: 0;
}

.switch-page-language li {
	flex-grow: 1;
}

/*
	Text utilities
*/

.text-uc {
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.01em;
}