/* Layout */
.offmore-gallery { margin: 2rem 0; }
.offmore-gallery > .offmore-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px){
  .offmore-gallery > .offmore-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 600px){
  .offmore-gallery > .offmore-gallery__grid { grid-template-columns: 1fr; gap: 10px; }
}

/* Aspect ratios keep rows aligned; set via shortcode's data-ratio */
.offmore-gallery[data-ratio="1/1"] .offmore-gallery__media { aspect-ratio: 1/1; }
.offmore-gallery[data-ratio="4/3"] .offmore-gallery__media { aspect-ratio: 4/3; }
.offmore-gallery[data-ratio="3/2"] .offmore-gallery__media { aspect-ratio: 3/2; }

/* Cards */
.offmore-gallery .offmore-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.offmore-gallery .offmore-gallery__link { display:block; text-decoration:none; color:inherit; }

/* Crop media to align rows */
.offmore-gallery .offmore-gallery__media { width: 100%; height: 100%; }
.offmore-gallery .offmore-gallery__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  transition: transform .35s ease;
}
.offmore-gallery .offmore-gallery__item:hover .offmore-gallery__media img { transform: scale(1.03); }

/* Captions (hidden by default) */
.offmore-gallery .offmore-gallery__cap { display: none; }

/* Load more button */
.offmore-gallery .offmore-gallery__actions { text-align: center; margin-top: 16px; }
.offmore-gallery .offmore-gallery__loadmore {
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  color: #2c6a59;
  text-decoration: underline;
  font-family: 'Kaisei Opti', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: 1rem;
}
