/* --------------------------------------------------------
                      News Tiles
---------------------------------------------------------- */
.news-tile {
  margin-bottom: var(--grid-gutter);
}
.news-tile .tile {
  min-height: 100%;
  box-shadow:  0 0 2px 0 rgba(0, 0, 0, 0.14),  0 2px 2px 0 rgba(0, 0, 0, 0.12),  0 1px 3px 0 rgba(0, 0, 0, 0.2);
}
.news-tile figure {
  margin-bottom: 0;
}
.news-tile .desc {
  background-color: var(--body-bg);
  position: relative;
  border-top: 1px solid var(--main-color);
  padding: 2rem 1.5rem 1.5rem;
  font-size: 0.89rem;
}
.news-tile h2 {
  margin-top: 0;
}
.news-tile .date {
  position: absolute;
  top: -2px;
  background: var(--main-color);
  color: var(--white);
  padding: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  right: 1.5rem;
  transform: translate(0, -50%);
  font-weight: 700;
}
@media (max-width: 47.999em) {
  .news-tile:last-child {
    margin-bottom: 0;
  }
  .news-tile figure {
    padding: 0;
  }
  .news-tile .row {
    margin: 0;
  }
}
/* --------------------------------------------------------
                            Tag
---------------------------------------------------------- */
.tag-list {
  font-size: 80%;
  --link-font: var(--font-family);
  --link-weight: 600;
  --link-color: var(--main-color);
  --link-hover-deco: underline;
  --link-hover-color: var(--main-color);
}
.tag-list .ico.ico-tag,
.tag-list .ico.ico-tags {
  margin-right: 0.5rem;
}
.tag-list a {
  position: relative;
  z-index: 101;
}
#home main {
  padding-bottom: 1rem;
}
#home main .btn-main {
  --btn-padding-vertical: 1.5rem;
  --btn-padding-horizontal: 1.5rem;
  text-transform: uppercase;
}
#home .animate-on-scroll {
  /* Initialement invisible avec une opacité de 0 */
  opacity: 0;
  /* Translation initiale de 50 pixels vers le bas */
  transform: translateY(50px);
  /* Animation pour la transparence et la translation */
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
#home .animate-on-scroll.is-visible {
  /* Devenir visible avec une opacité de 1 */
  opacity: 1;
  /* Translation initiale de 0 pixels */
  transform: translateY(0);
}
@media (min-width: 48em) {
  #home #header + div,
  #home #header + section,
  #home #header + main {
    margin-top: 0;
  }
  #home #header.at-top {
    top: 0;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: none;
  }
  #home #header.at-top > .container {
    border-bottom: none;
  }
}
@media (min-width: 48em) and (prefers-color-scheme: dark) {
  #home #header.at-top {
    background-color: rgba(0, 0, 0, 0.7);
  }
}
/*# sourceMappingURL=home.css.map */