/* Page 1 - Section 7: force news cards to a consistent height */
#p1_news .news {
  height: 350px;
}

@media (max-width: 991px) {
  #p1_news .news {
    height: auto;
    min-height: 350px;
  }
}

/* Nav: show gift icon instead of text */
header .menu a[data-fab~="gift"]:before,
header .menu a[data-faa~="gift"]:after {
  content: "\f06b";
}

/* P2 étude slider: vertically center text cards */
#p2_etude [data-slickin] .slick-track {
  display: flex;
  align-items: stretch;
}
#p2_etude [data-slickin] .slick-slide {
  height: auto;
}
#p2_etude [data-slickin] .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
