/*
Theme Name: TSG 2024 v22
Version: 1
Text Domain: tsg
*/


/* Fonts
---------------------------------------------------- */

@font-face {
	font-family: "Selecta";
	font-weight: 400;
	font-style: normal;
	src: url("fonts/Selecta-Regular.woff2");
}

@font-face {
	font-family: "Selecta";
	font-weight: 400;
	font-style: italic;
	src: url("fonts/Selecta-Regular-Italic.woff2");
}

@font-face {
	font-family: "Selecta";
	font-weight: 700;
	font-style: normal;
	src: url("fonts/Selecta-Bold.woff");
}

@font-face {
	font-family: "KTF Concrete";
	font-weight: 600;
	font-style: normal;
	src: url("fonts/KTFConcrete-A-Bold.otf");
}


/* General
---------------------------------------------------- */
* {
	box-sizing: border-box;
}

:root {
	/* --grey: #ABABAB;
  --blue: #054BFF;
  --border-color: #D2D2D2; */

	/* --red: #dc5727; */
	/* --red: rgb(200, 90, 40); */
	/* --red: rgb(250, 65, 10); */
	--red: rgb(255, 0, 0);
	/* --green: rgb(95, 175, 65); */
	--green: rgb(125, 154, 79);

	/* --text: 1.4167rem; */
	--text: 1.5rem;
	/* --text: 1.6667rem; */

	--caption-text: 1.0rem;
	--home-h5: 2rem;
	/* 24px; calendar cell title */
	--home-h4: 2.5rem;
	/* 27px; slideshow date */
	--home-h3: 3rem;
	/* 36px; agenda text, calendar title, calendar cell days */
	--home-h2: 4.4833rem;
	/* 53.8px; slideshow title2 */
	--home-h1: 8.3333rem;
	/* 100px; slideshow title1 */

	--single-h1: 6rem;
	/* 72px */
	--signle-h2: 3rem;
	/* 36px */

	--acceccible-text: 3rem;
	--news-h1: 17.25rem;
	/* 207px */
	--news-h2: 3rem;
	/* 36px */
	--news-single-h1: 6rem;
	/* 72px */

	--page-h1: 17.25rem;
	/* 207px */
	--page-h1: 12rem;
	/* 207px */
	--page-h2: 3rem;
	/* 36px */

	--audio-player-font: "selecta";
	--audio-player-text: 3rem;

	--text-font: "Selecta";
	--header-font: "KTF Concrete";

	-webkit-font-smoothing: antialiased;
	font-family: "Selecta", helvetica, sans-serif;
	font-weight: 400;
	/* font-size: 12px; */
	font-size: 2.5vw;
	line-height: 1.2em;

	/* display: flex; */
	min-height: 100%;
	height: 100%;
}

body {
	margin: 0;
	/* display: flex;
  flex-direction: column;
  flex-grow: 1; */
	height: 100%;
}

body.big {
	/* font-size: 1.5em; */

	/* --text: 1.6667rem; */
	--text: 1.75rem;
	/* --text: 2rem; */
}

body.frozen {
	overflow: hidden;
}

body.newsletter-frozen {
	overflow: hidden;
}

figure {
	margin: 0;
}

a {
	color: black;
	text-decoration: inherit;
}

b,
strong {
	font-family: inherit;
	font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
}

video,
img,
svg {
	display: block;
}

.hidden {
	display: none !important;
}

@media (min-width: 900px) {
	:root {
		font-size: 0.9615vw;
		/* 104em */
		/* font-size: 8.6535px; */
		line-height: 1.2em;
	}

	.mobile-only {
		display: none !important;
	}
}

@media (min-width: 1440px) {
	:root {
		font-size: 0.8vw;
		line-height: 1.2em;
	}
}

/* @media (min-width: 1920px) {
	:root {
		font-size: 0.625vw;
		line-height: 1.2em;
	}
} */

@media (max-width: 899px) {
	.desktop-only {
		display: none !important;
	}
}

@media (min-width: 1920px) {
	:root {
		font-size: 12px;
		line-height: 1.2em;
	}
}


/* Main
---------------------------------------------------- */
main {
	padding: 0 0 8rem;
	flex-grow: 1;
}



/* Header
---------------------------------------------------- */

.menu-button {
	position: fixed;
	top: 2rem;
	right: 2rem;
	z-index: 20;
	display: flex;
	gap: 1em;
}

.home-button {
	position: fixed;
	top: 2rem;
	left: 2rem;
	z-index: 20;
}

.home-button svg {
	width: 2.7rem;
	height: auto;

	-webkit-filter: drop-shadow(0 0 1.3px rgba(0, 0, 0, 1));
	filter: drop-shadow(0 0 1.3px rgba(0, 0, 0, 1));
}

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



/* Nav
---------------------------------------------------- */
nav.menu {
	position: fixed;
	z-index: 25;
	top: -100%;
	right: 0;
	background-color: var(--red);
	transition: top 250ms;
	width: 100%;
	height: 100%;
}

nav.menu a,
nav.menu span {
	font-size: var(--text);
	line-height: 1.2em;
}

body.menu-open nav.menu {
	top: 0;
	border-left: 1px solid black;
}

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

nav.menu ul.top-menu {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	/* height: 100vh; */
	height: 100%;
	padding: 3rem 1rem 1rem;
}

nav.menu ul.top-menu>li {
	width: calc(50% - 2rem);
	margin: 0 1rem;
	padding: 0.75rem 0;
	/* border-bottom: 1px solid black; */
}

nav.menu ul.top-menu>li:not(:last-child) {
	border-bottom: 1px solid black;
}

@media (min-width: 900px) {
	nav.menu {
		/* width: auto; */
		width: 56.8rem;
	}

	nav.menu ul.top-menu>li {
		width: 25.4rem;
	}
}

@media (min-width: 1920px) and (min-height: 940px) {
	nav.menu {
		width: auto;
	}
}

@media (max-width: 499px) {
	nav.menu {
		/* width: 100%; */
		overflow: auto;
	}

	nav.menu ul.top-menu {
		align-content: space-between;
		flex-wrap: nowrap;
		padding: 2rem 1rem 2rem;
	}

	nav.menu ul.top-menu>li {
		/* width: calc(50% - 2em); */
		/* width: 100%; */
		width: calc(100% - 2rem);
		/* margin: 0; */
	}
}

nav.menu ul.top-menu>li>a,
nav.menu ul.top-menu>li>span {
	text-transform: uppercase;
}

nav.menu a:hover {
	color: white;
}

nav.menu ul.top-menu .font-size {
	display: flex;
	gap: 1rem;
	padding: 0.5rem 0;
	align-items: center;
}

nav.menu ul.top-menu .font-size button {
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

nav.menu ul.top-menu .font-size button.small {
	padding-bottom: 0.3em;
	/* line-height: 1.15em; */
}

nav.menu ul.top-menu .font-size button.big {
	font-size: calc(2 * var(--text));
	line-height: 0.4em;
	padding-bottom: 0.3em;
}

nav.menu .close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	cursor: pointer;
}

nav.menu .close svg {
	display: block;
	width: 2rem;
	height: 2rem;
}



/* Slideshow
---------------------------------------------------- */
.home-slideshow {
	width: 100%;
	position: relative;
}

.slideshow .slides {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.home-slideshow .slides {
	height: 100vh;
}

@media (max-width: 899px) {
	.home-slideshow {
		overflow: hidden;
	}

	.home-slideshow .slides {
		height: 100dvh;
		/* width: 250%;
		margin-left: -75%; */
		width: 100%;
		margin-left: 0;
	}

	.home-slideshow .slides .slide .slide-caption {
		/* width: 41.67%; */
		width: 100%;
		margin: 0 auto;
	}
}

.home-slideshow .slides .slide {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	top: 0;
	/* display: block; */
	transform: translateX(200%);

	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

@media (min-width: 900px) {
	.home-slideshow .slides .slide {
		/* left: 25%;
    width: 50%; */
	}
}

.home-slideshow .slides .slide:first-child {
	transform: translateX(0);
}

.home-slideshow .slides .slide:nth-child(2) {
	transform: translateX(100%);
}

.home-slideshow .slides .slide a {
	/* display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%; */

	/* display: block;
  width: 100%;
  height: 100%; */
}

.slideshow .slides .slide figure {
	margin: 0;
	/* min-height: 0; */
	/* min-width: 0; */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	/* display: flex; */
	/* flex-grow: 1; */

	position: absolute;

	display: flex;
	flex-direction: column;
	align-items: center;
}



.home-slideshow .slides .slide a figure {
	/* height: auto;
  min-height: 0;
  flex-grow: 1; */
}

.slideshow .slides .slide figure img {
	display: block;
	width: auto;
	height: 100%;
}

.slideshow .slides .slide.full figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slideshow .slides .slide figure picture {
	flex-grow: 1;
	display: block;
	height: 100%;
}

@media (min-width: 900px) {
	.slideshow .slides .slide figure {
		/* bottom: 1rem; */
	}

	.slideshow.spectacle-slideshow .slides .slide:not(.full) figure img {
		/* object-fit: none; */
		width: auto;
		padding: 5rem 0;
		height: 100%;
	}
}


.home-slideshow .slides .slide h3 {
	font-size: var(--home-h4);
	line-height: 1em;
	font-family: "KTF Concrete", Arial;
	color: inherit;
	text-align: center;
	margin: 0 2rem;
	flex-shrink: 0;
	position: relative;
	text-transform: uppercase;
}

.home-slideshow .slides .slide .date {
	font-size: var(--home-h4);
	line-height: 1em;
	font-family: "KTF Concrete", Arial;
	color: inherit;
	margin-bottom: 4rem;
	flex-shrink: 0;
	position: relative;
	text-align: center;
}

.slideshow .slides .slide h3,
.slideshow .slides .slide .date {
	transition: opacity 500ms;
	opacity: 0;
}

.slideshow .slides .slide.current h3,
.slideshow .slides .slide.current .date {
	opacity: 1;
}


/* Saison 2025-2026
---------------------------------------------------- */

.home-slideshow .slides .slide {
	flex-direction: row;
	color: black;
}

/* .bgcolor-pink {
	background-color: var(--pink);
}

.bgcolor-orange {
	background-color: var(--orange);
}

.bgcolor-red {
	background-color: var(--red);
}

.bgcolor-black {
	background-color: black;
	color: white;
} */

.full {
	/* background-color: white;
	color: var(--red); */
}


.home-slideshow .slides .slide a {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
	padding: 0;
	/* gap: 1.5rem; */
	color: inherit;
	width: 100%;
}

@media (max-width:899px) {
	.home-slideshow .slides .slide a {
		gap: 4rem;
	}
}

.home-slideshow .slides .slide h1 {
	font-size: var(--home-h4);
	line-height: 1em;
	font-family: "KTF Concrete", Arial;
	color: inherit;
	margin: 2rem 0;
	flex-shrink: 0;
	text-align: center;
	z-index: 2;
}

.home-slideshow .slides .slide a figure {
	min-height: 0;
	position: static;
	flex-grow: 1;
}

@media (max-width: 899px) {
	.home-slideshow .slides .slide a {
		padding: 0 2rem;
	}

	.home-slideshow .slides .slide a figure {
		overflow: hidden;
	}
}

.home-slideshow .slides .slide:not(.full) figure img {
	/* object-fit: none; */
	width: auto;
	padding: 0;
}

.home-slideshow .slides .slide.full a figure img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center;

}

@media (min-width: 900px) {
	.home-slideshow .slides .slide figure {
		bottom: 10rem;
		/* width: 40rem; */
	}
}

.home-slideshow .slides .slide .slide-caption {
	flex-shrink: 0;
	margin: 2rem 0;
}

.home-slideshow .slides .slide .slide-caption .date {
	margin-bottom: 0;
}

/* .slideshow .slides .slide .slide-caption .saison-title {
	display: none;
} */


.presentation-saison h1 {
	position: absolute;
	width: 100%;
}

.presentation-saison .slides .slide:not(.full) figure {
	padding: 25dvh 0;
}

.presentation-saison .saison-title {
	position: absolute;
	width: 100%;
	bottom: 0;
	text-align: center;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.2em;
	text-transform: uppercase;
	margin: 2rem 0;
}

/* .slideshow.presentation-saison .slides .slide .slide-caption .title,
.slideshow.presentation-saison .slides .slide .slide-caption .date {
	display: none;
} */


/* Home Slideshow
---------------------------------------------------- */
.home-slideshow .mouse-nav {
	display: none;
}

.home-slideshow .nav .nav-left,
.home-slideshow .nav .nav-right {
	position: absolute;
	top: 0;
	left: 0;
	width: 25%;
	height: 100%;
	z-index: 10;
}

.home-slideshow .nav .nav-bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4em;
	z-index: 10;
	cursor: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='17' height='19' viewBox='0 0 17 19' fill='none'%3E%3Cpath d='M9.39205 0.545454V14.5568L14.7784 9.15341L16.108 10.4659L8.45455 18.1023L0.818182 10.4659L2.11364 9.15341L7.51705 14.5568V0.545454H9.39205Z' fill='black'/%3E%3C/svg%3E"), auto;

}

.home-slideshow .nav .nav-left {
	cursor: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='18' height='16' viewBox='0 0 18 16' fill='none'%3E%3Cpath d='M8.00568 15.5L0.369318 7.86364L8.00568 0.227273L9.31818 1.52273L3.91477 6.92614H17.9091V8.80114H3.91477L9.31818 14.1875L8.00568 15.5Z' fill='black'/%3E%3C/svg%3E"), auto;

	/* cursor: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='https://www.w3.org/2000/svg'%3E%3Cpath d='M4.00284 8.5L0.184659 4.68182L4.00284 0.863636L4.65909 1.51136L1.95739 4.21307H8.95455V5.15057H1.95739L4.65909 7.84375L4.00284 8.5Z' fill='black'/%3E%3C/svg%3E"); */
}

.home-slideshow .nav .nav-right {
	left: 75%;
	/* cursor: url('data:image/svg+xml;utf8,<svg xmlns="https://www.w3.org/2000/svg" width="15" height="30" style="font-size: 1em;"><text y="15">→</text></svg>'), auto; */
	cursor: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='18' height='16' viewBox='0 0 18 16' fill='none'%3E%3Cpath d='M9.90341 16L8.59091 14.7045L13.9943 9.30114H0V7.42614H13.9943L8.59091 2.03977L9.90341 0.727273L17.5398 8.36364L9.90341 16Z' fill='black'/%3E%3C/svg%3E"), auto;
}

.home-slideshow .touch-nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 11;
}

@media (min-width: 900px) {
	.home-slideshow .touch-nav {
		display: none;
	}

	.home-slideshow .mouse-nav {
		display: block;
	}
}

.home-slideshow .overlays {
	/* position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; */

	/* z-index: 10; mix-blend-mode ! */
	position: relative;
}

.home-slideshow .overlay {
	position: fixed;
	/* z-index: 2; mix-blend-mode ! */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 400ms;
}

.home-slideshow .overlay img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-slideshow .overlay .anim {
	position: fixed;
	z-index: 2;
	left: -60rem;
	right: 0;
	top: -18.75rem;
	bottom: 0;
	background-size: 30rem;
	pointer-events: none;
	opacity: 0;
	transition: opacity 800ms;

	animation: move 1000ms 0ms linear infinite both;
}

.home-slideshow .overlay.active {
	opacity: 1;
}

@keyframes move {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(60rem, 18.75rem);
	}
}

main.home h1 {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 2;
	font-size: var(--home-h4);
	line-height: 1em;
	font-family: "KTF Concrete", Arial;
	color: var(--green);
	margin: 1.9rem 0;
	flex-shrink: 0;
	text-align: center;
}


.home-archives {

	padding: 0 2rem;
	max-width: 160rem;
	margin: 0 auto;
}

.home-archives a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--home-h1);
	line-height: 1.0em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	margin: 0;
	padding: 2rem 2rem 3rem;
	color: var(--red);

	border-bottom: 1px solid black;
	border-right: 1px solid black;
	border-left: 1px solid black;

	height: 14.0625rem;
}

.home-archives a:hover {
	background-color: black;
}

@media (max-width:899px) {
	.home-archives a {
		font-size: var(--home-h2);
		border-top: 1px solid black;
	}

	.home-archives {
		margin: 2rem auto 0;
	}
}

@media (min-width: 1440px) {
	.home-archives a {
		height: 21.9375rem;
	}
}

@media (max-width: 899px) {
	.home-video {
		display: none;
	}
}

@media (min-width: 900px) {
	.home-video {
		width: 100%;
		height: 100%;
		position: relative;
	}

	.home-video video {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.home-video .video-caption {
		position: absolute;
		bottom: 6rem;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.home-video .video-caption h3 {
		font-size: var(--home-h4);
		line-height: 1em;
		font-family: "KTF Concrete", Arial;
		color: var(--red);
		text-align: center;
		margin: 0 2rem;
		flex-shrink: 0;
		position: relative;
		text-transform: uppercase;
	}

	.home-video figure {
		width: 100%;
		height: 100%;
	}

	.home-video figure img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.slideshow.presentation-saison {
		display: none;
	}
}


/* Spectacle Slideshow
---------------------------------------------------- */
.spectacle-slideshow {
	position: relative;
	width: 100%;
	height: 60rem;
	margin: 0 auto;
}

.single-page .spectacle-slideshow {
	width: 60rem;
	height: 33.75rem;
	margin: 0 0 2rem;
}

.single-page .spectacle-slideshow.portrait {
	width: 50rem;
	height: 72rem;
	margin: 0 0 2rem;
}

@media (max-width: 899px) {
	.spectacle-slideshow {
		height: 30rem;
	}

	.single-page .spectacle-slideshow {
		width: 100%;
		height: 30rem;
	}

	.single-page .spectacle-slideshow.portrait {
		width: 36rem;
		height: 51.84rem;
		margin: 0 0 2rem;
	}
}

.spectacle-slideshow .nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;

}

.spectacle-slideshow .slides .slide {
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	width: 100rem;
	height: 100%;
	display: flex;
	opacity: 0;
	/* background-color: white; */
}

.single-page .spectacle-slideshow .slides .slide {
	width: 100%;
}

@media (max-width: 899px) {
	.spectacle-slideshow .slides .slide {
		width: 40rem;
	}
}

.spectacle-slideshow .slides .slide:first-child {
	opacity: 1;
	z-index: 1;
}

.spectacle-slideshow .slides .slide:nth-child(2) {
	opacity: 1;
}

.spectacle-slideshow .slides .slide figure img {
	object-fit: cover;
}

.spectacle-slideshow .slides .slide figure small {
	background-color: white;
}

@media (min-width: 900px) {
	.spectacle-slideshow .slides .slide figure small {
		position: absolute;
		top: 100%;
		left: 100%;
		transform: rotate(-90deg);
		transform-origin: top left;
		text-wrap: nowrap;
	}
}



.slideshow-pagination {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 12;
}

.slideshow-pagination ul {
	position: absolute;
	padding: 0;
	margin: 0;
	list-style-type: none;
	bottom: 2.5rem;
	display: flex;
	justify-content: center;
	width: 0;
}

.slideshow-pagination ul li {
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	background-color: #919191;
	margin: 0 0.5rem;
	flex-shrink: 0;
	cursor: pointer;
}

.slideshow-pagination ul li.active {
	background-color: white;
}


/* Spectacle Single
---------------------------------------------------- */

.single-spectacle-columns {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

@media (max-width: 899px) {
	.single-spectacle-columns .single-spectacle-column {
		width: 100%;
	}
}

@media (min-width: 900px) {
	.single-spectacle-columns {
		width: 100rem;
		flex-direction: row;
	}

	.single-spectacle-columns .single-spectacle-column.left-column,
	.single-spectacle-columns .single-spectacle-column.right-column {
		width: 25rem;
		flex-shrink: 0;
	}

	.single-spectacle-columns .single-spectacle-column.center-column {
		flex-grow: 1;
	}
}

.single-spectacle-header {
	padding: 0 2rem;
	margin: 2rem auto;
	max-width: 100rem;
}

.single-spectacle-page .single-spectacle-header .subtitle,
.single-spectacle-page h1 {
	font-size: var(--home-h2);
	line-height: 1.0em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	width: 100%;
	margin: 0;
}

.single-spectacle-page h1 {
	text-transform: uppercase;
}

.single-spectacle-page h2,
/* deprec */
.single-spectacle-page .headline .archive-single,
.single-spectacle-page .headline .auteur,
.single-spectacle-page .headline .description {
	font-size: var(--home-h3);
	line-height: 1.0em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	margin: 0;
}

.single-spectacle-page .headline .archive-single {
	text-transform: uppercase;
	margin-bottom: 1em;
}

.single-spectacle-page .single-spectacle-column .headline {
	margin: 2rem 0 2rem;
	padding: 0 2rem;
}

.single-spectacle-page .single-spectacle-column .duration {
	text-align: center;
	margin-bottom: 2rem;
}

.single-spectacle-page .single-spectacle-column .duration span {
	font-size: var(--text);
	line-height: 1.2em;
}

.single-spectacle-page .single-spectacle-column .center-column .headline {
	margin: 2rem auto;
}

.single-spectacle-page .single-spectacle-column .center-column .duration {
	text-align: center;
	margin: 0 0 2rem;
}

.single-spectacle-page .single-spectacle-column .center-column .duration span {
	font-size: var(--text);
	line-height: 1.2em;
}

.single-spectacle-aside {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 1.2rem;
	font-variant-numeric: tabular-nums;
	padding: 0 2rem;
}

.single-spectacle-aside a.button {
	display: block;
}

.single-spectacle-aside .blog-links {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

@media (max-width: 899px) {
	.single-spectacle-aside {
		padding-bottom: 4rem;
	}
}

@media (min-width: 900px) {
	.single-spectacle-aside {
		width: 20rem;
		padding: 0;
		gap: 1rem;
	}

	body.big .single-spectacle-aside {
		width: calc(100% - 2rem);
	}
}

.single-spectacle-aside ul.shows {
	border: 1px solid black;
	margin: 0;
	padding: 0 1rem;
	list-style-type: none;
}

.single-spectacle-aside ul.shows li {
	border-bottom: 1px solid black;
	padding: 1rem 0;
	display: flex;
	/* justify-content: space-between; */
}

.single-spectacle-aside ul.shows li:last-child {
	border-bottom: none;
}

.single-spectacle-aside ul.shows li span {
	font-size: var(--text);
	line-height: 1.2em;
}

.single-spectacle-aside ul.shows li span.weekday,
.single-spectacle-aside ul.shows li span.date {
	text-transform: uppercase;
}

.single-spectacle-aside ul.shows li span.weekday {
	flex: 0 0 33%;
}

/* body.big .single-spectacle-aside ul.shows li span.weekday {
  flex: 0 0 25%;
} */
.single-spectacle-aside ul.shows li span.date {
	flex: 1 1 0;
}


.single-spectacle-aside ul.accessibilite {
	list-style-type: none;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0;
	margin: 0;
	position: relative;
}

.single-spectacle-aside ul.accessibilite li img {
	display: block;
	width: 2rem;
	height: auto;
}

.single-spectacle-aside ul.accessibilite li .description {
	position: absolute;
	opacity: 0;
	left: 0;
	top: 2.5rem;
	pointer-events: none;
	font-size: var(--text);
	line-height: 1.2em;
}

.single-spectacle-aside ul.accessibilite li:hover .description {
	opacity: 1;
}

main.single-spectacle-page.simple .simple-button span.normal,
main.single-spectacle-page:not(.simple) .simple-button span.simple {
	display: none;
}

.single-spectacle-page .content {
	margin-bottom: 4rem;
	font-size: var(--text);
	line-height: 1.4em;
}

.single-spectacle-page.simple .content.normal-content,
.single-spectacle-page:not(.simple) .content.simple-content {
	display: none;
}

.single-spectacle-page .content.simple-content {
	font-size: 2.5rem;
	line-height: 1.4em;
}

.single-spectacle-page .content.simple-content ul {
	padding: 0 0 0 1em;
	margin: 0 0 1em;
}

.single-spectacle-page .content.simple-content ul li {
	/* font-size: 2.5em;
  line-height: 2.4em; */
}

@media (min-width: 900px) {
	.single-spectacle-page .content.simple-content {
		/* margin-right: -25rem; */
	}
}

@media (max-width: 899px) {
	.single-spectacle-page .content {
		padding: 0 2rem;
	}
}

.single-spectacle-page .content ul,
.single-spectacle-page .content p {
	margin-top: 0;

}

.single-spectacle-page .content div,
.single-spectacle-page .content ul,
.single-spectacle-page .content p,
.single-spectacle-page .content span {
	font-family: inherit !important;
	font-size: inherit !important;
	/* compat: cancel font-size when it is specified in editor */
}

.single-spectacle-page .credits {
	border: 1px solid black;
	padding: 0 2rem;
	margin: 0 0 4rem;

	font-size: var(--text);
	line-height: 1.4em;
}

@media (max-width: 899px) {
	.single-spectacle-page .credits {
		margin: 0 2rem 4rem;
	}
}

.single-spectacle-page .credits table {
	table-layout: fixed;
	border-collapse: collapse;
	margin: 1.5rem 0;

	width: 100% !important;
}

.single-spectacle-page .credits table tr td {
	width: 50% !important;

	padding: 0;
	vertical-align: top;

	font-size: inherit !important;
	line-height: inherit !important;
}

.single-spectacle-page .credits table tr td:first-child {
	padding-right: 1em;
}

.single-spectacle-page .credits .detail p {}

.single-spectacle-page p {
	/* font-size: var(--text);
  line-height: 1.4em; */
}

.single-spectacle-page .embeds {
	font-size: var(--text);
	line-height: 1.4em;
	margin: 0 0 4rem;
}

.single-spectacle-page iframe,
.single-page-column iframe {
	width: 1em;
	font-size: 50rem;
	display: block;
	margin: 0 auto 2rem;
}

@media (max-width: 899px) {

	.single-spectacle-page iframe,
	.single-page-column iframe {
		font-size: 36rem;
	}
}




.single-spectacle-page .avertissement {
	background-color: var(--red);
	padding: 1rem 2rem 0;
	border: 1px solid black;
	margin: 0 0 4rem;

	font-size: var(--text);
	line-height: 1.4em;
}

@media (max-width: 899px) {
	.single-spectacle-page .avertissement {
		margin: 0 2rem 4rem;
	}
}

.single-spectacle-page .avertissement h3,
.single-spectacle-page .avertissement h4 {
	text-transform: uppercase;
	font-weight: inherit;
	font-size: var(--text);
	line-height: 1.2em;
	margin: 0 0 1em;
}

.single-spectacle-page .avertissement p {
	margin-top: 0;
	/* font-size: var(--text);
  line-height: 1.2em; */
}

.single-spectacle-page .press {
	margin-bottom: 4rem;

	font-size: var(--text);
	line-height: 1.4em;
}

.single-spectacle-page .press h3 {
	text-transform: uppercase;
	font-weight: inherit;
	font-size: var(--text);
	line-height: 1.2em;
	margin: 0 0 1em;
}

.single-spectacle-page .press ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.single-spectacle-page .press ul li {
	margin: 0 0 1em;
	/* font-size: var(--text);
  line-height: 1.2em; */
}

.single-spectacle-page .press ul li a {
	text-decoration: underline;
}

.single-spectacle-prochainement {
	padding: 0 2rem;

	font-size: var(--text);
	line-height: 1.2em;
}

.single-spectacle-prochainement h3 {
	text-transform: uppercase;
	font-weight: inherit;

	margin: 0 0 1em;
}



.button.news-button {
	background-color: var(--green);
}





/* Button
---------------------------------------------------- */

button,
.button {
	color: black;
	font-size: var(--text);
	line-height: 1.2em;
	font-family: "Selecta", Arial;
	font-weight: 400;
	background: white;
	border: none;
	cursor: pointer;
	border-radius: 3px;
	box-shadow: 0 0 2px black;
	text-align: center;
	/* padding: 0.2em 0.5em 0.1em; */
	padding: 0.5rem 1rem;
	text-decoration: none !important;

	display: inline-flex;
	justify-content: center;
	align-items: baseline;
	/* min-height: 0.63em; */
	/* min-width: 2em; */
}

button.loading,
.button.loading {
	opacity: 0.4;
	pointer-events: none;
}

button:hover,
.button:hover {
	background-color: var(--red);
}

input[type=text],
select {
	color: black;
	font-size: var(--text);
	line-height: 1.2em;
	font-family: "Selecta", Arial;
	font-weight: 400;
	background: white;
	border: none;
	border-radius: 3px;
	box-shadow: 0 0 2px black;
	padding: 0.3em 0.5em 0.3em;
}

button.active,
.button.active {
	/* background-color: var(--red); */
	background-color: rgba(255, 255, 255, 0.6);
	/* opacity: 0.3; */
}


/* Agenda
---------------------------------------------------- */

.agenda-container {
	/* min-height: 100vh; */
	max-width: 160em;
	margin: 0 auto;
}

.agenda-container .agenda {
	position: relative;
	display: flex;
	flex-direction: column;
}

.home-agenda {
	padding: 0 2rem;
}

.agenda-header {
	display: flex;
	height: 5rem;
	align-items: center;

	display: none;
}

.agenda-header .agenda-title {
	font-size: var(--home-h3);
	line-height: 1.2em;
	font-family: "KTF Concrete", Arial;
	color: var(--green);
	text-transform: capitalize;
}

@media (min-width: 900px) {
	.agenda-container .agenda {
		display: flex;
		flex-direction: column;
	}

	.agenda-header {
		position: sticky;
		top: 0;
		z-index: 3;
		order: 1;
		background-color: white;
	}

	.agenda-header .agenda-title {
		/* position:relative;
    top: 2em; */
	}
}

.agenda-nav {
	display: flex;
	justify-content: center;
	gap: 1rem;
	align-items: center;
}

form.search {
	display: flex;
	align-items: center;
}

form.search .slider {
	overflow: hidden;
	width: 0;
	margin-left: 0;
	transition: width 250ms;
}

form.search.open .slider {
	width: 13rem;
}

form.search .slider input {
	margin: 0.2rem;
	width: calc(100% - 1rem);
}

.agenda-footer {
	background-color: white;
}

.agenda-footer .agenda-title {
	position: absolute;
	left: 0;

	font-size: var(--home-h4);
	line-height: 1.2em;
	font-family: "KTF Concrete", Arial;
	color: var(--red);
	text-transform: capitalize;
}

@media (min-width: 900px) {
	.agenda-footer {
		/* position: absolute;
    top: 0; */
		display: flex;
		/* height: 4rem; */
		align-items: center;
		/* left: 25%;
    width: 50%; */
		justify-content: center;

		position: sticky;
		top: 0;
		z-index: 4;
		/* height: 5rem; */
		padding: 2em 0;

		order: 2
	}
}

@media (max-width: 899px) {
	.agenda-header {
		justify-content: center;
	}

	.agenda-footer {
		position: sticky;
		/* bottom: 0; */
		top: 0;
		z-index: 2;
	}

	.agenda-nav {
		padding: 2rem;
		background-color: white;
	}

	.agenda-footer .agenda-title {
		display: none;
	}


}


/* Agenda List
---------------------------------------------------- */
.list-body {
	/* border: 1px solid black; */
	position: relative;
	order: 3;
}

.not-today {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--red);
	font-size: var(--home-h1);
	line-height: 1.2em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	padding: calc(100vh / 3) 0;
}

.list-body .spectacle-row {
	display: flex;
	/* height: 22.3em; */
	/* height: 21.9375rem; */
	height: 14.0625rem;
	border-top: 1px solid black;
	/* background-color: white; */
	border-right: 1px solid black;
	border-left: 1px solid black;
}

.list-body .spectacle-row:last-child {
	border-bottom: 1px solid black;
}

.list-body .spectacle-row .media {
	display: flex;
	width: 25%;
	border-right: 1px solid black;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}

.list-body .spectacle-row .media figure {
	display: flex;
	flex-grow: 1;
	justify-content: center;
	padding: 2rem 0;
}

.list-body .spectacle-row.full .media figure {
	padding: 0;
}

.list-body .spectacle-row .media img {
	display: block;
	width: auto;
	height: 100%;
}

.list-body .spectacle-row.full .media img {
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.list-body .spectacle-row .media .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 400ms;
}

.list-body .spectacle-row.active .media .overlay,
.list-body .spectacle-row:hover .media .overlay {
	opacity: 1;
}


/* Saison 2025-2026
---------------------------------------------------- */

/* .list-body .spectacle-row:not(.full) .media figure {
	padding: 2rem 9.5rem;
} */



/* Agenda List Overlay Video
---------------------------------------------------- */
.overlay-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.overlay-video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.overlay-gif {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.overlay-gif img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


.list-body .spectacle-row .text {
	flex-grow: 1;
	display: flex;
}

.list-body .spectacle-row.active .text,
.list-body .spectacle-row:hover .text {
	/* background-color: black; */
}

.list-body .spectacle-row.active .text .spectacle-main,
.list-body .spectacle-row:hover .text .spectacle-main {
	/* color: white; */
}

.list-body .spectacle-row .text .spectacle-main {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 0.6rem 1rem 0.8rem;
}

.list-body .spectacle-row .text .spectacle-main .title,
.list-body .spectacle-row .text .spectacle-main .subtitle,
.list-body .spectacle-row .text .spectacle-main .auteur,
.list-body .spectacle-row .text .spectacle-main .description,
.list-body .spectacle-row .text .spectacle-main .dates {
	font-size: var(--home-h4);
	line-height: 1.2em;
	font-family: "KTF Concrete", Arial;
}

.list-body .spectacle-row .text .spectacle-main .title,
.list-body .spectacle-row .text .spectacle-main .subtitle {
	/* color: var(--red); */
}

.list-body .spectacle-row .text .spectacle-main .title {
	text-transform: uppercase;
}

.list-body .spectacle-row .text .spectacle-main .subtitle {}

.list-body .spectacle-row .text .spectacle-main .description {}

.agenda.archives .list-body .spectacle-row .text .spectacle-main .description {
	display: none;
	/* -> compat: never show this field because it over-bloated in spectacle before 2024 */
}

.list-body .spectacle-row .text .spectacle-main .dates {
	flex-grow: 1;
	display: flex;
	align-items: flex-end;
}

.list-body .spectacle-row .text .spectacle-nav {
	display: flex;
	flex-direction: column;
	/* flex-shrink: 0; */
	padding: 1rem;
	gap: 1rem;
	flex: 0 0 9rem;
}

.list-body .spectacle-row .text .spectacle-nav .spectacle-button {
	display: flex;
	color: black;
}

.list-body .spectacle-row .text .spectacle-nav .spectacle-button a {
	flex-grow: 1;
}

.list-body .spectacle-row.active button,
.list-body .spectacle-row:hover button,
.list-body .spectacle-row.active .button,
.list-body .spectacle-row:hover .button {
	/* color: black; */
}

.list-body .spectacle-row.active button.primary,
.list-body .spectacle-row:hover button.primary,
.list-body .spectacle-row.active .button.primary,
.list-body .spectacle-row:hover .button.primary {
	background-color: var(--red);
	/* color: black; */
}

.list-body .spectacle-row.active .spectacle-nav:hover button.primary:not(:hover),
.list-body .spectacle-row:hover .spectacle-nav:hover button.primary:not(:hover),
.list-body .spectacle-row.active .spectacle-nav:hover .button.primary:not(:hover),
.list-body .spectacle-row:hover .spectacle-nav:hover .button.primary:not(:hover) {
	background-color: white;
}

@media (max-width: 899px) {
	.list-body .spectacle-row {
		flex-direction: column;
		height: auto;
		margin-bottom: 2rem;
		border-bottom: 1px solid black;
	}

	.list-body .spectacle-row .media {
		width: 100%;
		height: 20.25rem;
		border-right: none;
	}

	.list-body .spectacle-row .text {
		height: 20.25rem;
		border-top: 1px solid black;
		align-items: center;
	}

	.list-body .spectacle-row .text .spectacle-main {
		text-align: center;
		padding: 2rem;
	}

	.list-body .spectacle-row .text .spectacle-nav {
		display: none;
	}

	.list-body .spectacle-row .text .spectacle-main .dates {
		flex-grow: 0;
		margin-top: 1.0em;
		justify-content: center;
	}
}

@media (min-width: 1440px) {
	.list-body .spectacle-row {
		/* height: 21.9375rem; */
		/* height: 16.8375rem; */
		height: 17.0156rem;
	}

	.list-body .spectacle-row .text .spectacle-main .title,
	.list-body .spectacle-row .text .spectacle-main .subtitle,
	.list-body .spectacle-row .text .spectacle-main .auteur,
	.list-body .spectacle-row .text .spectacle-main .description,
	.list-body .spectacle-row .text .spectacle-main .dates {
		font-size: var(--home-h3);
		line-height: 1.0em;
	}
}

@media (min-width: 1920px) {
	.list-body .spectacle-row {
		/* height: 21.9375rem; */
		height: 21.9375rem;
	}

}

/* Saison 2025-2026
---------------------------------------------------- */


.list-body .spectacle-row a {
	color: inherit;
}

.list-body .spectacle-row .text {
	/* background-color: white; */
}

.list-body .spectacle-row.bgcolor-black .text {
	/* background-color: white;
	color: black; */
}

.list-body .spectacle-row.bgcolor-black:hover .text,
.list-body .spectacle-row.bgcolor-white:hover .text {
	/* background-color: black;
	color: white; */
}

.list-body .spectacle-row.white:hover .text,
.list-body .spectacle-row.white.active .text {
	background-color: black;
	color: white;
}


.list-body .spectacle-row:not(:hover, .active) .text {
	background-color: white;
	color: black;
}



/* Calendar
---------------------------------------------------- */

.calendar-body {
	order: 3;
}

.calendar-cells-header {
	display: flex;
}

.calendar-header-cell {
	position: relative;
	width: 14.2857%;
	display: flex;
	justify-content: flex-end;

	font-size: var(--text);
	text-transform: lowercase;
	padding: 0.25em;
}

.calendar-cells-body {
	border-left: 1px solid black;
	border-top: 1px solid black;
	display: flex;
	flex-wrap: wrap;
}

.calendar-cell {
	position: relative;

	width: 14.2857%;
	height: 8.0357rem;
	border-right: 1px solid black;
	border-bottom: 1px solid black;

	display: flex;
}

/* .calendar-cell-content {
  display: flex;
  flex-grow: 1;
} */
@media (min-width: 1440px) {
	.calendar-cell {
		/* width: 14.2857%; */
		height: 12.5357em;
	}
}

@media (max-width: 899px) {
	.calendar-cell {
		height: 5.1428rem;
	}

	.calendar-cells-body {
		/* min-height: calc((40em - 4em)*6/7); */
	}
}

.calendar-cell .day {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0 0.25em;
	text-transform: lowercase;
	pointer-events: none;

	font-size: var(--home-h3);
	line-height: 1.2em;
	font-family: "KTF Concrete", Arial;
	color: var(--green);
}

@media (max-width: 899px) {
	.calendar-cell .day {
		font-size: var(--text);
		line-height: 1.2em;
	}
}

.calendar-cell.today .day {
	color: var(--red);
}

/* .calendar-cell.offset .day,
.calendar-cell.offset .shows {
  opacity: 0.25;
} */
.calendar-cell.offset .media,
.calendar-cell.offset .day {
	opacity: 0.25;
}

.calendar-cell .shows {
	flex-grow: 1;
	display: flex;
}

.calendar-cell .shows .show {
	min-width: 0;
	min-height: 0;
	flex-grow: 1;
	display: flex;
}

.calendar-cell.count-2 .shows .show {
	width: 50%;
}

.calendar-cell.count-2 .shows .show:first-child {
	border-right: 1px solid black;
}

.calendar-cell.count-4 .shows {
	flex-wrap: wrap;
}

.calendar-cell.count-4 .shows .show {
	width: 50%;
	height: 50%;
	flex: 0 0 50%;
}

.calendar-cell.count-4 .shows .show:nth-child(2n + 1) {
	border-right: 1px solid black;
}

.calendar-cell.count-4 .shows .show:nth-child(1),
.calendar-cell.count-4 .shows .show:nth-child(2) {
	border-bottom: 1px solid black;
}

.calendar-cell .shows .show .media {
	display: flex;
	flex-grow: 1;
	min-width: 0;
}

.calendar-cell .shows .show figure {
	display: flex;
	flex-grow: 1;
	min-width: 0;
}

.calendar-cell .shows .show figure img,
.calendar-cell .shows .show figure video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.calendar-cell .shows .show.full figure img,
.calendar-cell .shows .show.full figure video {
	object-fit: cover;
	object-position: center;
}

.calendar-cell .shows .show h3.title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: var(--home-h5);
	line-height: 1.2em;
	font-family: "KTF Concrete", Arial;
	color: var(--red);
	text-align: center;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	background-color: rgba(255, 255, 255, 0.25);
	text-shadow: 0 0 16px white;
}

.calendar-cell .shows .show:hover h3.title {
	opacity: 1;
}

.calendar-cell .shows .show h3.title span {
	display: block;
	text-overflow: ellipsis;
	/* overflow: hidden; */
	/* white-space: nowrap; */

	/* max-height: 2.6em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; */
}

@media (max-width: 899px) {
	.calendar-cell .shows .show h3.title {
		display: none;
	}
}

/* Saison 2025-2026
---------------------------------------------------- */
.calendar-cell .day {
	font-size: 2rem;
	line-height: 1.2em;
	color: black;
	text-shadow: 0 0 2px white;
}

@media (max-width: 899px) {
	.calendar-cell .day {
		font-size: var(--text);
		line-height: 1.2em;
	}
}

.calendar-cell .shows .show h3.title {
	font-size: 1.5rem;
	line-height: 1em;
	color: black;
	background-color: rgba(255, 255, 255, 0.15);
	text-shadow: 0 0 2px white;
}

.calendar-cell .shows .show:not(.full) .media figure {
	padding: 10% 0;
}

/* .calendar-cell.count-2 .shows .show:not(.full) .media figure {
	padding: 10% 16%;
} */


/* Blog
---------------------------------------------------- */
body.blog {
	background-color: var(--red);
}

.blog-page {
	width: 100%;
	max-width: 104rem;
	margin: 0 auto;
	position: relative;
}

.blog-page-header {
	margin: 0 2rem;
}

.blog-page h1 {
	text-transform: uppercase;
	font-size: var(--news-h1);
	line-height: 1.2em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	margin: 0.1em 0;
}

@media (max-width: 899px) {
	.blog-page h1 {
		font-size: 8em;
		line-height: 1.2em;
	}
}

.blog-post {
	width: 100%;
	padding: 1rem 2rem 4rem;
}

@media (min-width: 900px) {
	.blog-post {
		width: 50%;
		padding: 1rem 0 4rem;
	}
}

.blog-post.post-index-0 {
	width: 100%;
}

.blog-post h2 {
	font-size: var(--news-h2);
	line-height: 1.0em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	margin: 0;
}

.blog-post .date {
	font-size: var(--text);
	line-height: 1.2em;
	text-align: center;
	margin: 1em 0;
}

.blog-post .media {
	/* display: block; */
	display: flex;

}

.blog-post a.media img {
	display: block;
	width: 100%;
	height: auto;
}

.blog-post a.media img.portrait {
	display: block;
	width: 75%;
	height: auto;
	margin: 0 auto;
}

.blog-post .excerpt {
	font-size: var(--text);
	line-height: 1.2em;
}

.blog-post .excerpt p {
	margin: 0 0 1em;
}

.blog-post a.readmore {
	display: block;
	font-size: var(--text);
	line-height: 1.2em;
	text-align: center;
	text-decoration: underline;
}

.blog-post.post-index-0 h2 {
	/* width: 50%;
  margin: auto; */
}

.blog-post.post-index-0 .excerpt {
	/* width: 50%;
  margin: auto; */
}

.blog-post.post-index-0 .media {
	/* width: 75%;
  margin: auto; */
}

.blog-post:not(.post-index-0) .single-column figure {
	width: 40rem;
}

.blog-post:not(.post-index-0) .single-column figure.panorama {
	width: 100%;
}

@media (max-width: 899px) {
	.blog-post:not(.post-index-0) .single-column figure {
		width: 100%;
	}
}


/* Blog Single
---------------------------------------------------- */
.blog-single {
	/* width: 100%;
  max-width: 50em;
  margin: 0 auto;
  position: relative; */
}

.blog-single h1 {
	font-size: var(--news-single-h1);
	line-height: 1.2em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	margin: 0.9em auto 0.2em;
	width: 100%;
	/* max-width: 20em; */
	padding: 0 2rem;
}

@media (max-width: 899px) {
	.blog-single h1 {
		font-size: 3.8rem;
		line-height: 1.1em
	}
}

.blog-single .date {
	font-size: var(--text);
	line-height: 1.2em;
	text-align: center;
	margin-bottom: 4rem;
}

.blog-single .content {
	/* width: 100%;
  max-width: 50em;
  margin: 0 auto;
  position: relative; */
}

.blog-single .content p {
	/* font-size: var(--text);
  line-height: 1.2em; */
}

.blog-single .content figure {
	margin: 0 -10rem;
	/* display: flex;
  justify-content: center; */
}

@media (max-width: 899px) {
	.blog-single .content figure {
		margin: 0 -2rem;
	}
}

.blog-single .content figure img {
	/* display: block;
  max-width: 75em;
  height: auto;; */
}

.blog-single .content figure .wp-caption {
	/* width: auto !important;
  position: relative; */
}

/* .blog-single .content figure .wp-caption p.wp-caption-text {
  transform: rotate(-90deg) translate(0em, 6.5em);
  transform-origin: bottom left;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  font-size: 0.875em;
} */




/* Single Page
---------------------------------------------------- */


.main-page-content {
	width: 100%;
	max-width: 50rem;
	margin: 0 auto;
}

.main-page-content.simple-content {
	max-width: 75rem;
}

.single-column {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (min-width: 900px) {
	.single-column {
		width: 50rem;
		margin: 0 auto;
	}
}

.single-page-columns {
	width: 100%;
	display: flex;
}

@media (max-width: 899px) {
	.single-page-columns {
		flex-direction: column;
	}

	.single-page-columns .single-page-column {
		width: 100%;
	}
}

@media (min-width: 900px) {
	.single-page-columns {
		width: 100rem;
		display: flex;
		margin: 0 auto;
	}

	.single-page-columns .single-page-column.left-column,
	.single-page-columns .single-page-column.right-column {
		width: 25rem;
		flex-shrink: 0;
	}

	.single-page-columns .single-page-column.center-column {
		flex-grow: 1;
		min-width: 0;
	}

	/* main.page-mediations .single-page-columns {
		position: absolute;
		left: 0;
		right: 0;
		z-index: 0;
	} */
}

.page-header {
	padding: 0 2rem;
}

.single-page h1 {
	text-transform: uppercase;
	font-size: var(--page-h1);
	line-height: 1.0em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	width: 100%;
	/* max-width: 100em; */
	margin: 0.4em auto 0.2em;
	/* padding: 0 2rem; */
}

@media (max-width: 1439px) {
	.single-page h1 {
		/* font-size: 5.2em; */
		font-size: 8rem;
	}
}

@media (max-width: 899px) {
	.single-page h1 {
		/* font-size: 5.2em; */
		font-size: 4em;
		line-height: 1.0em;

		margin: 0 auto 1em;
		padding: 1.6em 0 0;
	}
}

.single-page h2 {
	font-size: var(--page-h2);
	line-height: 1.0em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	margin: 1em 2rem;
	text-transform: uppercase;
}

.single-page h3 {
	font-size: var(--page-h2);
	line-height: 1.0em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	margin: 1em 0;
}

.single-page h4,
.single-page h5 {
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
}

.single-page h4 {
	text-transform: uppercase;
	margin: 1em 0 0;
}

.single-page h5 {
	margin: 0;
}

.content a {
	text-decoration: underline;
}

.single-page .single-page-column .center-column .headline {
	margin: 2rem auto;
}

.single-page .subpages-nav {
	/* position: sticky;
  top: 0; */
	display: flex;
}

.single-page .subpages-nav ul {
	margin: 0;
	padding: 0 2rem;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	width: 100%;
}

@media (min-width: 900px) {
	main.single-page.page-mediations .subpages-nav {
		position: absolute;
		width: 25rem;
	}

	.single-page .subpages-nav ul {
		margin: 9rem 0 0;
		padding: 0;
		width: 75%;
		gap: 1rem;
	}

	/* body.big .single-page .subpages-nav ul {
    width: calc(100% - 2rem);
  } */
}

.single-page .subpages-nav ul li {}

.single-page .subpages-nav ul li a {
	display: block;
}

.single-column .content .wp-caption,
.single-column figure {
	/* display: flex;
  justify-content: center; */
	position: relative;
	margin-bottom: 1.5em;
}

.single-column .content .wp-caption img,
.single-column figure img {
	width: 100%;
	height: auto;
	display: block;
}

.single-page figure.main-page-media {
	/* max-width: 75em;
  margin: 0 auto; */
}

.single-page figure.subpage-media {
	/* margin: 0 -12.5em; */
}

.single-column figure.panorama {
	width: 60rem;
}

@media (max-width: 899px) {
	.single-column figure.panorama {
		width: 100vw;
	}
}

.single-column .content p figure.panorama {
	font-size: calc(1/var(--text));
}

.single-column .content .wp-caption p.wp-caption-text {
	font-size: var(--caption-text) !important;
	line-height: 1.2em !important;
}

@media (min-width: 900px) {

	.single-column .content .wp-caption p.wp-caption-text,
	.single-column figure figcaption {
		/* transform: translate(1.5em, 0em) rotate(-90deg);
    transform-origin: bottom left;
    position: absolute;
    left: 100%;
    bottom: 0;
    margin: 0; */

		margin: 0.3rem 0;
		/* white-space: nowrap; */
	}
}

.single-column .content figure {
	margin-bottom: 2rem;
}

.single-column .content figure .wp-caption {
	width: auto !important;
}

.single-column .content>.wp-caption {
	margin: 0 -5rem;
	width: auto !important;
}

.single-column .content>p>img {
	margin: 0 -5rem;
	width: 60rem;
	height: auto;
	font-size: 0.7059rem;
}

@media (max-width: 899px) {
	.single-column .content>p>img {
		margin: 0;
		width: 36rem;
	}

	.single-column .content>.wp-caption {
		margin: 0;
	}
}

.single-column .content {
	width: 100%;
	min-width: 0;
	font-size: var(--text);
	line-height: 1.2em;
}

@media (max-width: 899px) {
	.single-column .content {
		padding: 0 2rem;
	}
}

.single-column .content span,
.single-column .content div,
.single-column .content p:not(.wp-caption-text) {
	font-size: inherit !important;
	line-height: inherit !important;
}

.single-column .content p {
	margin-top: 0;
}

.single-page .content img {
	/* display: inline;
  margin: 0 2em 0 0; */

	display: block;
	width: 100%;
	height: auto;
}

.subpage-columns {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
}

.subpage-columns .subpage-column {
	flex: 1 1 0;
}

@media (min-width: 900px) {
	.subpage-columns {
		flex-direction: row;
	}
}

/* .subpage-columns .subpage-column p {
  font-size: var(--text);
  line-height: 1.2em;
  margin-top: 0;
} */



.single-column .content.simple-content {
	font-size: 2.5em;
	line-height: 1.4em;
}

.single-page .content.simple-content ul {
	padding: 0 0 0 2em;
	margin: 0 0 1em;
}

.single-page .content.simple-content ul li {
	/* font-size: 2.5em;
  line-height: 2.4em; */
	margin-bottom: 1em;
}

@media (min-width: 900px) {
	.single-page .content.simple-content {
		/* margin-right: -25rem;
    width: calc(100% + 25rem); */
	}
}



/* Single Page UL
---------------------------------------------------- */

.single-page .content ul {
	padding: 0 0 0 1.75rem;
	margin: 0 0 2rem;
}

.single-page .content ul li {
	/* font-size: var(--text);
  line-height: 1.2em; */
}


/* Single Page Table
---------------------------------------------------- */

.single-page table {
	table-layout: auto;
	border-collapse: separate !important;
	width: 100% !important;
	height: auto !important;
	border: 1px solid black;
	padding: 1.75rem 2rem;
	margin-bottom: 2rem;
	background-color: white;
	border-spacing: 0;
	font-variant-numeric: tabular-nums;
}

.single-page table tr {
	width: auto !important;
	height: auto !important;
}

.single-page table td {
	width: auto !important;
	height: auto !important;
	padding: 0;
	/* font-size: var(--text);
  line-height: 1.2em; */
	min-width: 5em;
	vertical-align: top;
}

.single-page .content table td p {
	font-size: inherit;
}

.single-page .content table td h4 {
	margin-top: 0;
}

.single-page .content table td p:first-child {
	margin-top: 0;
}

.single-page .content table td p:last-child {
	margin-bottom: 0;
}


/* Single Page Template Partenaires
---------------------------------------------------- */

.single-page section.template-partenaires .content {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0 -12.5rem;
	justify-content: center;
}

.single-page section.template-partenaires .content figure {
	width: 15rem;
}


.partenaire-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	/* margin: 0 -12.5rem; */
	justify-content: center;
}

.partenaire-logos figure {
	width: 15rem;
	display: flex;
	align-items: center;

}




/* Single Page Template Replique
---------------------------------------------------- */

main.single-page.template-replique {
	background-color: var(--green);
}

main.single-page.template-replique table td {
	border-bottom: 1px solid black;
	padding: 0.5rem 0;
}

main.single-page.template-replique table tr:last-child td {
	border-bottom: none;
}




/* Page Médiation
---------------------------------------------------- */
.mediation-column {
	width: 100%;
	max-width: 50rem;
	margin: 0 auto;
}

.mediation-content {
	margin: 2rem 0;
}

@media (max-width: 899px) {
	.mediation-category-description {
		margin: 0 2rem;
	}
}

.mediation-spectacles {
	padding: 0 2rem;
}

.single-page .mediation h3,
.blog-single h3 {
	font-size: var(--page-h2);
	line-height: 1.0em;
	font-family: "KTF Concrete", Arial;
	text-align: center;
	margin: 1em 2rem;
	text-transform: inherit;
}

.single-page .mediation h4,
.relation-spectacles h4,
.blog-single h4 {
	text-transform: uppercase;
	font-size: var(--text);
	line-height: 1.2em;
	font-weight: inherit;
	margin: 1em 0 1em;
}

.page-mediations section {
	padding: 1px 0;
}

.mediation-category-description p {
	font-size: var(--text);
	line-height: 1.2em;
}


/* Newsletter
---------------------------------------------------- */
body.page-newsletter {
	display: flex;
	align-items: flex-end;
}

.newsletter-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	z-index: 10;
}

.newsetter-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.9);
}

.newsetter-body {
	/* flex-grow: 1; */
	display: flex;
	position: relative;
	z-index: 2;
}

.newsetter-body iframe {
	height: 100% !important;
}



/* Footer
---------------------------------------------------- */
footer {
	/* background-color: var(--green); */
	background-color: var(--red);
}

.footer-columns {
	display: flex;
	border-top: 1px solid black;
	/* margin-top: 4em; */
	padding: 0.5rem 1rem;
}

.footer-columns .footer-column {
	padding: 1rem;
}

@media (min-width: 900px) {
	.footer-columns .footer-column {
		width: 25%;
	}
}

@media (max-width: 899px) {
	.footer-columns {
		flex-direction: column;
	}
}

.footer-columns .footer-column p {
	font-size: var(--text);
	line-height: 1.2em;
	margin-top: 0;
}

.footer-columns .footer-column ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.footer-columns .footer-column ul li {
	font-size: var(--text);
	line-height: 1.2em;
}

/* Cookie Popup
---------------------------------------------------- */
.cookies-popup {
	position: fixed;
	z-index: 20;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: white;
	border-top: 1px solid black;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: var(--text);
	padding: 0 2rem;
}



#intro {
	position: fixed;
	z-index: 50;
	width: 100%;
	height: 100%;
	top: 0;
	display: flex;
	align-items: center;
	opacity: 1;

	transition: transform 600ms, opacity 100ms;
	transition-delay: 0ms, 500ms;
	transform-origin: 50% center;
	/* transition-timing-function: cubic-bezier(0.14, 0.64, 0.45, 0.96), cubic-bezier(0.14, 0.64, 0.45, 0.96); */
	transition-timing-function: cubic-bezier(0.19, 0.44, 0.52, 0.8), cubic-bezier(0.59, 0.06, 1, 0.68);

	background-color: white;
}

/* body:not(.has-intro) #intro {
  display: none;
} */
#intro img {
	display: block;
	width: 100%;
	height: auto;
	background-color: white;

	transition: transform 600ms;
	transform-origin: 34.3% 50%;
	/* transition-timing-function: cubic-bezier(0.36, 0, 0.98, 0.32); */
	transition-timing-function: cubic-bezier(0.56, 0.02, 1, 0.18);
}

#intro.done {
	opacity: 0;
	transform: translate(25rem, 0);
	/* transform: scale(50) translate(25em, -1em); */

	/* transform: translate(1323em, -41em) scale(53); */

	/* transform-origin: center; */

	background-color: transparent;
}

#intro.done img {
	transform: scale(150);

	/* transform: scale(50) translate(25em, -1em); */

	/* transform: translate(1323em, -41em) scale(53); */


}



#intro svg {
	display: block;
	width: 100%;
	height: auto;
}

/* ----------- */
