/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
.magma-subcategories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.magma-subcategory {
  list-style: none;
}

.magma-card {
  display: block;
  text-decoration: none;
}

.magma-card-image {
  width: 100%;
  padding-top: 58%; /* 16:9 ratio */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.magma-card-title {
  margin-top: 10px;
  font-size: 14px;
  color: #111;
  text-align: center;
}
.magma-card {
  transition: all 0.25s ease;
}

.magma-card:hover {
  transform: translateY(-5px);
}

.magma-card:hover .magma-card-image {
  transform: scale(1.05);
}
.magma-card::after {
  content: "Skatīt →";
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #777;
}
.magma-subcategories {
  gap: 24px;
}
.magma-card-image {
  transition: all 0.3s ease;
}