/**
Include icons in scss/css.
Usage: 
 @include icon(close);
*/
/*
Media query mixin.
Usage: 
@include media($bp-l, min)
*/
/*
Mixin to add loading spinner to button/element.
Usage: 
@include loading()
*/
.bundle-card__image {
  aspect-ratio: 1/1;
  position: relative;
  background-color: #f6fffc;
}
.bundle-card__image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-card__badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
.bundle-card__badges .badge {
  white-space: nowrap;
}

.bundle-card__content {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.bundle-card__title {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 600;
  letter-spacing: -0.0125rem;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 992px) {
  .bundle-card__title {
    font-size: 1.25rem;
  }
}

.bundle-card__body {
  font-size: 1rem;
  line-height: 140%;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: #595959;
}

.bundle-card__price {
  font-size: 0.875rem;
  line-height: 140%;
  font-weight: 500;
  color: #1a1a1a;
}

.bundle-card__button {
  margin-top: 0.375rem;
}
