@charset "UTF-8";


.thumbnail {
	background: var(--light-color);
}
.thumbnail.empty > * {
	opacity: 0;
}



/*******************************/
/********** SIGNATURE **********/
/*******************************/

.footer-signature {
	display: flex;
	padding: 1em;
	pointer-events: none;
}
.footer-signature svg {
	width: 3em;
	margin: 0;
}
@media (max-width: 1000px) {
	.footer-signature {
		justify-content: center;
	}
}
@media (min-width: 1000px) {

	.footer-signature {
		position: fixed;
		right: 0;
		bottom: var(--footer-height);
		width: 100%;
		justify-content: flex-end;
	}
}

/**************************/
/********** POST **********/
/**************************/

h1 + .post-infos,
.post-infos {
	margin-top: 0 !important;
}
.post-thumbnails {
	display: grid;
	grid-template-columns: 1fr 2fr; /* First column half width of second */
	grid-template-rows: min-content; /* Row height based on smallest content */
	gap: calc(var(--gutter-gap) / 2);

}
.post-thumbnails .thumbnail {
	height: 100%;
	margin: 0;
	aspect-ratio: initial;
}
.post-thumbnails .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio */
    display: block;
	aspect-ratio: initial !important;
}

.post-thumbnails .thumbnail.portrait {
	aspect-ratio: 1/1;
}
.post-thumbnails .pov {
	aspect-ratio: 2/1;
}

/**************************/
/********** TAGS **********/
/**************************/

.inline .tag {
	margin-left:.5em;
}

/***************************/
/***************************/
/********** STYLE **********/
/***************************/
/***************************/

* {
	-webkit-box-sizing:border-box;
	   -moz-box-sizing:border-box;
	        box-sizing:border-box;
}
html {
	font-size:100%;
}
html,
input,
textarea,
select,
button {
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	-webkit-text-size-adjust:100%;
}
h1, h2, h3, h4, h5, h6,
ul, ol,
p, a, span,
blockquote, label, div, table,
input, textarea, button, select {
	margin:0;
	padding:0;
	font-weight:inherit;
}
p {
	font-size:inherit;
	line-height:inherit;
	color:inherit;
	text-shadow:inherit;
}
b, strong, del,
i, em {
	font-size:inherit;
	line-height:inherit;
}
sup {
	line-height: 0;
}

/********** DEV **********/

pre {
	font-size:.625em;
	margin:0 !important;
}

/********** HR **********/

hr {
	width:100%;
	border:0;
	border-bottom:solid var(--logo-line-height);
}
hr.blank {
	border:0 !important;
}

/********** LIST + INLINE **********/

.list > * {
	display:block;
	margin-left:0;
	padding-left:0;
}
.inline {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
}
.inline > * {
	display:inline-block;
	vertical-align:middle;
}

/********** @MEDIA **********/

@media screen and (max-device-width:320px) {
	body {
		-webkit-text-size-adjust:none;
	}
}

/****************************/
/****************************/
/********** CUSTOM **********/
/****************************/
/****************************/

.hidden {
	position:absolute;
	font-size:0 !important;
	padding:0 !important;
}
.disabled {
	opacity:.5;
	pointer-events:none;
}
.centered {
	text-align:center;
}
.uppercase {
	text-transform: uppercase;
}

/*****************************/
/********** IS-LAST **********/
/*****************************/

.is-last {
	margin-left:auto !important;
}
.columns .is-last {
	margin-left:auto !important;
	min-width:auto;
	white-space:nowrap;
	-webkit-box-flex:0;
	-webkit-flex-grow:0;
	   -moz-box-flex:0;
	    -ms-flex-positive:0;
	        flex-grow:0;
}

/********************************/
/********** BLOCKQUOTE **********/
/********************************/

blockquote > * {
	display:block;
}
blockquote cite {
	font-size:.875em;
	font-style: normal;
	text-transform: uppercase;
	margin-top:0;
}

/***************************/
/***************************/
/********** EVENT **********/
/***************************/
/***************************/

/****************************/
/********** CUSTOM **********/
/****************************/

.event-title,
.event-subtitle {
	text-transform: uppercase;
	line-height:1em;
}
.event-dates {
	text-transform: uppercase;
}
.event-dates i {
	font-style:inherit;
}
.event-location {
	text-transform: uppercase;
}
.event-around,
.event-around > *,
.event-distribution,
.event-distribution > * {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap:.5em;
	line-height:1.375em;
}
.event-around > *,
.event-distribution > * {
	gap:0;
	margin:0;
	padding:0;
}
.event-distribution .title {
	text-transform: uppercase;
}
.event-around .title {
	font-size:2em;
	line-height:1em;
	text-transform: uppercase;
}

/************************************/
/********** EVENT-PARTNERS **********/
/************************************/

.event-partners {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	gap:0;
}
.event-partners figure {
	margin:0;
	width:25%;
	-webkit-filter: grayscale(1);
	        filter: grayscale(1);
}

/***********************************/
/********** EVENT-REVIEWS **********/
/***********************************/

.event-reviews {
	font-size:.75em;
}
.event-reviews > * + * {
	margin-top:.5em;
}

/*******************************/
/*******************************/
/********** IMG / SVG **********/
/*******************************/
/*******************************/

/*
img
svg
picture
.background
*/

/****************************/
/********** FIGURE **********/
/****************************/

figure {
	display:block;
	height:auto;
	max-width:100%;
	margin:0;
	border:0;
}
figure img {
	width:100%;
}
figure figcaption {
	font-size:.75em;
	margin-top:-webkit-calc(var(--global-spacing) / 2);
	margin-top:-moz-calc(var(--global-spacing) / 2);
	margin-top:calc(var(--global-spacing) / 2);
}

/*************************/
/********** IMG **********/
/*************************/

img {
	display:block;
	height:auto;
	max-width:100%;
	margin:0 auto;
	border:0;
}

/********** IMG WITHIN TEXT **********/

.alignleft {
	float:left;
	margin:0 1rem 0 0;
}
.alignright {
	float:right;
	margin:0 0 0 1rem;
}
.aligncenter {
    display:block;
}
.alignleft:after,
.alignright:after,
.aligncenter:after {
	content:"";
    display:block;
    clear:both;
}

/*************************/
/********** SVG **********/
/*************************/

svg {
	display:block;
	-webkit-transform:translate3d(0,0,0);
	   -moz-transform:translate3d(0,0,0);
	        transform:translate3d(0,0,0);
	-webkit-backface-visibility:hidden;
	   -moz-backface-visibility:hidden;
	        backface-visibility:hidden;
}
figure > svg {
	display:block;
	height:100%;
	width:100%;
	margin:0 auto;
}

/**************************/
/********** ICON **********/
/**************************/

.icon {
	max-width:2em;
}
body:not(.introduced) main .icon + h2,
body:not(.introduced)  main .icon + h3 {
	margin-top:calc(var(--global-spacing) / 2) !important;
}

/****************************/
/********** RATIOS **********/
/****************************/

.aspect-ratio-1-1 {
	aspect-ratio:1/1;
}
.aspect-ratio-2-3 {
	aspect-ratio:2/3;
}
.aspect-ratio-16-9 {
	aspect-ratio:16/9;
}

/** containing .aspect-ratio-xxx **/

[class*="aspect-ratio-"] > *,
[class*="aspect-ratio-"] img {
	display:block;
	height:100%;
	width:100%;
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: inherit;
}

/*****************************/
/********** GALLERY **********/
/*****************************/

.gallery {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.gallery img {
	width:100%;
	max-width:none;
}
.gallery figcaption {
	font-size:.875em;
}
.gallery-toggle:hover img {
	opacity:.5;
}

/*******************************/
/*******************************/
/********** THUMBNAIL **********/
/*******************************/
/*******************************/

/*
default = ratio : 2/1;
artists / gallery = ratio 8/5;
*/

.thumbnail {
	position:relative;
	width:100%;
	background:var(--primary-color);
}
.thumbnail video,
.thumbnail img {
	display:block;
	/*height:100%;*/
	width:100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

/********** RATIO **********/

.thumbnail,
.thumbnail video,
.thumbnail img {
	aspect-ratio:2/1;
}
.grid.artists .thumbnail,
.grid.artists .thumbnail img,
.grid.artists .thumbnail video,
.grid.gallery .thumbnail,
.grid.gallery .thumbnail img,
.grid.gallery .thumbnail video {
	aspect-ratio: 8/5;
}

/********** POSITIONS **********/

.thumbnail.top-left img {
	-o-object-position: top left;
	   object-position: top left;
}
.thumbnail.top-center img {
	-o-object-position: top center;
	   object-position: top center;
}
.thumbnail.top-right img {
	-o-object-position: top right;
	   object-position: top right;
}
.thumbnail.center-left img {
	-o-object-position: center left;
	   object-position: center left;
}
.thumbnail.center-center img {
	-o-object-position: center center;
	   object-position: center center;
}
.thumbnail.center-right img {
	-o-object-position: center right;
	   object-position: center right;
}
.thumbnail.bottom-left img {
	-o-object-position: bottom left;
	   object-position: bottom left;
}
.thumbnail.bottom-center img {
	-o-object-position: bottom center;
	   object-position: bottom center;
}
.thumbnail.bottom-right img {
	-o-object-position: bottom right;
	   object-position: bottom right;
}

/********** EMPTY **********/

.thumbnail.empty:after {
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate3d(-50%,-50%,0);
	   -moz-transform:translate3d(-50%,-50%,0);
	        transform:translate3d(-50%,-50%,0);
	font-size:.875em;
	line-height:1em;
	text-transform: uppercase;
	opacity:.5;
}

/********** SIZES **********/

.thumbnail.small {
	max-height:3rem;
	max-width:3rem;
}

/********************************/
/********************************/
/********** BACKGROUND **********/
/********************************/
/********************************/

.background-container {
	position:absolute;
	z-index:-1;
	top:0;
	left:-100%;
	right:-100%;
	height:100%;
	width:auto;
	overflow:hidden;
	padding:0 !important;
	margin:0 !important;
}
.background {
	position:absolute;
	z-index:-1;
	top:0;
	left:0;
	height:100%;
	width:100%;
	margin:0 !important;
	padding:0 !important;
	max-width:none;
	-webkit-background-size:cover !important;
	   -moz-background-size:cover !important;
	     -o-background-size:cover !important;
	        background-size:cover !important;
	background-repeat:no-repeat !important;
	background-position:center center !important;
}
.background.contain {
	-webkit-background-size:contain !important;
	   -moz-background-size:contain !important;
	     -o-background-size:contain !important;
	        background-size:contain !important;
	background-position:left !important;
}

/********** BACKGROUND CONTENT **********/

.background > *,
.background img {
	height:100%;
	width:100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.background.contain > *,
.background.contain img {
	-o-object-fit: contain;
	   object-fit: contain;
}

/********** BACKGROUND POSITIONS **********/

.bg-top-left {
	background-position:top left !important;
}
.bg-top-center {
	background-position:top center !important;
}
.bg-top-right {
	background-position:top right !important;
}
.bg-center-left {
	background-position:center left !important;
}
.bg-center-right {
	background-position:center right !important;
}
.bg-bottom-left {
	background-position:bottom left !important;
}
.bg-bottom-center {
	background-position:bottom center !important;
}
.bg-bottom-right {
	background-position:bottom right !important;
}

/****************************/
/****************************/
/********** IFRAME **********/
/****************************/
/****************************/

iframe {
	max-width:100%;
	border:none;
}
iframe.full {
	width:100%;
}
.iframe-container {
	position:relative;
	-webkit-background-size:cover !important;
	   -moz-background-size:cover !important;
	     -o-background-size:cover !important;
	        background-size:cover !important;
	background-position:center center !important;
	min-height:2rem;
	width:100%;
	padding:56.25% 0 0 0 !important;
	background:rgb(245,245,245);
}
.iframe-container iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

/**************************/
/**************************/
/********** LOGO **********/
/**************************/
/**************************/

/* dark as default */

.logo {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	max-width:25rem;
	overflow:visible;
	margin:auto;
	fill:inherit;
}
.logo svg {
	height:100%;
	width:100%;
	fill:inherit;
}

/********************************/
/********************************/
/********** RESPONSIVE **********/
/********************************/
/********************************/

/********** @MEDIA **********/

@media (min-width:760px) {
	.only-mobile {
		visibility:hidden;
		display:none !important;
	}
}
@media (max-width:760px) {
	.only-desktop {
		visibility:hidden;
		display:none !important;
	}
}

/*****************************/
/*****************************/
/********** ANCHORS **********/
/*****************************/
/*****************************/

/********** DEFAULT INLINE **********/

a {
	position:relative;
	font-size:inherit;
	line-height:inherit;
	color:inherit;
	text-shadow:inherit;
	outline:0;
	text-decoration:none;
}
p a,
li a {
	cursor:pointer;
	text-decoration: underline;
	text-decoration-thickness: -webkit-calc(var(--line-height) / 2);
	text-decoration-thickness: -moz-calc(var(--line-height) / 2);
	text-decoration-thickness: calc(var(--line-height) / 2);
	text-underline-position: from-font;
}
p a:hover,
li a:hover {
	color:var(--primary-color);
}

/********** WITH ICONS **********/

a [class^="icon-"] + span,
a [class*=" icon-"] + span {
	margin:0 0 0 .5rem;
}
a span {
	display:inline-block;
	font-family:inherit;
	font-size:inherit;
	line-height:inherit;
	color:inherit;
	text-shadow:inherit;
}

/********** WITH LABELS **********/

a .label,
button .label {
	position:absolute !important;
	font-size:0 !important;
}

/********** MORE-LINK **********/

.more-link {
	position:absolute;
	z-index: 10;
	top:0;
	left:0;
	height:100%;
	width:100%;
	border:none;
	font-size:0;
	line-height:0;
	margin:0;
}

/********** BEHAVIOURS **********/

:focus {
	outline-color:transparent;
	outline-style:none;
}

/* cf. navigation.css > accessibility for focus-visible */

/********************************/
/********************************/
/********** COLUMNIZER **********/
/********************************/
/********************************/

/*
data-columns == 2 / 3 / 4
2 == default

cf. grid.css for mixing with grid
*/

/********** BEHAVIOURS **********/

.columnizer .break {
	-webkit-column-break-before:always;
	-moz-column-break-before:always;
	break-before:always;
	padding-top:0;
}

/********** SPACING **********/

.columnizer > * + * {
	padding:0;
	margin:0;
}
.columnizer > *:not(:last-child) {
	margin-bottom:var(--global-spacing);
}
.columnizer > li:not(:last-child),
.columnizer > ul li:not(:last-child),
.columnizer > ol li:not(:last-child) {
	margin:0;
}

/********** @MEDIA **********/

@media (min-width:760px) {
	.columnizer {
		-webkit-column-count:2;
		   -moz-column-count:2;
		        column-count:2;
		-webkit-column-gap:var(--gutter-gap);
		   -moz-column-gap:var(--gutter-gap);
		        column-gap:var(--gutter-gap);
	}
}
@media (min-width:1000px) {
	.columnizer[data-columns="3"] {
		-webkit-column-count:3;
		   -moz-column-count:3;
		        column-count:3;
	}
	.columnizer[data-columns="4"] {
		-webkit-column-count:4;
		   -moz-column-count:4;
		        column-count:4;
	}
}

/*****************************/
/*****************************/
/********** UL / OL **********/
/*****************************/
/*****************************/

ul,
ol {
	list-style-position:inside;
}
li {
	list-style-type: disc;
}

/********** UL **********/

ul li {
	list-style-position:initial;
	padding-left:.25em;
	margin-left:.75em;
}
ul li + li {
	margin-top:calc(var(--global-spacing) / 4);
}

/********** OL **********/

ol {
	margin:0;
	list-style-type:none;
}
ol li {
	position:relative;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-webkit-align-items:center;
	   -moz-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
	counter-increment:step-counter;
	padding:.25em 0 !important;
	text-align:left !important;
}
ol li:before {
	content:counter(step-counter);
	display:inline-block;
	text-align:center;
	border:solid .125rem;
	font-size:.75rem;
	line-height:.75rem;
	height:.75rem;
	width:.75rem;
	min-width:.75rem;
	padding:.375rem;
	margin:0 .5rem 0 0;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	border-radius:100%;
}