* {
  margin: 0;
  padding: 0;
}



:root {
  --padding: 1rem;
  --color-black: #000;
  --color-white: #fff;
  --color-red: #d22d3a;
  /*  --color-red-light: #f2c0c4;*/
  --color-red-light: #fbd6d0;
  --color-yellow: #ffa600;
  --color-yellow-light: #ffedcc;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-background-red: var(--color-red);
  --color-code-light-grey: #cacbd1;
  --color-code-comment: #a9aaad;
  --font-family-serif: 'Castoro', Georgia, Times New Roman, serif;
  --font-size-caption: 0.65rem;
  --font-size-small: 0.9rem;
  --font-size-medium: 1.15rem;
  --font-size-large: 1.5rem;
  --font-size-display: 2rem;
  font-size: 19px;
}

@media (max-width: 667px) {
  :root {
    font-size: 16px;
  }
}

@font-face {
  font-family: 'Castoro';
  src: url("../fonts/Castoro-Roman.woff2") format("woff2"), url("../fonts/Castoro-Roman.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: 'Castoro';
  src: url("../fonts/Castoro-Italic.woff") format("woff2"), url("../fonts/Castoro-Italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-stretch: normal;
}


html {
  font: 1.15rem/1.35 var(--font-family-serif);
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "onum", "liga";
  -webkit-font-feature-settings: "onum", "liga";
  -moz-font-feature-settings: "onum", "liga";
  -ms-font-feature-settings: "onum", "liga";
  font-variant: oldstyle-nums, common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-weight: 400;
}

img {
  width: 100%;
}

body {
  padding: 0 var(--padding);
  margin: 0 auto;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

strong,
b {
  font-weight: 600;
}

u {
  text-decoration: none;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}

.color-grey {
  color: var(--color-text-grey);
}

.small {
  font-size: var(--font-size-small);
}

.medium {
  font-size: var(--font-size-medium);
}

.large {
  font-size: var(--font-size-large);
}

.lining {
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}

.header {
  position: sticky;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -1rem 0;
  padding: 0 .5rem;
  top: 0;
  background-color: var(--color-background-red);
  color: var(--color-white);
  z-index: 100;
  height: 2.5rem;
}

.logo {
  display: flex;
  align-items: baseline;
  cursor: pointer;
  /* font-size: var(--font-size-medium); */
  padding: .6rem 0 0 .5rem;
  height: 2.5rem;
}

.menu {
  display: flex;
  align-items: baseline;
  padding: .6rem 1rem 0 0;
}

.menu a {
  margin: 0 0 0 1.25rem;
  display: block;
  text-transform: lowercase;
}

.menu a[aria-current] {
  border-bottom: 1px solid #FFF;
}

.menu a:hover {
  border-bottom: 1px solid #FFF;
}

.menu-toggle {
  right: 0;
  padding: var(--padding);
  position: absolute;
  top: -.6rem;
  width: 3.5rem;
  display: none;
  height: 3.5rem;
  z-index: 150;
}

@media (max-width:812px) {
  .menu {
    display: none;
    flex-wrap: wrap;
    background-color: var(--color-red);
    padding: 0;
    border-top: 1px solid #FFF;
    text-align: left;
  }

  .is-menu-open .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    position: absolute;
    width: 100%;
    top: 2.5rem;
    left: 0;

  }

  .is-menu-open .menu a {
    flex-basis: 100%;
    margin: 0.15rem 0;
    padding: .5rem 1rem;
    border-bottom: 1px solid #FFF;
  }

  .menu a:hover {
    border-bottom: 1px solid #FFF;
  }

  .menu a:last-child {
    border: 0;
  }


  .menu a[aria-current] {
    border-bottom: 1px solid #FFF;
  }

  .menu-toggle {
    display: block;
  }

}




.menu-toggle::after,
.menu-toggle::before {
  background-color: #FFF;
  content: "";
  display: block;
  height: 1.5px;
  margin: .5rem 0;
  -webkit-transition: -webkit-transform 250ms;
  transition: -webkit-transform 250ms;
  -o-transition: transform 250ms;
  transition: transform 250ms;
  transition: transform 250ms, -webkit-transform 250ms;
}

.is-menu-open .menu-toggle::before {
  -webkit-transform: translateY(5px) rotate(45deg);
  -ms-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
}

.is-menu-open .menu-toggle::after {
  -webkit-transform: translateY(-5px) rotate(-45deg);
  -ms-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-5px) rotate(-45deg);
}


/* Top nav */

.top-nav {
  position: sticky;
  top: 2.5rem;
  z-index: 10;
  background: #ffedcc;
  padding: .75rem 1rem;
  margin: 0 -1rem;
  display: flex;
  justify-content: space-between;
  line-height: 1;
  /*    font-size: var(--font-size-small);*/

}

.top-nav.creation {
  background: var(--color-red-light);
}

@media (max-width:1024px) {
  .top-nav {
    /*    font-size:1.05rem*/
  }
}

.top-nav-inner {
  width: 100%;
  display: flex;
  justify-content: end;
}

.back {
  flex-basis: 50%;
}

.top-nav svg {
  width: 15px
}

.top-nav .back span {
  margin-right: 5px
}

.top-nav .prevnext {
  flex-basis: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  /*	pointer-events: none;*/
  justify-content: end;
}

.top-nav .prevnext .next,
.top-nav .prevnext .prev {
  display: flex
}

.top-nav .back span,
.top-nav .prevnext .next .arrow,
.top-nav .prevnext .prev .arrow {
  display: inline-block
}

.top-nav .prevnext .prev {
  justify-content: flex-end;
  padding: 0 10px 0 0;
}

.top-nav .prevnext .prev .arrow {
  margin-left: 8px
}

.top-nav .prevnext .next {
  padding: 0 0 0 8px
}

.top-nav .prevnext .next .arrow {
  margin-right: 10px
}


.mobile-only,
.top-nav .back .mobile-only {
  display: none
}

@media (max-width:860px) {
  .top-nav .prevnext {
    justify-content: flex-end
  }

  .top-nav .prevnext .next,
  .top-nav .prevnext .prev {
    width: auto
  }

  .top-nav .prevnext .prev {
    padding-right: 5px
  }

  .top-nav .prevnext .prev .arrow {
    margin-left: 3px
  }

  .top-nav .prevnext .next {
    padding-left: 5px
  }

  .top-nav .prevnext .next .arrow {
    margin-right: 5px
  }

  .top-nav .prevnext .mobile-only {
    display: inline-block
  }

  .top-nav .back .mobile-only {
    display: inline-block
  }

  .top-nav .prevnext .desktop-only {
    display: none
  }

  .top-nav .back .desktop-only {
    display: none
  }
}


/*
@media (max-width:667px) {
.top-nav .prevnext .mobile-only {
    display: inline-block
  }
.top-nav .back .mobile-only {
    display: inline-block
  }
}
*/

/*
.social {
display: flex;
padding: 0 .5rem;
}
.social a {
padding: 1rem .5rem;
}
*/

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 1rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 65rem;
}

.grid > .column {
  margin-bottom: 0;
}

.grid li:hover {
  opacity: .8;
  transition: all .4s;
}

.column.full {
  grid-column: 1 / span 3;
}

.autogrid {
  --gutter: 1.5rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(auto-fill, calc((100% - 2rem)/3));
  }
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(auto-fill, calc((100% - 2rem)/3));
  }
}

@media (max-width: 812px) {
  .grid {
    grid-template-columns: repeat(auto-fill, calc((100% - 1rem)/2));
  }
}

@media (max-width: 667px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

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

.text a {
  text-decoration: underline;
}

.text :first-child {
  margin-top: 0;
}

.text :last-child {
  margin-bottom: 0;
}

.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}

.text ul,
.text ol {
  margin-left: 1rem;
}

.text ul p,
.text ol p {
  margin-bottom: 0;
}

.text ul > li {
  list-style: disc;
}

.text ol > li {
  list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}



.text figure {
  margin: 3rem 0;
}

.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

.text figure ul {
  line-height: 0;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.text figure ul li {
  list-style: none;
}

hr {
  border: 0;
  margin: 2rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}

.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: transparent;
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.img[data-contain] img {
  object-fit: contain;
}

.img-caption,
.video-caption {
  padding: .5rem 0;
}


@media screen and (min-width: 60rem) {
  body {
    --padding: 1rem;
  }



}

/*
 .grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid > .column {
        grid-column: span var(--columns);
  }
*/
.pagination {
  display: flex;
  padding-top: 6rem;
}

.pagination > span {
  color: var(--color-text-grey);
}

.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}

.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}

.note-excerpt header {
  margin-bottom: 1.5rem;
}

.note-excerpt figure {
  margin-bottom: .5rem;
}

.note-excerpt-title {
  font-weight: 600;
}

.note-excerpt-date {
  color: var(--color-text-grey);
}

/* General */
.title {
  font-size: var(--font-size-display);
  margin-bottom: .5rem;
}

.content-header {
  padding: 0;
}

.subheading {
  font-size: var(--font-size-medium);
}


/* Global */

.wrapper {
  display: flex;
  flex-wrap: wrap;
}

.container-left,
.container-right {
  flex-basis: calc(50% - .5rem);
}

@media (max-width:860px) {

  .container-left,
  .container-right {
    flex-basis: 100%;
  }
}

.container-left {
  margin-right: 1rem
}

.container-right {
  margin: 1.5rem 0 0;
}

.page-title {
  font-size: var(--font-size-display);
  margin: 3rem auto;
  line-height: 1.2;
  max-width: 44rem;
  text-align: center;
}

.page-intro {
  max-width: 38rem;
  margin: 1rem auto 3rem;
}

.page-text {
  max-width: 38rem;
  margin: 0 auto;
}

/*
.events .page-title {
  max-width: 100%;
}
*/

/*
.page-author {
  font-size: inherit;
  margin: -.5rem auto 2rem;
  line-height: 1.2;
  max-width: 44rem;
}
*/

/*
.page-state{
  font-size: inherit;
  font-style: italic;
  margin: 1.5rem 0;
  line-height: 1.2;
  text-align: center;
}
*/

.page-subtitle {
  margin: -2.5rem auto 3rem;
  text-align: center;
  font-style: italic;
}

.content a,
.infos a {
  border-bottom: 1px solid var(--color-red);
  padding-bottom: .1rem;
}

.content a:hover,
.infos a:hover,
a.link-calendar:hover,
.subscription-button:hover,
.footer a:hover {
  color: var(--color-red);
}

.content-wrapper h2 {
  margin: 3rem auto;
  font-size: var(--font-size-medium);
}

/*
.content-wrapper h3 {
	margin: 1.5rem 0 1.5rem;
	border-bottom: 1px solid #000;
	padding-bottom: .3rem;
    font-size: var(--font-size-medium);
}
*/

.content-wrapper h3 {
  padding: 2rem 0 1rem;
  color: var(--color-red);
  font-size: var(--font-size-medium);
  display: inline-block;
}

.infos p + p {
  margin-top: 1rem;
}

.content-wrapper li p {
  padding-left: 1rem;
  text-indent: -1rem;
}

.content-wrapper li p:before {
  content: "–";
  padding-right: .5rem;
}

.block-type-image {
  margin: 1rem auto;
  max-width: 55rem;
}


.swiper figcaption {
  margin-top: .25rem;
  font-size: var(--font-size-small);
}

.swiper li:before {
  content: "";
  padding: 0;
}

.swiper li {
  padding: 0;
  text-indent: 0;

}

/* Blocks */
.content {
  margin: 2rem auto 1rem;
  min-height: 60vh;
}

.infos {
  max-width: 38rem;
  margin: 3rem auto 0;
}

.content p + p,
.content-wrapper p + p {
  margin-top: 1rem;
}

.block-type-heading-h3 + .block-type-text {
  margin: 2rem 0 2rem;
  padding: 0 3rem;
}

.block-type-heading-h4 {
  margin: 0 0 1rem;
  font-style:
}

.block-type-video {
  max-width: 48rem;
  margin: 3rem auto;
}

.block-type-gallery {
  max-width: 55rem;
  margin: 3rem auto;
}

.block-type-heading h3,
.block-type-text {
  max-width: 38rem;
  margin: 0 auto;
}

.block-type-heading {
  max-width: 38rem;
  margin: 0 auto;
}

/*
.block-type-heading h3 {
  margin-left: 3rem;
}

.block-type-heading h3:hover {
  color: var(--color-red);
  cursor: pointer;
}

.block-type-heading h3::before {
  content: "+";
  margin-left: -3rem;
  position: absolute;
  padding-right: 3rem;
  font-size: var(--font-size-medium);
  line-height: 1;
}

.block-type-heading + .block-type-text {
  display: none;
  margin: 1rem 0 2rem;
}
*/

/*
.block-type-heading-h3 + .block-type-video {
  opacity: 0;
  height: 0;
  margin: 0;
}

.block-type-heading-h3 + .block-type-text p + p {
  margin-top: .5rem;
}

.is-active.block-type-heading-h3::before {
  content: "–";
}

.block-type-heading-h3 + .block-type-text.is-active {
  display: block
}

.block-type-heading-h3 + .block-type-video.is-active {
  opacity: 1;
  height: 100%;
  margin: 1rem 3rem 2rem;
}
*/

/* Creation */


.column .img {
  position: relative;
  display: block;
  --w: 1.4;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  /*  background: var(--color-black);*/
}

/*
.column a:hover {
  --bg-opacity: 1;
  background-color: var(--color-red-light);
  background-color: rgba(242, 192, 196, var(--bg-opacity));
}

.column a .img {
  background-color: var(--color-red-light);
}

.column a img {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform, -o-transform;
}

.column a:hover span img {
  -webkit-filter: grayscale(0%) contrast(75%) saturate(1.5);
  filter: grayscale(0%) contrast(75%) saturate(1.5);
  mix-blend-mode: color-burn;
}
*/

/*Swiper*/

.swiper {
  width: 100%;
  height: 100%;
  z-index: 0 !important;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button.swiper-button-next {
  right: 0;
  cursor: pointer;
}

.swiper-button.swiper-button-prev {
  left: 0;
  cursor: pointer;
}

.swiper-button {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  margin-top: 0;
  z-index: 100;
}

/*
.swiper-button.swiper-next {
	right: 0;
	cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1rem
	
}
*/

/*
.swiper-button-prev {
	margin-left: 1rem;
}
.swiper-button-next {
	margin-right: 1rem;
}
*/

/*
.swiper-button-prev{
    left: -40px !important;
}
.swiper-button-next{
    right: -40px !important;
}
*/

.swiper-infos {
  display: flex;
  font-size: var(--font-size-small);
  margin: .5rem 0 1rem;
  justify-content: space-between;
}

.swiper-pagination {

  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}




/* Piece */


.gallery-image {
  margin-bottom: 1rem;
}

.piece-infos-wrapper {
  margin-top: 2rem;
  padding-left: 1.5rem;
}



/* Calendar */

.events {
  max-width: 50rem;
  margin: 0 auto
}

.year {
  margin: 2rem 0 0;
  padding-bottom: .25rem;
  font-size: var(--font-size-large);
  border-bottom: 1px solid var(--color-code-light-grey);
}

.year.past {
  color: #737373;
}

.event {
  padding: .25rem 0;
  border-bottom: 1px solid var(--color-code-light-grey);

}

.mobile-right {
  display: flex;
  flex-basis: calc(100% - 11.5rem);
}

.event:hover {
  color: var(--color-red);
  cursor: pointer;
}

.event.past {
  color: #737373;
}

/*
.event.transmission:hover {
  color: var(--color-yellow);
  cursor: pointer;
}
*/

.event-container {
  display: flex;
  align-items: baseline;
}



.event-date {
  flex-basis: 11.5rem;
  padding-right: .5rem;
}

.event-title {
  flex-basis: 19.5rem;
  padding-right: .5rem;
}

/*
.event-title p {
  display: inline;
}
*/

.event-location {
  flex-basis: 8.5rem;
  padding-right: .5rem;
}

.event-place {
  flex-basis: 8.5rem;
  padding-right: .5rem;
}

.event-type,
.sort-button span {
  flex-basis: 1rem;
  font-size: var(--font-size-large);
  line-height: 1;
  padding-top: 1px;
}


@media (max-width:667px) {
  .event-container {
    flex-wrap: wrap;
  }

  .mobile-right {
    flex-wrap: wrap;
    flex-basis: calc(100% - 8.5rem);
  }

  .event-title {
    flex-basis: 100%;
  }

  .event-location::after {
    content: ",";
  }

  .event-location {
    padding-right: 0.25rem;
  }

  .event-place {
    padding-right: 0;
  }

  .event-location,
  .event-place {
    flex-basis: auto;

  }

  .event-date {
    flex-basis: 8rem;
  }

}

.event-type.creation,
span.creation {
  color: var(--color-red)
}

.event-type.transmission,
span.transmission {
  color: var(--color-yellow);

}

.sort-wrapper {
  display: flex;
  font-size: var(--font-size-small);
}

.sort-button {
  cursor: pointer;
  margin-left: .75rem;
  display: flex;
}

.sort-button span {
  width: 1rem;
}

.sort-button .sort-title.active {
  border-bottom: 1px solid var(--color-black);
}

.event.is-hidden {
  display: none;
}

/* Artists */


.artists-grid {
  --columns: 12;
  --gutter: 2rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 55rem;
}

.artists-grid {
  grid-template-columns: repeat(auto-fill, 100%));
}

@media (min-width: 860px) {
  .artists-grid {
    grid-template-columns: repeat(auto-fill, calc((100% - 2rem)/2));
  }
}

.artists-title {
  margin: .5rem 0 0;
  line-height: 1.25;
}

.artist-item {
  /*	margin: .75rem;*/
}

.page-infos {
  margin: 3rem auto;
  max-width: 38rem;

}

.page-image {
  max-width: 38rem;
  margin: 3rem auto;
}

/* Home */

.page-logo {
  max-width: 8rem;
  margin: 4rem auto;
}

.event-grid {
  --columns: 12;
  --gutter: 2rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 55rem;
}

.event-grid {
  grid-template-columns: repeat(auto-fill, 100%));
}

@media (min-width: 860px) {
  .event-grid {
    grid-template-columns: repeat(auto-fill, calc((100% - 2rem)/2));
  }
}

.event-grid-past {
  --columns: 12;
  --gutter: 1rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 65rem;
}

.event-grid-past {
  grid-template-columns: repeat(auto-fill, 100%));
}

@media (min-width: 860px) {
  .event-grid-past {
    grid-template-columns: repeat(auto-fill, calc((100% - 2rem)/3));
  }
}

.event-grid-past {
  font-size: var(--font-size-small);
}

.event-grid-past .event-home-title {
  font-size: var(--font-size-medium);
}

.event-home {
  margin-bottom: 2rem;
}

@media (max-width: 860px) {

  .event-home {
    margin-top: 1rem
  }
}

.event-home-title {
  font-size: var(--font-size-large);
  margin: .5rem 0 .75rem;
  line-height: 1.2
}

.event-home-text {
  margin: .5rem 0;
  font-size: var(--font-size-small);
}

.event-home-more {
  margin-top: .5rem;
  display: inline-block;
  font-size: var(--font-size-small);
}

figcaption {
  text-align: right;
  font-size: var(--font-size-caption);
}

figure {
  position: relative;
}

figure figcaption {
  position: absolute;
  bottom: 10px;
  right: 0;
  /* height: 100%; */
  margin: 5px;
  color: #fff;
  writing-mode: sideways-lr;
}

.calendar-wrapper {
  margin: 5rem 0 0 0;
}

.calendar-wrapper a {
  border-bottom: 0;
  padding-bottom: 0;
}

a.link-calendar {
  margin: 3rem auto 6rem;
  text-align: center;
  width: 14rem;
  border: 1px solid var(--color-black);
  border-radius: .5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

@media (max-width:667px) {
  .event-home-text,
  .event-home-more {
    font-size: inherit;
  }
}


/* Transmission */


.transmission-item {
  /*	border: 1px solid var(--color-black);*/
  /*  padding: .75rem;*/
  /*  margin: .75rem;*/
  /*  height: auto;*/
  height: auto;
  /*  border-radius: .25rem;*/
  /*  background: #ffedcc;*/
  transition: all .4s;
}

.transmission-item.creation {
  /*  background: var(--color-red-light);*/
}

.transmission-img {
  /*  margin: -.75rem;*/
  margin-bottom: 0;
}

.transmission-img img {
  /*
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
*/

}

.transmission-title {
  font-size: var(--font-size-medium);
  margin: .5rem 0 0;
  line-height: 1.25;
}

.transmission-category {
  /*  font-style: italic;*/
  margin-top: .5rem;
}

.transmission-state {
  font-style: italic;
}

/*
.transmission-period {
  margin-top: .5rem;
}*/

.large-size {
  max-width: 38rem;
  margin: 0 auto;
}

.medium-size {
  max-width: 28rem;
  margin: 0 auto;
}

.small-size {
  max-width: 20rem;
  margin: 0 auto;
}

/* Footer */
.footer {
  margin: 9rem 0 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-black);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-columns-item {
  display: flex;
  flex-wrap: wrap;
}

.footer-section {
  margin-right: 1rem
}

@media (max-width:860px) {

  .footer-columns-item {
    flex-basis: 50%
  }

  .footer-section {
    flex-basis: 100%
  }
}

@media (max-width:667px) {

  .footer-section,
  .footer-columns-item {
    flex-basis: 100%
  }
}

/* Newsletter */
.newsletter {
  max-width: 50rem;
  margin: 0 auto;
}

.newsletter-intro {
  margin: 0 0 2rem 0;
}

.subscription-button {
  margin-top: .5rem;
}

/*
.info-lists{
   grid-column-start: 1;
}
*/

.newsletter-rgpd {
  font-size: var(--font-size-small);
  margin: 3rem 0 0 0;
}