/** Shopify CDN: Minification failed

Line 29:6 Expected identifier but found whitespace
Line 29:8 Unexpected "{"
Line 29:17 Expected ":"
Line 29:35 Expected ":"
Line 48:15 Expected identifier but found whitespace
Line 48:17 Unexpected "{"
Line 48:26 Expected ":"
Line 130:8 Expected identifier but found whitespace
Line 130:10 Unexpected "{"
Line 130:19 Expected ":"
... and 4 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:dual-image-banner (INDEX:13) */
.dual-image-banner {
  width: 100%;
  overflow: hidden;
}

.dual-image-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: {{ section.settings.gap }}px;
}

.dual-image-banner__panel {
  position: relative;
  overflow: hidden;
}

.dual-image-banner__link-wrapper {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  height: 100%;
}

.dual-image-banner__image-wrap {
  width: 100%;
  overflow: hidden;
  aspect-ratio: {{ section.settings.aspect_ratio }};
}

.dual-image-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.dual-image-banner__panel:hover .dual-image-banner__img {
  transform: scale(1.03);
}

.dual-image-banner__placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: block;
}

.dual-image-banner__content {
  position: absolute;
  z-index: 2;
  padding: 1rem;
}

.dual-image-banner__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading-family);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
  font-weight: var(--font-heading-weight);
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

.dual-image-banner__title-regular {
  display: inline;
  font-style: normal;
  font-weight: var(--font-heading-weight);
}

.dual-image-banner__title-italic {
  display: inline;
  font-weight: 400;
  font-style: italic;
}

/* Hover underline shrink effect */
.dual-image-banner__cta {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  cursor: pointer;
}

.dual-image-banner__cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dual-image-banner__link-wrapper:hover .dual-image-banner__cta::after {
  transform: scaleX(0.35);
  transform-origin: left center;
}

@media (max-width: 749px) {
  .dual-image-banner__grid {
    grid-template-columns: 1fr;
    gap: {{ section.settings.mobile_gap }}px;
  }

  .dual-image-banner__image-wrap {
    aspect-ratio: {{ section.settings.mobile_aspect_ratio }};
  }

  .dual-image-banner__title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }
}
/* END_SECTION:dual-image-banner */

/* START_SECTION:editorial-slider (INDEX:14) */
.editorial-slider {
  width: 100%;
  padding: 0;
}

/* ── Desktop: 5-col grid ── */
.editorial-slider__desktop {
  display: none;
}

.editorial-slider__mobile {
  display: block;
}

@media (min-width: 768px) {
  .editorial-slider__desktop {
    display: flex;
    gap: 2px;
  }
  .editorial-slider__mobile {
    display: none;
  }
  .editorial-slider__item {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* ── Shared card styles ── */
.editorial-slider__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.editorial-slider__image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0ede8;
  display: block;
}

.editorial-slider__image,
.editorial-slider__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.editorial-slider__link:hover .editorial-slider__image {
  transform: scale(1.03);
}

.editorial-slider__placeholder {
  padding: 20%;
  opacity: 0.3;
}

.editorial-slider__meta {
  text-align: center;
  padding: 10px 0 0;
}

.editorial-slider__category {
  font-family: var(--font-heading-family);
  font-size: 12px;
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
  color: var(--color-foreground, #121212);
  margin: 0 0 4px;
  display: inline-block;
  position: relative;
}

.editorial-slider__category::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 0.5px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.editorial-slider__link:hover .editorial-slider__category::after {
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s ease;
}

.editorial-slider__description {
  font-size: 11px;
  color: var(--color-foreground, #121212);
  opacity: 0.6;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 767px) {
  /* .editorial-slider__category {
    font-size: 1rem;
  } */
}

/* ── Mobile slider ── */
.editorial-slider__track-wrap {
  overflow: hidden;
  width: 100%;
}

.editorial-slider__track {
  display: flex;
  gap: 8px; /* gap lives here, NOT as padding on slides */
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* 
  Slide width = full container minus the 24px right peek minus
  the gap (8px) so the next card peeks through on the right.
  No padding on slides — gap handles spacing between cards.
*/
.editorial-slider__slide {
  flex: 0 0 calc(100% - 24px);
  min-width: 0;
}

/* ── Nav ── */
.editorial-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0 4px;
}

.editorial-slider__btn {
  width: 26px;
  height: 26px;
  border: 0.5px solid rgba(18, 18, 18, 0.3);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  padding: 0;
  color: var(--color-foreground, #121212);
}

.editorial-slider__btn:hover {
  background: rgba(18, 18, 18, 0.06);
}

.editorial-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.editorial-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.editorial-slider__dot.is-active {
     background: #1a7051;
    transform: scale(1.3);
    position: relative;
        margin: 0 6px;
    left: -6px;
  /* border: 0.4px solid grey; */
}


button.editorial-slider__dot.is-active:before {
    position: absolute;
    width: 8px;
    content: " ";
    height: 8px;
    background: #1a7051;
    border-radius: 50%;
    top: 0px;
    right: -6px;
}
/* END_SECTION:editorial-slider */