/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 26 2025 | 13:10:27 */
/*.photo{
	padding:25px;
}*/

.grid-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 25px;
	    padding: 25px;
}

@media screen and (max-width: 1200px) {
  .grid-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 650px) {
  .grid-categories {
    grid-template-columns: 1fr;
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  box-sizing: border-box; /* essentiel pour que padding n'ajoute pas à la largeur */
}

.category-card img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.category-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.category-title {
  font-family: "Neue Haas", Sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin: 0;
}

.category-title a{
	font-family:unset;
	font-size: 16px;
  font-weight: bold;
  color: #000000;
	
}

.category-icon {
  flex-shrink: 0;
}

.category-icon img {
  width: 16px;
  height: auto;
}

