.free-time {
  padding: 48px 0 64px;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .free-time {
    padding: 64px 0 80px;
  }
}


/* Slider wrapper — full bleed */
.free-time__slider-wrapper {
  overflow: visible;
}

.free-time__embla {
  position: relative;
}

.free-time__viewport {
  overflow: visible;
}

.free-time__container {
  display: flex;
  align-items: flex-start;
  touch-action: pan-y pinch-zoom;
}

@media (min-width: 768px) {
  .free-time__container {
    margin: 0 -9px;
  }
}

/* Slides */
.free-time__slide {
  flex: 0 0 100%;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .free-time__container { gap: 10px; }
}

@media (min-width: 768px) {
  .free-time__viewport {
    overflow: hidden;
  }

  .free-time__slide {
    flex: 0 0 25%;
    padding: 0 9px;
  }
}

/* Centering when not enough items to fill viewport */
.free-time__container--center {
  justify-content: center;
}

/* Card */
.free-time__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image wrapper */
.free-time__image-wrapper {
  border-radius: 21px;
  overflow: hidden;
  aspect-ratio: 442 / 575;
}

.free-time__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Info below image */
.free-time__info {
  padding-top: 18px;
  text-align: left;
}

.free-time__label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #0d1532;
}

@media (min-width: 768px) {
  .free-time__label {
    font-size: 21px;
  }
}

.free-time__subheading {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #0d1532;
  opacity: 0.7;
}

/* Controls */
.free-time__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1380px;
  margin: 28px auto 0;
  padding: 0;
}

.free-time__nav {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary, #2C2E83);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBFBFB;
  transition: opacity 0.2s ease;
}

.free-time__nav:hover {
  opacity: 0.8;
}


.free-time__pagination {
}

.free-time__pill {
  max-width: 40px;
  height: 6px;
  background: rgba(44, 46, 131, 0.2);
}

.free-time__pill.is-active {
  background: var(--color-primary, #2C2E83);
}

.free-time__pill:hover:not(.is-active) {
  background: rgba(44, 46, 131, 0.4);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .free-time__controls {
    margin-top: 20px;
  }

  .free-time__pill {
    max-width: 32px;
    height: 5px;
  }
}
