:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hero-grid .cell {
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(120deg, #e7e5df, #f4f2ec);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-grid .cell:hover img {
  transform: scale(1.08);
}

@media (max-width: 767px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .hero-grid .cell {
    min-height: 240px;
  }
}
