:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable selector-class-pattern */
.blog {
  background: var(--sk-color-beige-light);
}
.blog .posts .loading {
  opacity: 0.5;
  pointer-events: none;
}
.blog .posts__title {
  height: 186px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  background: var(--sk-color-beige);
}
@media (min-width: 1024px) {
  .blog .posts__title span {
    margin-top: 20px;
  }
}
.blog .posts__button {
  width: 100%;
  margin-bottom: 40px;
}
.blog .posts__grid {
  padding: 40px 0 0;
}
@media (min-width: 1024px) {
  .blog .posts__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 80px 0 0;
  }
}
.blog .posts__grid .post-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--sk-color-primary);
  padding-bottom: 40px;
}
.blog .posts__grid .post-item:hover {
  text-decoration: none;
}
.blog .posts__grid .post-item:hover img {
  transform: scale(1.1);
}
@media (min-width: 768px) {
  .blog .posts__grid .post-item {
    flex-direction: row;
    align-items: center;
  }
}
.blog .posts__grid .post-item__image {
  width: 100%;
  height: 225px;
  margin-bottom: 15px;
  overflow: hidden;
}
@media (min-width: 512px) {
  .blog .posts__grid .post-item__image {
    height: 275px;
  }
}
@media (min-width: 768px) {
  .blog .posts__grid .post-item__image {
    max-width: 400px;
    height: 225px;
    margin-bottom: 0;
    margin-right: 15px;
  }
}
@media (min-width: 1024px) {
  .blog .posts__grid .post-item__image {
    margin-right: 60px;
  }
}
.blog .posts__grid .post-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 1024px) {
  .blog .posts__grid .post-item__info {
    margin-top: -20px;
  }
}
.blog .posts__grid .post-item__info h2 {
  margin-bottom: 22px;
  font-family: var(--sk-font-barlow-semi);
}
.blog .posts__grid .post-item__info p {
  font-size: 14px;
  line-height: 120%;
}
.blog .posts__grid .post-item__bottom {
  padding-top: 23px;
  padding-left: 22px;
  display: flex;
  align-items: center;
}
.blog .posts__grid .post-item__bottom .date {
  position: relative;
}
.blog .posts__grid .post-item__bottom .date::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  width: 16px;
  height: 16px;
  background: url("../../../resources/img/icon-calendar.svg");
}
.blog .posts__grid .post-item__bottom .read {
  position: relative;
  margin-left: 22px;
}
.blog .posts__grid .post-item__bottom .read::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  width: 16px;
  height: 16px;
  background: url("../../../resources/img/icon-book.svg");
}
.blog .posts__grid .post-item__bottom .spacer {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--sk-color-dark);
  opacity: 0.2;
  margin: 0 8px;
}
.blog .posts .sk-container {
  padding: 0 15px 40px;
}
@media (min-width: 1024px) {
  .blog .posts .sk-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .blog .posts .sk-container .sk-container--sm {
    max-width: 1127px;
  }
}
.blog .posts .load-more {
  text-align: center;
}
.blog .posts .load-more button {
  min-height: 45px;
}
.blog .posts.all-loaded .posts__grid, .blog .posts.nothing-found .posts__grid {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .blog .posts.all-loaded .posts__grid, .blog .posts.nothing-found .posts__grid {
    margin-bottom: 0;
  }
}
.blog .posts.all-loaded .load-more, .blog .posts.nothing-found .load-more {
  display: none;
}

/* stylelint-enable selector-class-pattern */
