/* stylelint-disable */
/* stylelint-disable max-line-length */
: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 */ /* 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);
*/
: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 */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: #231f20;
  --sk-color-white: white;
  --sk-color-primary: #969469;
  --sk-color-primary-light: #c59454;
  --sk-color-primary-dark: #6b5538;
  --sk-color-second: #1890FF;
  --sk-color-second-light: #40A9FF;
  --sk-color-second-dark: #0050B3;
  --sk-color-third: #13C2C2;
  --sk-color-third-light: #5CDBD3;
  --sk-color-third-dark: #006D75;
  /* Background colors */
  --sk-color-bg-primary: var(--sk-color-second);
  --sk-color-bg-second: #f2f6fd;
  /* Typography */
  --sk-color-text: #231f20;
  --sk-color-text-heading: #6b5538;
  --sk-color-text-subtle: #8995a6;
  --sk-color-link: var(--sk-color-second);
  --sk-color-link-hover: var(--sk-color-second-light);
  --sk-color-link-visited: var(--sk-color-second);
  /* Border */
  --sk-color-border: #c8c8c8;
  /* Body */
  --sk-color-body: var(--sk-color-text);
  /* Feedback */
  --sk-color-success: green;
  --sk-color-error: red;
  --sk-color-warning: orange;
  /* Icons */
  --sk-color-icon-primary: var(--sk-color-primary);
  --sk-color-icon-secondary: var(--sk-color-second);
}

main {
  position: relative;
}

body {
  overflow-x: hidden;
}
body.popup-open {
  overflow: hidden;
}

.sk-wrapper {
  display: flex;
}
.sk-wrapper--wrap {
  flex-wrap: wrap;
}
.sk-wrapper--jc-sb {
  justify-content: space-between;
}
.sk-wrapper--jc-c {
  justify-content: center;
}
.sk-wrapper--column {
  flex-direction: column;
  align-items: flex-start;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sk-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .sk-only-d {
    display: none;
  }
}

@media (min-width: 768px) {
  .sk-only-m {
    display: none;
  }
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
: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 */ /* 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);
*/
: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 */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: #231f20;
  --sk-color-white: white;
  --sk-color-primary: #969469;
  --sk-color-primary-light: #c59454;
  --sk-color-primary-dark: #6b5538;
  --sk-color-second: #1890FF;
  --sk-color-second-light: #40A9FF;
  --sk-color-second-dark: #0050B3;
  --sk-color-third: #13C2C2;
  --sk-color-third-light: #5CDBD3;
  --sk-color-third-dark: #006D75;
  /* Background colors */
  --sk-color-bg-primary: var(--sk-color-second);
  --sk-color-bg-second: #f2f6fd;
  /* Typography */
  --sk-color-text: #231f20;
  --sk-color-text-heading: #6b5538;
  --sk-color-text-subtle: #8995a6;
  --sk-color-link: var(--sk-color-second);
  --sk-color-link-hover: var(--sk-color-second-light);
  --sk-color-link-visited: var(--sk-color-second);
  /* Border */
  --sk-color-border: #c8c8c8;
  /* Body */
  --sk-color-body: var(--sk-color-text);
  /* Feedback */
  --sk-color-success: green;
  --sk-color-error: red;
  --sk-color-warning: orange;
  /* Icons */
  --sk-color-icon-primary: var(--sk-color-primary);
  --sk-color-icon-secondary: var(--sk-color-second);
}

main {
  position: relative;
}

body {
  overflow-x: hidden;
}
body.popup-open {
  overflow: hidden;
}

.sk-wrapper {
  display: flex;
}
.sk-wrapper--wrap {
  flex-wrap: wrap;
}
.sk-wrapper--jc-sb {
  justify-content: space-between;
}
.sk-wrapper--jc-c {
  justify-content: center;
}
.sk-wrapper--column {
  flex-direction: column;
  align-items: flex-start;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sk-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .sk-only-d {
    display: none;
  }
}

@media (min-width: 768px) {
  .sk-only-m {
    display: none;
  }
}

.hero-block {
  padding: 70px 30px 75px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1340px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero-block {
    padding: 129px 30px 143px;
  }
}
.hero-block__container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-block__content-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px 23px 30px;
  width: 586px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero-block__content-wrapper {
    width: 780px;
    padding: 28px 60px 30px;
  }
}
.hero-block__subtitle {
  color: #fff;
  font-family: var(--sk-font-primary);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  margin-bottom: 31px;
  margin-top: 0;
  position: relative;
}
@media (min-width: 1200px) {
  .hero-block__subtitle {
    font-size: 28px;
    margin-bottom: 41px;
  }
}
.hero-block__subtitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: #eadbac;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .hero-block__subtitle::after {
    width: 120px;
    bottom: -15px;
  }
}
.hero-block__title {
  color: #eadbac;
  font-family: var(--sk-font-secondary);
  font-size: 32.5px;
  font-weight: 400;
  font-style: normal;
  line-height: 32.5px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 !important;
}
@media (max-width: 375px) {
  .hero-block__title {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .hero-block__title {
    font-size: 50px;
    line-height: 50px;
  }
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
: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 */ /* 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);
*/
: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 */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: #231f20;
  --sk-color-white: white;
  --sk-color-primary: #969469;
  --sk-color-primary-light: #c59454;
  --sk-color-primary-dark: #6b5538;
  --sk-color-second: #1890FF;
  --sk-color-second-light: #40A9FF;
  --sk-color-second-dark: #0050B3;
  --sk-color-third: #13C2C2;
  --sk-color-third-light: #5CDBD3;
  --sk-color-third-dark: #006D75;
  /* Background colors */
  --sk-color-bg-primary: var(--sk-color-second);
  --sk-color-bg-second: #f2f6fd;
  /* Typography */
  --sk-color-text: #231f20;
  --sk-color-text-heading: #6b5538;
  --sk-color-text-subtle: #8995a6;
  --sk-color-link: var(--sk-color-second);
  --sk-color-link-hover: var(--sk-color-second-light);
  --sk-color-link-visited: var(--sk-color-second);
  /* Border */
  --sk-color-border: #c8c8c8;
  /* Body */
  --sk-color-body: var(--sk-color-text);
  /* Feedback */
  --sk-color-success: green;
  --sk-color-error: red;
  --sk-color-warning: orange;
  /* Icons */
  --sk-color-icon-primary: var(--sk-color-primary);
  --sk-color-icon-secondary: var(--sk-color-second);
}

main {
  position: relative;
}

body {
  overflow-x: hidden;
}
body.popup-open {
  overflow: hidden;
}

.sk-wrapper {
  display: flex;
}
.sk-wrapper--wrap {
  flex-wrap: wrap;
}
.sk-wrapper--jc-sb {
  justify-content: space-between;
}
.sk-wrapper--jc-c {
  justify-content: center;
}
.sk-wrapper--column {
  flex-direction: column;
  align-items: flex-start;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sk-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .sk-only-d {
    display: none;
  }
}

@media (min-width: 768px) {
  .sk-only-m {
    display: none;
  }
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
: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 */ /* 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);
*/
: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 */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: #231f20;
  --sk-color-white: white;
  --sk-color-primary: #969469;
  --sk-color-primary-light: #c59454;
  --sk-color-primary-dark: #6b5538;
  --sk-color-second: #1890FF;
  --sk-color-second-light: #40A9FF;
  --sk-color-second-dark: #0050B3;
  --sk-color-third: #13C2C2;
  --sk-color-third-light: #5CDBD3;
  --sk-color-third-dark: #006D75;
  /* Background colors */
  --sk-color-bg-primary: var(--sk-color-second);
  --sk-color-bg-second: #f2f6fd;
  /* Typography */
  --sk-color-text: #231f20;
  --sk-color-text-heading: #6b5538;
  --sk-color-text-subtle: #8995a6;
  --sk-color-link: var(--sk-color-second);
  --sk-color-link-hover: var(--sk-color-second-light);
  --sk-color-link-visited: var(--sk-color-second);
  /* Border */
  --sk-color-border: #c8c8c8;
  /* Body */
  --sk-color-body: var(--sk-color-text);
  /* Feedback */
  --sk-color-success: green;
  --sk-color-error: red;
  --sk-color-warning: orange;
  /* Icons */
  --sk-color-icon-primary: var(--sk-color-primary);
  --sk-color-icon-secondary: var(--sk-color-second);
}

main {
  position: relative;
}

body {
  overflow-x: hidden;
}
body.popup-open {
  overflow: hidden;
}

.sk-wrapper {
  display: flex;
}
.sk-wrapper--wrap {
  flex-wrap: wrap;
}
.sk-wrapper--jc-sb {
  justify-content: space-between;
}
.sk-wrapper--jc-c {
  justify-content: center;
}
.sk-wrapper--column {
  flex-direction: column;
  align-items: flex-start;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sk-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .sk-only-d {
    display: none;
  }
}

@media (min-width: 768px) {
  .sk-only-m {
    display: none;
  }
}

.hero-block {
  padding: 70px 30px 75px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1340px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero-block {
    padding: 129px 30px 143px;
  }
}
.hero-block__container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-block__content-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px 23px 30px;
  width: 586px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero-block__content-wrapper {
    width: 780px;
    padding: 28px 60px 30px;
  }
}
.hero-block__subtitle {
  color: #fff;
  font-family: var(--sk-font-primary);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  margin-bottom: 31px;
  margin-top: 0;
  position: relative;
}
@media (min-width: 1200px) {
  .hero-block__subtitle {
    font-size: 28px;
    margin-bottom: 41px;
  }
}
.hero-block__subtitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: #eadbac;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .hero-block__subtitle::after {
    width: 120px;
    bottom: -15px;
  }
}
.hero-block__title {
  color: #eadbac;
  font-family: var(--sk-font-secondary);
  font-size: 32.5px;
  font-weight: 400;
  font-style: normal;
  line-height: 32.5px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 !important;
}
@media (max-width: 375px) {
  .hero-block__title {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .hero-block__title {
    font-size: 50px;
    line-height: 50px;
  }
}

.category-page__info {
  max-width: 890px;
  margin: 0 auto;
  padding: 25px 20px 10px;
  position: relative;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
.category-page__info::after {
  content: "";
  display: block;
  width: calc(100% - 40px);
  max-width: 100%;
  height: 1px;
  background-color: #6b5538;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.category-page__info .info-item {
  margin-right: 12px;
  color: #231f20;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 27px;
}
.category-page__info .info-item .info-title {
  color: #969469;
  font-family: var(--sk-font-secondary);
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 27px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-right: 5px;
}
.category-page__info .info-item .info-title.town {
  padding-right: 0;
}
.category-page__content {
  max-width: 890px;
  margin: 0 auto 20px;
  padding: 20px 20px 10px;
}
.category-page__content > p, .category-page__content > ul, .category-page__content > ol, .category-page__content > pre, .category-page__content > blockquote, .category-page__content > .wp-block-image, .category-page__content > .wp-block-file, .category-page__content > .wp-block-button, .category-page__content > .wp-block-table, .category-page__content > .wp-block-pullquote, .category-page__content > .wp-block-columns, .category-page__content > .wp-block-media-text, .category-page__content > .wp-block-calendar, .category-page__content > .wp-block-embed, .category-page__content > form, .category-page__content > iframe, .category-page__content > h1, .category-page__content > h2, .category-page__content > h3, .category-page__content > h4, .category-page__content > h5, .category-page__content > h6, .category-page__content > hr, .category-page__content > figure {
  max-width: 890px;
  margin: 0 auto 20px;
  padding: 0 0 5px;
}
.category-page__posts {
  width: 1340px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px 20px;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
}
.category-page__posts .listing-title {
  width: 100%;
  text-align: center;
  padding: 0 20px 5px;
  margin-top: 0;
}
.category-page__posts .item {
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  height: 350px;
}
@media (min-width: 768px) {
  .category-page__posts .item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media (min-width: 992px) {
  .category-page__posts .item {
    width: calc(33.33% - 20px);
    margin: 0 10px 20px;
  }
}
@media (min-width: 1200px) {
  .category-page__posts .item {
    width: calc(33.33% - 30px);
    margin: 0 15px 30px;
    height: 425px;
  }
}
.category-page__posts .sponsored {
  background-color: #d4d6cd;
  text-align: center;
  padding: 26px 27px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category-page__posts .sponsored .title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.91px;
  font-style: italic;
  margin: 0 0 12px;
  line-height: 1;
}
.category-page__posts .sponsored .image {
  height: 250px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
}
.category-page__posts .sponsored .image .slogan {
  padding: 15px 15px 10px;
  color: #fff;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  position: relative;
}
.category-page__posts .sponsored .image .slogan span {
  color: #fff;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
}
.category-page__posts .sponsored .image .slogan .mask {
  z-index: 0;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.category-page__posts .sponsored .description {
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.71px;
  font-style: normal;
  margin: 12px 0 12px;
}
.category-page__posts .sponsored .link {
  background-color: #969469;
  text-decoration: none;
  outline: none;
  border-radius: 5px;
  color: #fff;
  transition: all 0.2s ease;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px 5px;
  min-width: 175px;
  margin-top: auto;
}
.category-page__posts .sponsored .link:hover {
  background-color: #6b5538;
}
.category-page__posts .quotation {
  background-color: #a9cace;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 15px;
}
@media (min-width: 768px) {
  .category-page__posts .quotation {
    padding: 35px;
  }
}
.category-page__posts .quotation .author {
  color: #231f20;
  font-family: var(--sk-font-primary);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  margin: 0;
}
.category-page__posts .quotation .quote {
  color: #231f20;
  font-family: var(--sk-font-secondary);
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  margin-bottom: 0;
  padding-bottom: 5px;
}
@media (min-width: 992px) {
  .category-page__posts .quotation .quote {
    margin-bottom: 0;
    font-size: 27px;
    line-height: 27px;
    letter-spacing: 1px;
  }
}
@media (min-width: 1200px) {
  .category-page__posts .quotation .quote {
    font-size: 31px;
    line-height: 31px;
  }
}
.category-page__posts .general {
  display: flex;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 28px;
  transition: all 0.2s ease;
}
@media (min-width: 1200px) {
  .category-page__posts .general {
    padding: 35px;
  }
}
.category-page__posts .general::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}
.category-page__posts .general:hover::after {
  opacity: 0.5;
}
.category-page__posts .general .item-wrapper {
  margin-top: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px 25px 19px;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media (min-width: 1200px) {
  .category-page__posts .general .item-wrapper {
    padding: 0 30px 20px;
  }
}
.category-page__posts .general .item-wrapper .item-subtitle {
  color: #fff;
  font-family: var(--sk-font-primary);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  margin-bottom: 17px;
  position: relative;
}
@media (min-width: 992px) {
  .category-page__posts .general .item-wrapper .item-subtitle {
    font-size: 18px;
    margin-bottom: 27px;
  }
}
.category-page__posts .general .item-wrapper .item-subtitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 63px;
  height: 1px;
  background-color: #eadbac;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
}
.category-page__posts .general .item-wrapper .item-title {
  color: #eadbac;
  font-family: var(--sk-font-secondary);
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: normal;
  margin: 0;
}
@media (min-width: 992px) {
  .category-page__posts .general .item-wrapper .item-title {
    font-size: 27px;
    line-height: 27px;
    letter-spacing: 1px;
  }
}
@media (min-width: 1200px) {
  .category-page__posts .general .item-wrapper .item-title {
    font-size: 31px;
    line-height: 31px;
  }
}
.category-page__bottom-wrapper {
  max-width: 890px;
  margin: 0 auto;
  padding: 0 20px;
}
.category-page__bottom-wrapper .button-wrapper {
  text-align: center;
  width: 100%;
}
.category-page__bottom-wrapper .button-wrapper .home-link {
  background-color: #969469;
  text-decoration: none;
  outline: none;
  border-radius: 0;
  color: #fff;
  transition: all 0.2s ease;
  font-family: var(--sk-font-secondary);
  text-transform: uppercase;
  font-size: 27px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 30px 13px;
}
.category-page__bottom-wrapper .button-wrapper .home-link:hover {
  background-color: #6b5538;
}
