/* DEFAULT STYLES */

.gha__promo-banner .card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  /* justify-content: space-between; */
  height: 100%;
  align-items: center;
  gap: 1rem;
  box-shadow: 0px 3px 6px rgb(from #000 r g b / 30%);
}

@media (max-width: 767px) {
  .gha__promo-banner .card {
    padding: 0 16px 0 0 !important;
  }
}

.gha__promo-banner .card__content {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: column;
  text-align: center;
}

.gha__promo-banner .card__icon {
  line-height: 0;
  padding: 5px;
}

/* .gha__promo-banner .card__icon img {
  max-width: 14px;
  height: auto;
} */

.gha__promo-banner .card__text > * {
  margin-bottom: 0.5rem;
}

.gha__promo-banner .card__text > *:last-child {
  margin-bottom: 0;
}
.gha__promo-banner .card hr {
  width: 100%;
  margin: 16px 0;
  border-bottom: 1px rgba(27, 8, 7, 0.3) solid;
}

.gha__promo-banner .slick-slider.slider-container {
  margin-bottom: 1rem;
}

.gha__promo-banner .slick-track {
  display: flex !important;
  align-items: stretch;
  /* padding: 0.5rem; */
}

.gha__promo-banner .slick-list {
  padding: 0 25% 0 0 !important;
}

.gha__promo-banner .slick-slide {
  height: inherit !important;
  margin: 0 0.5rem 0 0;
}
.gha__promo-banner .slick-slide>div {
  height: 100%;
}

@media (min-width: 768px) {
  .gha__promo-banner .slick-slider.slider-container {
    margin-bottom: 0;
  }
}

/** Progress Bar **/
.gha__promo-banner .progress-bar {
  display: block;
  width: calc(100% - 1rem);
  height: 8px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8f7f1;
}

.gha__promo-banner .progress-bar__progress {
  background-color: #1d0202;
  height: 8px;
  border-radius: 8px;
  transition: width .4s linear;
}

.gha__promo-banner .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (min-width: 768px) {
  .gha__promo-banner .slick-list {
    padding: 0.5rem !important;
  }

  .gha__promo-banner .progress-bar {
    width: calc(100% - 0.5rem);
  }
}

@media (min-width: 1000px) {
  .gha__promo-banner .card__content {
    gap: 1rem;
  }

  .gha__promo-banner .card__text > * {
    margin-bottom: 1rem;
  }

  /* .gha__promo-banner .card__icon img {
    max-width: initial;
  } */

  .gha__promo-banner .slick-track {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }

  .gha__promo-banner .slick-track:after, 
  .gha__promo-banner .slick-track:before {
    display: none;
  }

  .gha__promo-banner .slick-slide {
    position: relative;
    flex-basis: calc(50% - 2rem);
    flex-grow: 1;
    margin: 0;
  }

  /* .gha__promo-banner .slick-slide:nth-child(2n):before {
    content: '';
    position: absolute;
    top: 0;
    left: -1.5rem;
    border-left: 1px solid rgba(27,8,7,.3);
    height: 100%;
  } */
  
  .gha__promo-banner .progress-bar {
    display: none;
  }
}

@media (min-width: 1400px) {
  .gha__promo-banner {
    flex-wrap: nowrap;
  }

  .gha__promo-banner .slick-slide {
    flex-basis: calc(25% - 9rem);
    flex-grow: 1;
  }

  /* .gha__promo-banner .slick-slide:not(:first-child):before {
    content: '';
    position: absolute;
    top: 0;
    left: -1.5rem;
    border-left: 1px solid rgba(27,8,7,.3);
    height: 100%;
  } */
}


{# Clickable containers #}
.clickable {
  position: relative;
  cursor: pointer;
}

/* add pseudo element to stretched link to cover the entire container */
.clickable a.stretched-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
}

/* Prevents the entire container from being clickable when multiple links exist */
.clickable.multiple-links {
  pointer-events: none;
}

.clickable.multiple-links a {
  pointer-events: auto;
}