* {
  padding: 0;
  margin: 0;
  border: 0;
}

:root {
  --green: #0b6b3a;
  --green2: #0a5e34;
  --paper: #ffffff;
  --ink: #1e1e1e;
}

body {
  background: linear-gradient(
    to bottom,
    #f4f1eb 0%,
    #ece9e1 45%,
    #e3e7df 100%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: Hevetica, Arial, sans-serif;
  color: var(--ink);

  padding-top: 2rem;
  padding-bottom: 1rem;
}

a, a:visited {
  color: black;
  text-decoration: none;
}

a .link, .link a {
  color: var(--green);
  text-decoration: underline;
  font-weight: bold;
}




.pageHeader {
  

  width: 100%;
  max-width: 900px;
  margin: 1em auto;


  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.pageHeader strong{
  display: block;
  font-size: 1.5rem;
  color: var(--green);
  text-transform: uppercase;
}

.pageHeader img {
    width: 150px;
  }

.pageHeader__text {
  padding-right: 1em;
}


.page {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.2);

}

.page .header img {
  display: block;
  width: 100%;
}

.content {
  padding: 2rem;
}


.content h2 {
  /*text-transform: uppercase;*/
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1rem;

  color: white;/*#004828; /**/
  background-color: var(--green);
  display: inline-block;
  padding: 0.25em 0.5em;

  border-radius: .5em;
  
}

.content .text {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.content .blockSet.columns {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;

  
}

.content .blockSet.columns img {
  height: 250px;
}

.content .blockSet.columns .blockLink img {
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}


.content .blockSet.columns h3 {
  margin-bottom: .5em;
}

.content .blockSet.columns .block {
  text-align: center;
  padding: 1rem;
}

.feuilleRibbon {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(90deg, #ffe08a, #f1c24f);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: #1f1f1f;
  font-size: 1.08rem;
}

.feuilleRibbon:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.14);
}

.feuilleRibbon__kicker {
  color: #1f1f1f;
  font-weight: 900;
}

.feuilleRibbon__title {
  color: #1f1f1f;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0.02em;
}

.feuilleRibbon__hint {
  color: #2f2f2f;
  font-weight: 700;
  font-size: 0.95em;
}

.content .text.feuilleRibbonWrap {
  padding-left: 0;
}

.blockLink:hover {
  background-color: #efefef;
}

.content .blockSet {
  margin-bottom: 2rem;
}

.content .block.agenda {
  background-image: url(../icons/calendar.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 2rem;
  padding-left: 2.5rem;

  margin-bottom: 1rem;
}


.buttonLink a {
  background-color: #efefef;
  display: inline-block;
  padding: 1rem;
  border-radius: 1rem;
  font-weight: bold;
  /*00673a*/
}


.officialList {
  columns: 2;
  column-gap: 1.2rem;
  margin: 0.75rem 0 0;
  padding: 0.8rem 1rem 0.8rem 2rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd27a, #f0b64d);
  border: 2px solid rgba(0, 0, 0, 0.12);
  margin-top: 0.5em;
}

.officialList li {
  margin: 0 0 0.25rem;
  break-inside: avoid;
  line-height: 1.3;
}


.content ul {
  padding: 1rem;
}

.content li {
  margin-bottom: 0.5rem;
}

.content video {
  display: block;
  width: 100%;
  max-width: 400px;
    min-width: 180px;
  
}

.content .blockSet.columns .block.blockSide {
  text-align: left;

}





@media (max-width: 900px) {
  body  {
    padding-top: 0rem;
  }
}


@media (max-width: 550px) {
  .pageHeader img {
    width: 100px;
    padding-left: 1rem;
  }

  .content .blockSet.columns  {
    flex-direction: column;
  }

  .officialList  {
    columns: 1;
    padding-left: 2rem;
  }

  .officialList li {
    margin-bottom: 0.5em;
  }
  
}
