.parentCard {
  width: calc(100% - 40px);
  max-width: var(--maxWidthContiner);
  margin: 60px auto;
}
.parentCard .parentCard__card {
  transition: all ease-in-out 0.15s;
}
.parentCard .parentCard__card > svg {
  fill: var(--darkGreen);
}
.parentCard.actu {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.parentCard.actu .parentCard__card {
  width: 25rem;
  max-width: 100%;
  padding: 0 0 40px 0;
  margin: 0 40px 40px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  line-height: 1.7rem;
}
.parentCard.actu .parentCard__card .parentCard__card__date {
  background-color: var(--darkGreen);
  color: white;
  padding: 5px;
  width: 6em;
  aspect-ratio: 1/1;
  text-align: center;
  font-size: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.parentCard.actu .parentCard__card .parentCard__card__date :first-child {
  font-weight: 700;
  font-size: 2.5em;
}
.parentCard.actu .parentCard__card .parentCard__card__date :last-child {
  line-height: 1rem;
}
.parentCard.actu .parentCard__card h3 {
  text-transform: uppercase;
  color: var(--darkGreen);
  font-size: 1.2em;
  font-weight: 700;
  margin: 0.8rem 0;
}
.parentCard.actu .parentCard__card > svg {
  width: 5rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
.parentCard.actu .parentCard__card:hover {
  background-color: rgba(164, 208, 82, 0.2274509804);
}
.parentCard.anim .parentCard__card {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding: 25px;
}
.parentCard.anim .parentCard__card:hover {
  background-color: rgba(164, 208, 82, 0.2274509804);
}
.parentCard.anim .parentCard__card > * {
  display: block;
}
.parentCard.anim .parentCard__card .parentCard__card__date {
  display: flex;
  flex-direction: column;
  background-color: #f8f5f4;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 5rem;
  aspect-ratio: 1/1;
  text-align: center;
  font-size: 0.8em;
  text-transform: uppercase;
}
.parentCard.anim .parentCard__card .parentCard__card__date :first-child {
  font-weight: 700;
  font-size: 2.5em;
}
.parentCard.anim .parentCard__card .parentCard__card__date :last-child {
  line-height: 1rem;
}
.parentCard.anim .parentCard__card h3 {
  color: var(--darkGreen);
  font-style: oblique;
  font-weight: 700;
  font-size: 1.2em;
  margin: 1em 0;
}
.parentCard.anim .parentCard__card > svg {
  width: 5rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  font-size: 1.4em;
  margin: 20px 0 60px 0;
}
.nav-links > * {
  margin-right: 1rem;
  padding: 5px;
}
.nav-links > *:last-child {
  margin-right: 0;
}
.nav-links > .current,
.nav-links .page-numbers.dots {
  color: grey;
}
.nav-links a {
  border: 1px solid var(--whiteToBlack);
  transition: all ease-in-out 0.2s;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
}
.nav-links a:hover {
  -webkit-text-decoration: underline black;
          text-decoration: underline black;
}
.nav-links a.prev, .nav-links a.next {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4rem;
}/*# sourceMappingURL=cat.css.map */