* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}
.ContentGrid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.ContentGrid_item {
  display: flex;
  flex-direction: column; /* Imagen arriba, texto abajo */
  align-items: center;
  text-align: center;
  width: 100px;
}

.ContentGrid_item img {
  max-width: 50px;
  height: auto;
  margin-bottom: 5px;
}

.ContentGrid_item figcaption {
  font-size: 14px;
  color: #485b37;
  font-weight: 600;
}

/* En móviles: 2 columnas */
@media (max-width: 768px) {
  .ContentGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
    .ContentGrid_item img {
    max-width: 45px;
    height: auto;
    margin-bottom: 5px;
  }
  .ContentGrid_item figcaption {
    font-size: 12px;
    color: #485b37;
    font-weight: 600;
  }
}
