.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24;
}
.glass-nav {
  background-color: #243441;
  backdrop-filter: blur(20px);
}
.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.two-columns-grid-item {
  grid-column: span 2;
  width: 100%;
}

@media (min-width: 768px) {
  .gallery-grid {
    gap: 8px;
  }
}

/* Gallery item */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.03);
}

.gallery-item img {
  max-height: 60vh;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Hover overlay */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.25) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Expand icon */
.gallery-expand-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  color: white;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.gallery-item:hover .gallery-expand-icon {
  opacity: 0.9;
  transform: translateY(0);
}

.grid-item-span-2 {
  grid-column: span 2;
}
