/* ============================================
 * Path: /assets/css/style-services-carousel.css
 * ============================================ */
.services-carousel .service-header.nf-header {
  margin: 3rem auto;
}
.nf-services-carousel .slick-dots li {
  width: .75rem;
  height: .75rem;
}
.nf-services-carousel .slick-dots li.slick-active {
  width: 3.125rem;
}
.nf-services-carousel .slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  line-height: .75rem;
  width: .75rem;
  height: .75rem;
  text-align: center;
  border-radius: 1.25rem;
  opacity: 1;
  background: var(--Primary-Golden-Hour-Light, #F0D895);
}
.nf-services-carousel .slick-dots li.slick-active button::before {
  width: 3.125rem;
}
.nf-services-carousel .slick-list {
  margin: 0 -0.75rem;
  padding-bottom: 1rem !important;
}
.nf-services-carousel .slick-slide {
  margin: 0 0.75rem;
}
/* Each slide is exactly the image/card width (this enables "auto" fit) */
.nf-services-slide {
  width: 236px;
}
/* Card */
.nf-services-card {
  display: block;
  max-width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
}
/* Media frame (mobile) */
.nf-services-media {
  position: relative;
  width: 100%;
}
.nf-services-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
/* Caption (top overlay, solid bg) */
.nf-services-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: inline-flex; /* key: content-sized row */
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem; /* space between text and arrow */
  padding: 0.75rem 1rem;
  background: var(--Secondary-Daylight, #F4F2EB);
}
.nf-services-caption__text {
  color: var(--Primary-Director-Black, #252525);
  font-feature-settings: 'liga'off;
  /* Mobile/Tile Title */
  font: var(--Mobile-Tile-Title);
  letter-spacing: 0.05625rem;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
}
.nf-icon--arrow-gold {
  color: var(--Primary-Golden-Hour, #D1BA79);
  flex: 0 0 auto;
}
/* Desktop */
@media (min-width: 768px) {
  .services-carousel .service-header.nf-header {
		margin: 7.5rem auto 5rem;
	}
  .nf-services-carousel .slick-list {
    margin: 0 -1.155rem;
    padding-bottom: 1rem !important;
  }
  .nf-services-carousel .slick-slide {
    margin: 0 1.155rem;
  }
  /* Desktop slide width = image width */
  .nf-services-slide {
    width: 360px;
  }
  /* Desktop media height */
  .nf-services-media {
    height: 580px;
  }
  /* Caption padding + type */
  .nf-services-caption {
    padding: 1rem 1.5rem;
  }
  .nf-services-caption__text {
    /* Desktop/Tile Title */
    font: var(--Desktop-Tile-Title);
    letter-spacing: 0.075rem;
  }
}