/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-1.use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/card/style.scss ***!
  \*******************************************************************************************************************************************************************************************/
/**
 * Helper mixins
*/
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Sizes */
/* Colour palette */
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
https://toward.studio/latest/making-css-gradients-smooth
*/
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-content {
  position: relative;
  z-index: 2;
}
.card::after {
  z-index: 1;
}
.card__picture {
  display: block;
  position: relative;
  margin-bottom: 26px;
}
.card__picture picture {
  width: 100%;
}
.card__picture img {
  width: 100%;
  height: 223px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
  display: block;
  color: #000;
  text-align: center;
}
.card__tags {
  position: absolute;
  top: 20px;
  right: 20px;
  width: calc(100% - 40px);
  overflow-x: auto;
  padding-bottom: 3px;
}
.card__tags::-webkit-scrollbar {
  height: 3px;
}
.card__tags::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 3px;
  height: 2px;
}
@supports (scrollbar-width: thin) {
  .card__tags {
    scrollbar-face-color: rgb(0, 0, 0);
    /* Firefox 63 compatibility */
    scrollbar-track-color: rgb(0, 0, 0);
    /* Firefox 63 compatibility */
    scrollbar-color: #000 #000;
    scrollbar-width: thin;
  }
}
.card__tags .tags {
  width: calc(100% - 20px);
}
.card__title-link {
  font-weight: 400;
  color: #000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.card__title-link {
  font-size: 18px;
}
@media screen and (min-width: 375px) {
  .card__title-link {
    font-size: calc(18px + 6 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .card__title-link {
    font-size: 24px;
  }
}
.card__title-link {
  line-height: 23px;
}
@media screen and (min-width: 375px) {
  .card__title-link {
    line-height: calc(23px + 8 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .card__title-link {
    line-height: 31px;
  }
}
.card__title-link:hover {
  color: #2D2412;
}
.card__title {
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
.card__footer {
  margin-top: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.card__read-duration {
  color: #9d9d9d;
  font-weight: 500;
}
@media (max-width: 768px) {
  .card__picture {
    margin-bottom: 18px;
  }
}
@media (max-width: 767px) {
  .card__title-link {
    font-weight: 700;
  }
}
@media (max-width: 480px) {
  .card__picture img {
    height: 180px;
  }
}
