/* Mixins --------------------------------------------------------------------------------------------------------*/
/* category --------------------------------------------------------------------------------------------------------*/
.category-section {
  padding: 40px 0 20px;
}

.category-card-outer {
  padding-bottom: 20px;
}

.category-slider {
  padding-bottom: 40px;
}

.category-card {
  background: #ffffff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.theme-dark .category-card {
  background: #222222;
}

.three-item-card-outer .category-card {
  width: 300px;
}

.category-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
}

.category-card-header-small {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.125rem;
  padding: 5px 10px;
  border-radius: 6px;
  position: absolute;
  top: 10px;
  left: 10px;
  background: #EB5D0B;
  background: linear-gradient(90deg, #F8AA25 0%, #EB5D0B 99.87%);
}

.category-card-body {
  padding: 20px;
}

.category-card-date {
  font-size: 1rem;
  line-height: 1.5rem;
  padding-bottom: 20px;
}
.theme-light .category-card-date {
  color: #73706E;
}
.theme-dark .category-card-date {
  color: #EBEBEB;
}

.category-card-title {
  color: #0069B4;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.875rem;
  padding-bottom: 15px;
}

.category-card-text {
  font-size: 1rem;
  line-height: 1.5rem;
}
.theme-light .category-card-text {
  color: #73706E;
}
.theme-dark .category-card-text {
  color: #EBEBEB;
}

/* Responsive Media Queries --------------------------------------------------------------------------------------------------------*/
@media (min-width: 576px) {
  .three-item-card-outer .category-card {
    width: 340px;
  }

  .category-list {
    display: flex;
    flex-wrap: wrap;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    margin: 0 -15px;
  }

  .category-card-outer {
    width: 50%;
    padding: 0 10px 20px;
  }
}
@media (min-width: 768px) {
  .three-item-card-outer .category-card {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .category-card-outer {
    width: 33.33%;
  }
}
@media (min-width: 1400px) {
  .category-card-outer {
    width: 25%;
  }
}

/*# sourceMappingURL=category.css.map */