.gallery-grid {
  display: grid;
  grid-template-columns: repeat(var(--gallery-columns, 3), minmax(0, 1fr));
  gap: 34px 24px;
}
.gallery-card {
  margin: 0;
  min-width: 0;
}
.gallery-open {
  display: block;
  overflow: hidden;
  background: #dedbce;
}
.gallery-open img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--gallery-ratio, 4 / 5);
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-open:hover img {
  transform: scale(1.025);
}
.gallery-card figcaption {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3px 16px;
  align-items: baseline;
  padding-top: 12px;
  font-weight: 700;
  font-size: 14px;
}
.gallery-card figcaption small {
  font-size: 11px;
  font-weight: 400;
  color: #53554c;
}
.stock-note {
  font-size: 11px;
  color: #53554c;
  margin: 22px 0 0;
}
.stock-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-block: 24px 30px;
}
.gallery-filters button {
  padding: 11px 19px;
  border: 1px solid var(--line);
  background: transparent;
  font-weight: 700;
  font-size: 12px;
  min-height: 44px;
}
.gallery-filters button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.gallery-filters button:hover {
  border-color: var(--ink);
}
.gallery-page .quiet-cta {
  border-top: 1px solid var(--line);
  margin-top: 38px;
}
.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.icon-button:hover {
  background: var(--ink);
  color: var(--paper);
}
.fb-lightbox {
  width: min(1000px, calc(100% - 32px));
  padding: 16px;
  overflow: auto;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
}
.lightbox-image {
  width: 100%;
  height: min(68dvh, 720px);
  object-fit: contain;
  background: var(--ink);
}
.lightbox-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 4px 4px;
}
.lightbox-title {
  font: 700 16px/1.4 var(--body);
  letter-spacing: 0;
  margin: 0 0 5px;
}
.lightbox-credit {
  font-size: 11px;
  margin: 0;
  overflow-wrap: anywhere;
}
.lightbox-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lightbox-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lightbox-count {
  font-size: 12px;
  white-space: nowrap;
  min-width: 30px;
  text-align: center;
}

[hidden]{display:none!important}.icon{width:20px;height:20px;flex-shrink:0}.fb-gallery dialog::backdrop{background:#151712b8;backdrop-filter:blur(4px)}.fb-gallery dialog{border:1px solid var(--ink,#20221f);background:var(--paper,#f1eddf);color:var(--ink,#20221f);max-width:calc(100% - 32px);max-height:calc(100dvh - 40px)}
body.modal-open{overflow:hidden}.gallery-filters{border-top:0}.lightbox-title{font:700 16px/1.4 var(--body, sans-serif)}
@media(max-width:767px){.lightbox-caption{flex-wrap:wrap}.lightbox-controls{width:100%;justify-content:space-between}.lightbox-image{height:55dvh}}
