.promotion-card {
  background-color: #f3f3f3;
  border-radius: 0.25rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  flex-direction: column;
}
.promotion-card .promotion-card-image-wrapper {
  width: 100%;
  aspect-ratio: 3/2;
}
.promotion-card .promotion-card-image-wrapper .promotion-card-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promotion-card.active {
  display: flex !important;
}

.promotion-card-text {
  padding: clamp(0.75rem, 7vw, 1rem) clamp(0.85rem, 7vw, 1.15rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promotion-card-title {
  font-size: var(--step-1);
  margin-bottom: 0.5rem;
  color: var(--darker-text);
}

.promotion-card-desc {
  font-size: var(--step--1);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.promotion-card-button {
  align-self: flex-end;
  margin-top: auto;
  font-size: var(--step--1);
  background-color: var(--accent-03);
  color: white;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.25rem;
  transition: all 0.12s ease-in-out;
}
.promotion-card-button:hover {
  background-color: var(--accent-02);
}

.health-education .promotion-card {
  text-decoration: none;
  color: inherit;
}
.health-education .promotion-card-text {
  padding-top: 0.85rem;
  min-height: 4.5rem;
}
.health-education .promotion-card-desc {
  margin-bottom: 0;
}
.health-education .promotion-card-image-wrapper {
  position: relative;
}
.health-education .promotion-card-image-wrapper .promotion-card-hover {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--step--1);
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
.health-education .promotion-card-image-wrapper .promotion-card-hover > div {
  background-color: white;
  padding: 0.45rem 1.25rem;
  color: var(--primary-01);
  border-radius: 0.15rem;
  transform: translateY(100%);
  transition: all 0.25s ease-in-out;
}
.health-education .promotion-card:hover .promotion-card-hover {
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 1;
}
.health-education .promotion-card:hover .promotion-card-hover > div {
  transform: translateY(0);
}

.health-education-lisitng {
  --repeats: 1;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(var(--repeats), 1fr);
}
@media screen and (width >= 576px) {
  .health-education-lisitng {
    --repeats: 2;
  }
}
@media screen and (width >= 768px) {
  .health-education-lisitng {
    --repeats: 3;
  }
}
@media screen and (width >= 992px) {
  .health-education-lisitng {
    --repeats: 4;
  }
}/*# sourceMappingURL=promotions.css.map */