.awards-carousel {
  background: var(--bg-offwhite);
}

.awards-carousel-slider {
  padding: 8px 0 !important;
}

.awards-carousel-card {
  background: #fff;
  border: 1px solid var(--border-color-gray);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px 18px 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.awards-carousel-card:hover {
  transform: translateY(-3px);
  /* box-shadow: var(--card-shadow); */
}

.awards-carousel-card__img {
  /* height: 84px; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.awards-carousel-card__img img {
  min-height: 128px;
  max-width: 100%;
  object-fit: none;
}

.awards-carousel-card__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 12px !important;
}

.awards-carousel-card__location {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: var(--primary-color);
}

@media only screen and (max-width: 768px) {
  .awards-carousel {
    padding-top: 0px !important;
  }

  .awards-carousel-card {
    padding: 16px 14px;
  }

  .awards-carousel-card__img {
    height: 64px;
  }

  .awards-carousel-card__img img {
    max-height: 64px;
  }
  .awards-carousel-card__title {
    font-size: 18px;
    line-height: 24px;
  }
  .awards-carousel-card__img img {
    min-height: 67px !important;
    max-width: 100%;
    object-fit: contain;
  }
}
