.bg-forest-green { background-color: #006837; }

/* Banner title color */
.bos-banner-title h1, .bos-banner-title h2 { color: #b5b9ba; }

/* Banner title area */
.bos-banner-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0rem 1rem 1.25rem;
}

.bos-section:last-child {
  border-bottom: none;
}

.bos-member:last-child {
  border-bottom: none;
}

.bos-photo-placeholder {
  padding-bottom: 125%;
}

/* Schedule table */
.schedule-table { border-collapse: collapse; }
.schedule-row:hover td { background-color: #f4f4f4; }

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

@media (min-width: 48em) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 64em) {
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  border: none;
  background: #111;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.5rem 1rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next:hover { opacity: 1; }

.lightbox-close { top: 1rem; right: 1.25rem; font-size: 2rem; }
.lightbox-prev  { left: 0.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next  { right: 0.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
