  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .gallery a {
    display: block;
    height: 250px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .gallery a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
  }

  .gallery a:hover {
    transform: scale(1.05);
  }

  .gallery a:hover::after {
    opacity: 1;
  }
  .block-gallery-cta {
    margin-top: 50px;
    text-align: center;
}
.block-gallery-cta .btn {
    border-color: rgba(0, 0, 0, .28);
    color: var(--ink);
    background: transparent;
}
.gallery .label {
    padding: 18px 18px 22px;
    font-family: "Playfair Display", serif;
    font-size: 1.28rem;
    text-align: left;
}