.carousel {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  background: var(--c-bg);
}

.carousel_wrapper {
  position: relative;
  /*top: 104px;*/
  width: calc(100% + 10px);
  margin-bottom: 104px;
}

.slick-dots {
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
  position: absolute;
  bottom: 0.4rem;
  left: 1rem;
  height: 2rem;
  /*transform: translate(-50%, 0) !important;*/

}
.slick-dots li {
  margin: 0 8px;
  display: unset;
  width: unset;
  height: unset;
  margin-inline: unset !important;
  padding: 0;
}
.slick-dots li[class^='slick-active'] button {
  width: 4rem;
  opacity: 1;
}
.slick-dots button {
  background-color: var(--c-card-bg) !important;
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: none;
  border-radius: 6px;
  color: transparent;
  line-height: 0;
  opacity: 0.6;
  transition: width 0.3s ease;
}
.slick-dots button.slick-pause-button, .slick-dots button.slick-play-button {
  background-color: transparent !important;
}
.slick-dots button svg.pause-play {
  height: 16px;
}
.slider_section--wrapper .slider_section--container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.slider_section--wrapper .slider_section--container .slider_section--image {
  flex: 1;
  width: 100%;
}
.slider_section--wrapper .slider_section--container .slider_section--content {
  flex: 2;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 285px;
  min-height: 238px;
  background-color: var(--c-bg);
  padding: 20px 15% 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--c-text);

}
.slider_section--wrapper .slider_section--container .slider_section--content * {
  font-size: 19px;
  text-align: center;
}

.slider_section--wrapper .slider_section--container .slider_section--content h2 {
  font-size: 170%;
}

/* TODO: Move this to base and restructure base.css */
strong {
  font-weight: bold;
}


@media (min-width: 768px) and (max-width: 992px ) {
    .carousel_wrapper {
      margin-bottom: 0;
    }

    .slick-slider {
      height: 520px;
    }

    .slider_section--wrapper .slider_section--container .slider_section--content .slider_section--content--container {
      height: 308px;
      overflow-y: hidden;
    }

    .slider_section--content--container__title {
      display: none;
    }
    .slider_section--content--container__description {
    }

    .slick-dots {
      left: 0;
      width: 100%;
      justify-content: center;
      padding-left: 0;
      padding-top: 1em;
    }

    .slick-dots li:first-of-type {
      margin: 0px;
    }
}

@media (max-width: 767px) {
  .carousel_wrapper {
    margin-bottom: 0;
  }

  .slick-slider {
    height: 520px;
  }

  .slider_section--wrapper .slider_section--container .slider_section--content .slider_section--content--container {
    height: 308px;
    overflow-y: hidden;
  }

  .slider_section--content--container__title {
    display: none;
  }
  .slider_section--content--container__description {
  }

  .slick-dots {
    left: 0;
    width: 100%;
    justify-content: center;
    padding-left: 0;
  }

  .slick-dots li:first-of-type {
    margin: 0px;
  }
}
