/* stylelint-disable */ /* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-sxl: 1600px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
  --breakpoint-xxxs: 375px;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
@media (min-width: 1024px) {
  .category {
    padding-bottom: 100px;
  }
}
.category__title {
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  .category__title {
    margin-bottom: 85px;
  }
}
.category__post {
  position: relative;
}
.category__post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 50px);
  height: 1px;
  background-color: var(--sk-color-grey);
  margin-left: -25px;
  margin-right: -25px;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 768px) {
  .category__post::before {
    width: calc(100% + 100px);
    margin-left: -50px;
    margin-right: -50px;
  }
}
@media (min-width: 1024px) {
  .category__post::before {
    width: calc(100% + 200px);
    margin-left: -100px;
    margin-right: -100px;
  }
}
.category__post:hover::before, .category__post:hover::after {
  background-color: var(--sk-color-salmon);
}
.category__post:hover .category__post-title {
  color: var(--sk-color-salmon);
}
.category__post:hover .category__icon svg path {
  fill: var(--sk-color-salmon);
}
.category__post:hover .category__post-wrapper {
  color: var(--sk-color-salmon);
}
.category__post:hover .category__post--category {
  color: var(--sk-color-blue);
}
.category .category__post:hover + .category__post::before {
  background-color: var(--sk-color-salmon);
}
.category .category__post:last-of-type::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 50px);
  height: 1px;
  background-color: var(--sk-color-grey);
  margin-left: -25px;
  margin-right: -25px;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 768px) {
  .category .category__post:last-of-type::after {
    width: calc(100% + 100px);
    margin-left: -50px;
    margin-right: -50px;
  }
}
@media (min-width: 1024px) {
  .category .category__post:last-of-type::after {
    width: calc(100% + 200px);
    margin-left: -100px;
    margin-right: -100px;
  }
}
.category .category__post:last-of-type:hover::before, .category .category__post:last-of-type:hover::after {
  background-color: var(--sk-color-salmon);
}
.category__post-wrapper {
  display: grid;
  grid-template-columns: 1fr 20px;
  padding: 13px 0;
}
.category a.category__post-wrapper {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
.category__post--title {
  padding-right: 50px;
}
.category__post--category {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  color: var(--sk-color-grey);
  text-transform: uppercase;
  font-family: var(--sk-font-primary);
}
.category__icon {
  position: absolute;
  right: 0;
  top: 8px;
  transform: rotate(-90deg);
  width: 25px;
  display: flex;
}
.category__icon svg path {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  fill: var(--sk-color-grey);
}
