.mc-banner-page {
  max-width: 1200px;
  margin: 1.5rem auto;
  padding: 1rem;
}

.mc-banner-page h1 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--pistachio);
  margin-top: 0;
}

.mc-intro {
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
  margin-top: 1rem;
}

/* Grid */
.mc-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Tile */
.mc-banner-tile {
  width: 100%;
  aspect-ratio: 4 / 3; /* Slightly horizontal for landscape images */
  background: var(--light-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mc-banner-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.8);
}

.mc-banner-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

/* Back button */
.mc-back {
  text-align: center;
  margin: 2rem 0;
}

.mc-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--cerulean);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mc-btn:hover {
  background: var(--gold);
  color: var(--light-text);
}

/* Lightbox */
.mc-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.mc-lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  transform: scale(0.8);
  animation: zoomIn 0.3s forwards;
}

.mc-lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes zoomIn {
  from {transform: scale(0.8);}
  to {transform: scale(1);}
}

/* Responsive grid */
@media (max-width: 900px) {
  .mc-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mc-banner-grid {
    grid-template-columns: 1fr;
  }
}
