/* Custom overrides layered on top of bundle.css */

@media (max-width: 768px) {
  .gallery-selectors .button.gallery-selector .button__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .gallery-selectors .button.gallery-selector .button__title,
  .gallery-selectors .button.gallery-selector .button__title span {
    font-size: 0.8125rem;
  }
}

/* Fullscreen gallery modal (desktop only; mobile left unchanged):
   show full image with object-fit: contain and a slightly darker overlay. */
@media (min-width: 769px) {
  .modal:has(.swiper) .modal__slider[data-slider-type="fullscreen"] .swiper-slide img {
    object-fit: contain;
  }

  .modal:has(.swiper) .modal__container {
    background-color: rgba(0, 0, 0, 0.9);
  }
}
