/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-disable wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-enable wrap-rem-on-px/wrap-rem-on-px */
/*
USAGE:
font-size: fluid(12, 62); : from rem(12)@380px to  rem(62)@1440px
gap: fluid(10, 33, 992);  : from rem(10)@991px to  rem(33)@1440px
margin-right: fluid(32, 65, 320, 2560);  : from rem(32)@320px to  rem(65)@2560px
*/
/*
AUTOFILL

USAGE:
@include mixin.autofill(background-color, text-color);
@include mixin.autofill;

Note: Call this mixin in the wrapper or container to where you intend to manipulate the
      default chrome autofill styles for input, textarea and select elements.
*/
/* stylelint-disable */
/* stylelint-enable */
:root {
  --u-size-tiny: 0.25rem;
  --u-size-2x-tiny: 0.5rem;
  --u-size-3x-tiny: 0.75rem;
  --u-size-small: 1rem;
  --u-size-medium: 1.5rem;
  --u-size-2x-medium: 2rem;
  --u-size-large: 3rem;
  --u-size-2x-large: 4rem;
  --u-size-3x-large: 6rem;
  --u-size-huge: 8rem;
  --u-size-2x-huge: 12rem;
  --u-size-3x-huge: 16rem;
}

/* ===================================
   Brand Palette
=================================== */
:root {
  --black: #000;
  --white: #fff;
  --primary-blue-dark: #024482;
  --primary-blue-light: #C8EBFF;
  --blue-light-secondary: #C0DFEC;
  --primary-blue: #025FD8;
  --primary-cream: #FFFCEE;
  --pink: #FFC7F5;
  --yellow: #FBE546;
  --orange: #FF9F32;
  --red: #FF5F2D;
  --green: #8CE202;
  --base-light: #FFFCEE;
  --base-lighter: #FFFCEE;
}

.section--featured-categories {
  padding: var(--u-size-2x-large) 0 var(--u-size-2x-large);
}
@media screen and (min-width:1199px) {
  .section--featured-categories {
    padding: var(--u-size-huge) 0 var(--u-size-medium);
  }
}

.article-card--featured-categories {
  padding-bottom: var(--u-size-small);
  max-width: 47rem;
  margin: auto;
}
@media screen and (min-width:1199px) {
  .article-card--featured-categories {
    padding-bottom: var(--u-size-medium);
  }
}
.article-card--featured-categories .article-card__title {
  margin-bottom: var(--u-size-medium);
}
@media screen and (min-width:1199px) {
  .article-card--featured-categories .article-card__title {
    margin-bottom: var(--u-size-2x-medium);
  }
}
.article-card--featured-categories footer {
  margin-top: var(--u-size-medium);
}
@media screen and (min-width:1199px) {
  .article-card--featured-categories footer {
    margin-top: var(--u-size-2x-medium);
  }
}

.ss.featured-category {
  padding-top: var(--u-size-large);
}
@media screen and (min-width:1199px) {
  .ss.featured-category {
    padding-top: var(--u-size-2x-large);
  }
}
.ss.featured-category .featured-category__item {
  padding: 0 var(--u-size-2x-tiny);
  height: auto;
}
@media screen and (min-width:1199px) {
  .ss.featured-category .featured-category__item {
    padding: 0 var(--u-size-3x-tiny);
  }
}
.ss.featured-category .slick-list {
  margin: 0 calc(var(--u-size-2x-tiny) * -1);
  padding-bottom: 1.6875rem;
}
@media screen and (min-width:1199px) {
  .ss.featured-category .slick-list {
    margin: 0 calc(var(--u-size-3x-tiny) * -1);
    padding-bottom: 3.9375rem;
  }
}
.ss.featured-category .slick-track {
  display: flex;
}
.ss.featured-category .slick-prev {
  right: 2.5rem;
  left: auto;
}
@media screen and (min-width:1199px) {
  .ss.featured-category .slick-prev {
    right: 4.0625rem;
  }
}
.ss.featured-category .slick-next {
  right: 0;
}
.ss.featured-category .slick-arrow {
  bottom: -2rem;
}
.ss.featured-category .slick-dots {
  text-align: left;
  bottom: -1.125rem;
}
@media screen and (min-width:768px) {
  .ss.featured-category .slick-dots {
    justify-content: flex-start;
  }
}
@media screen and (min-width:1199px) {
  .ss.featured-category .slick-dots {
    bottom: -0.625rem;
  }
}
.ss.featured-category .slick-dots li:first-child {
  margin-left: 0;
}
.ss.featured-category .slick-dots li:last-child {
  margin-right: 0;
}

.ss.card figure {
  margin-bottom: var(--u-size-2x-medium);
}
@media screen and (min-width:1199px) {
  .ss.card figure {
    margin-bottom: var(--u-size-small);
  }
}
.ss.card figure img {
  border-radius: var(--u-size-3x-tiny);
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 358/221;
}
@media screen and (min-width:1199px) {
  .ss.card figure img {
    aspect-ratio: 421/260;
  }
}
.ss.card .card__info {
  margin-bottom: var(--u-size-large);
}
@media screen and (min-width:1199px) {
  .ss.card .card__info {
    margin-bottom: var(--u-size-2x-medium);
  }
}
.ss.card .card__info p {
  color: var(--primary-blue-dark);
  user-select: text;
}
.ss.card .card__title {
  margin-bottom: var(--u-size-small);
}
@media screen and (min-width:1199px) {
  .ss.card .card__title {
    margin-bottom: var(--u-size-2x-tiny);
  }
}
.ss.card--featured-categories {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ss.card--featured-categories .card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.ss.card--featured-categories .card__info {
  flex-grow: 1;
}

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