.mural {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width:800px;
  margin: 0 auto;
  justify-items: center;
}

.mural-card {
  width: auto;
  max-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  background: white;
  margin: 0 auto
}

.mural-card:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.mural-card img {
  max-width: 300px;
  width: auto;
  height: 250px;
  object-fit: cover;
  display: block;
}

.ult-mural-card{
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 300px;
  width: auto;
}


@media (max-width: 768px) {
    .mural {
        grid-template-columns: repeat(auto-fit ,47%);
        gap: 12px;
        margin-bottom: 30px;
        max-width: 374px;
    }
    
    .mural-card img {
        width:174px;
    }
}