/* Styling pour les cartes d'archives */
.archives-portails {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3vw;}

@media only screen and (max-width: 700px) {
  .archives-portails {
    grid-template-columns: 1fr;
  }
}
  
.archive-card {
  background-color: #FFF8E9;
  border-radius: 18px;
  overflow: hidden;
  padding-bottom: 3vh;}

.archive-card a {
  display: block;}
  
.archive-card figure {
  height: 150px;
  overflow: hidden;
  display: grid;
  align-content: center;
  background: #dff3f3;}

.archive-card img {
  width: 100%;
  transition: all 0.4s ease-out;}
  
.archive-card a:hover img {
  transform: scale(1.2);}
  
.archive-card > :not(figure){
  margin: 1.2em 2vw 1em !important;}

.archive-card h4 {
  font-size: 18px !important;
  font-weight: bold !important;}

.archive-card p {
  font-size: 15px;
  line-height: 1.25em;}
