/* Gallery section – no full width, follows site container */
.hn-gallery {
  padding-bottom: 60px; /* optional, like spacer-bottom */
}

/* Column that holds the image + button */
.hn-gallery__image-col {
  position: relative; /* so the round button can be centered over the image */
}

/* Reuse your shortcut image style but limit height */
.shortcut-block__picture__hn-gallery {
  width: 100%;
  height: 50vh;
  /*max-height: 420px;          /* <— adjust this value to make it less high */
  border-radius: 30px;

  object-fit: cover;
  object-position: center;
  display: block;

}

/* Round premium button centered on the picture */
.hn-gallery__see-more-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 120px;
  height: 120px;
  border-radius: 50%;

  background: linear-gradient(
    135deg,
    var(--color-accent1),
    var(--color-accent2)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;

  box-shadow: 0 14px 40px rgba(0,0,0,0.45);

  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease-out;
}

/* Floating animation */
.see-more-float {
  animation: floatCenter 3s ease-in-out infinite;
}

@keyframes floatCenter {
  0%   { transform: translate(-50%, -50%) translateY(0); }
  50%  { transform: translate(-50%, -50%) translateY(-8px); }
  100% { transform: translate(-50%, -50%) translateY(0); }
}

/* Hover effect */
.hn-gallery__see-more-pill:hover {
  transform: translate(-50%, -50%) translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.55);
  opacity: 0.92;
}
