/* LVL29 theme 8 home gallery 
   SECTION: HOME GALLERY — START
   ============================================================ */
/* =========================================================
   HOME GALLERY
   v1 look: full-bleed 3-up carousel, no gaps between slides, uniform 500px
   image height, and a joined bronze arrow block sitting bottom-centre over
   the images. The heading block stays inside the container above it.
   ========================================================= */
.home-gallery {
   contain: paint;
   padding-bottom: 0 !important;
}

/* The carousel runs edge-to-edge like v1, so this section's .container is
   released to full width and only the heading block is constrained. Done this
   way rather than a 100vw breakout because 100vw includes the scrollbar —
   that left the band 7px off-centre and short on the right. */
.home-gallery .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.home-gallery .gallery-content {
  max-width: 960px;
  margin: 45px auto 45px;
  padding: 0 16px;
  text-align: center;
}

.home-gallery .image-carousel {
  position: relative;
  text-align: center;
}

.home-gallery .home-gallery-carousel {
  position: relative;
}

/* no gaps — slides butt straight up against each other */
.home-gallery .magnific-img {
  padding: 0;
}

.home-gallery .magnific-img a {
  display: block;
  line-height: 0;
}

.home-gallery .magnific-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
}

/* --- Arrow block, bottom-centre (ported from live-html-css-lvl29) ---
   slick appends both buttons into .gallery-arrows, so they sit as one joined
   block. Colours come from the bg-secondary-transparent / bg-secondary-hover /
   text-color-light classes on the buttons, so the backend can retheme them. */
/* Pulled up over the foot of the images with a negative margin rather than
   absolute + bottom:0 — .image-carousel also wraps the Explore link, so
   bottom:0 anchored the block below the whole thing instead of on the photos.
   The negative margin cancels its own height, so the link keeps its spacing. */
.home-gallery .gallery-arrows {
  position: relative;
  z-index: 10;
  display: flex;
  width: fit-content;
  margin: -72px auto 0;
}

.home-gallery .gallery-arrows .slick-prev-arrow,
.home-gallery .gallery-arrows .slick-next-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* --- Explore Gallery link --- */
.home-gallery .explore-text {
  align-items: center;
  gap: 8px;
  margin-top: 35px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: none;
}

.home-gallery .explore-text:hover {
  color: #9f662d;
}

.home-gallery .explore-text .chevron-typ2 {
  display: none;
}

.home-gallery .explore-text:hover .chevron-typ1 {
  display: none;
}

.home-gallery .explore-text:hover .chevron-typ2 {
  display: inline-block;
}

/* ============================================================
   SECTION: HOME GALLERY — END
