.event-gallery {
  line-height: 0;
  columns: 1;
  column-gap: 1.5rem;
}
.event-gallery li {
  display: block;
  margin-bottom: 1.5rem;
  break-inside: avoid;
}
@media screen and (min-width: 60rem) {
  .event-gallery {
    columns: 2;
  }
}

/* Product Display Styles */
.meta.product {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid #e9ecef;
}

.product-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.product-info .price {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.product-info .stock {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.meta.product .stack-s {
  margin-top: 1rem;
}

.meta.product .button {
  width: 100%;
  background: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.meta.product .button:hover {
  background: #0056b3;
}
