/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-s: 1170px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 640px;
  --breakpoint-xs: 512px;
  --breakpoint-xs-s: 480px;
  --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);
*/
.hero {
  min-height: 1024px;
  padding: 180px 0;
  background: var(--sk-color-primary);
  color: var(--sk-color-white);
  position: relative;
  overflow: hidden;
}
.hero picture {
  display: block;
  font-size: 0;
  height: 100%;
}
.hero .overlay-circle {
  position: absolute;
  border-radius: 50%;
}
.hero .overlay-circle--pink {
  width: 676px;
  height: 676px;
  background-color: var(--sk-color-second);
  right: calc(50% + 100px);
  top: -600px;
}
@media (max-width: 768px) {
  .hero .overlay-circle--pink {
    display: none;
  }
}
.hero .overlay-circle--purple {
  width: 805px;
  height: 805px;
  background-color: var(--sk-color-second-light);
  top: 234px;
  left: 50%;
}
@media (max-width: 768px) {
  .hero .overlay-circle--purple {
    display: none;
  }
}
.hero .overlay-circle--small {
  width: 140px;
  height: 140px;
  top: 363px;
  left: calc(50% - 560px);
}
@media (max-width: 768px) {
  .hero .overlay-circle--small {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    padding: 102px 0 382px;
  }
}
.hero .breadcrumbs {
  margin-bottom: 20px;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--sk-color-white2);
}
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6 {
  color: inherit;
  margin-bottom: 24px;
}
.hero .sk-text--h1-up {
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 0.94;
}
.hero__title.large-title {
  max-width: 391px;
}
@media (max-width: 768px) {
  .hero__title.large-title {
    max-width: 340px;
    margin-bottom: 24px;
  }
}
@media (max-width: 512px) {
  .hero__title.large-title {
    max-width: 300px;
  }
}
.hero__image {
  position: absolute;
  top: 76px;
  left: calc(50% + 400px);
  transform: translateX(-50%);
  width: 150%;
  max-width: 2000px;
  z-index: 1;
}
@media (max-width: 1440px) {
  .hero__image {
    left: calc(50% + 300px);
  }
}
@media (max-width: 1280px) {
  .hero__image {
    top: 200px;
  }
}
@media (max-width: 768px) {
  .hero__image {
    top: auto;
    width: 875px;
    bottom: 410px;
    left: calc(50% + 50px);
    transform: translateY(100%) translateX(-50%);
  }
}
.hero__image img {
  width: 100%;
  height: auto;
}
.hero--small {
  min-height: 452px;
  padding-top: 140px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .hero--small {
    padding-top: 100px;
  }
}
.hero--small::after {
  content: "";
  background: rgba(0, 31, 81, 0.2);
  backdrop-filter: blur(115px);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .hero--small {
    padding-bottom: 0;
    min-height: auto;
  }
}
.hero--small h1,
.hero--small h2,
.hero--small h3,
.hero--small h4,
.hero--small h5,
.hero--small h6 {
  color: var(--sk-color-second-light);
}
.hero--small .hero__content {
  color: var(--sk-color-white);
}
@media (max-width: 768px) {
  .hero--small .hero__content {
    padding-bottom: 254px;
  }
  .hero--small .hero__content.right {
    padding-bottom: 346px;
  }
}
.hero--small .hero__title {
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero--small .hero__title br {
    display: none;
  }
}
.hero--small .hero__title p {
  letter-spacing: -0.01em;
}
.hero--small .hero__image {
  left: calc(50% - 41px);
  top: auto;
  bottom: -74px;
  aspect-ratio: 764/575;
  transform: none;
  width: 764px;
}
@media (max-width: 768px) {
  .hero--small .hero__image {
    position: absolute;
    left: 0;
    bottom: -39px;
    width: 390px;
  }
}
.hero--small .hero__image.right {
  aspect-ratio: 778/695;
  width: 800px;
  bottom: -249px;
  left: calc(50% - 120px);
}
@media (max-width: 768px) {
  .hero--small .hero__image.right {
    left: -65px;
    bottom: -116px;
    width: 540px;
    max-width: none;
  }
}
.hero--small .hero__image img,
.hero--small .hero__image svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #005F75;
}
.choices[data-type*=select-one] .choices__item[data-placeholder] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid rgb(0, 53.5897435897, 66);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: rgb(182.75, 182.75, 182.75);
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #005F75;
  border: 1px solid rgb(0, 74.2948717949, 91.5);
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: rgb(0, 74.2948717949, 91.5);
  border: 1px solid rgb(0, 53.5897435897, 66);
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: rgb(170.25, 170.25, 170.25);
  border: 1px solid rgb(144.75, 144.75, 144.75);
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  display: block;
}
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: rgb(182.75, 182.75, 182.75);
}
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable[data-select-text], .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable[data-select-text]::after, .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text], [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text]::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: rgb(242.25, 242.25, 242.25);
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid rgb(246.5, 246.5, 246.5);
  color: rgb(127.5, 127.5, 127.5);
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */
.filters-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .filters-wrapper {
    margin-bottom: 48px;
  }
}
.filters-wrapper .filters-form {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .filters-wrapper .filters-form {
    margin-bottom: 8px;
    flex-direction: column;
  }
}
.filters-wrapper .filters-form__search {
  flex: 1;
  position: relative;
}
.filters-wrapper .filters-form__search input {
  height: 48px;
  border-radius: 99px;
  padding: 12px 40px 12px 20px;
  margin-bottom: 0;
  border-color: var(--sk-color-text);
}
.filters-wrapper .filters-form__search input::-moz-placeholder {
  color: var(--sk-color-text);
}
.filters-wrapper .filters-form__search input::placeholder {
  color: var(--sk-color-text);
}
.filters-wrapper .filters-form__search button {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  top: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.filters-wrapper .filters-form__selects {
  display: flex;
  gap: 18px;
}
@media (max-width: 512px) {
  .filters-wrapper .filters-form__selects .filters-form__select.category {
    flex: 1;
  }
}
.filters-wrapper .filters-form__selects .filters-form__select .choices {
  min-width: 188px;
  z-index: 1;
  border: 9999px;
}
@media (max-width: 768px) {
  .filters-wrapper .filters-form__selects .filters-form__select .choices {
    min-width: 130px;
  }
}
.filters-wrapper .filters-form__selects .filters-form__select .choices.is-focused {
  outline: revert;
  outline-offset: 2px;
}
.filters-wrapper .filters-form__selects .filters-form__select .choices.is-focused.is-open {
  outline: none;
}
.filters-wrapper .filters-form__selects .filters-form__select .choices[data-type*=select-one]::after {
  border: none;
  height: 8px;
  width: 13px;
  right: 16px;
  margin-top: -4px;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.08958 0.910826C1.76414 0.585389 1.23651 0.585389 0.91107 0.910826C0.585633 1.23626 0.585633 1.7639 0.91107 2.08934L5.91107 7.08934C6.23651 7.41477 6.76414 7.41477 7.08958 7.08934L12.0896 2.08934C12.415 1.7639 12.415 1.23626 12.0896 0.910826C11.7641 0.585389 11.2365 0.585389 10.9111 0.910826L6.50033 5.32157L2.08958 0.910826Z' fill='%23202020'/%3E%3C/svg%3E%0A");
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
  display: inline-block;
  line-height: 0;
}
.filters-wrapper .filters-form__selects .filters-form__select .choices[data-type*=select-one].is-open::after {
  margin-top: -4px;
  transform: scaleY(-1);
}
.filters-wrapper .filters-form__selects .filters-form__select .choices__inner {
  border-radius: 99px;
  background-color: var(--sk-color-white);
  border-color: var(--sk-color-text);
  padding: 12px 40px 12px 20px !important;
  height: 48px;
  display: flex;
  align-items: center;
}
.filters-wrapper .filters-form__selects .filters-form__select .choices__list {
  padding: 35px 20px 12px;
  border-radius: 16px;
}
.filters-wrapper .filters-form__selects .filters-form__select .choices__list--single, .filters-wrapper .filters-form__selects .filters-form__select .choices__list--dropdown {
  padding: 0;
}
.filters-wrapper .filters-form__selects .filters-form__select .choices__list--dropdown {
  border-radius: 16px;
  top: calc(100% - 26px);
  z-index: -1;
}
.filters-wrapper .filters-form__selects .filters-form__select .choices__list.is-active {
  border-color: var(--sk-color-text);
}
.filters-wrapper .filters-form__selects .filters-form__select .choices__item {
  color: var(--sk-color-text);
}
.filters-wrapper .filters-form__selects .filters-form__select .choices__item.choices__placeholder {
  opacity: 1;
}
.filters-wrapper .filters-form__selects .filters-form__select .choices__item--choice {
  background-color: transparent;
}
.filters-wrapper .filters-form__selects .filters-form__select .choices__item--selectable.is-highlighted {
  background-color: var(--sk-color-white2) !important;
}
.filters-wrapper .filters-form__selects .filters-form__select .choices__item--selectable.is-selected {
  color: var(--sk-color-primary);
}
.filters-wrapper .filters-results {
  color: var(--sk-color-text-3);
}

.category-label {
  padding: 4px 8px;
  border-radius: 99px;
  background: var(--sk-color-white);
  font-size: var(--sk-text--xs);
  letter-spacing: -0.01em;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--sk-color-primary);
  position: relative;
}
.category-label.green {
  background: var(--sk-color-third-light);
}
.category-label.pink {
  background: var(--sk-color-second);
}
.category-label.pale-blue {
  background: var(--sk-color-second-ligh);
}
.category-label.blue {
  background: var(--sk-color-primary);
  color: var(--sk-color-white);
}

.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 6px 8.3px 1px rgba(0, 31, 81, 0.15);
  height: 540px;
  position: relative;
}
.blog-card a {
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.blog-card a:hover .blog-card__content {
  height: calc(100% - 24px - 79px);
}
.blog-card a:hover .blog-card__content::before {
  opacity: 1;
  transition-delay: 0s;
}
.posts-list .blog-card a:hover .blog-card__content, .related .blog-card a:hover .blog-card__content, .archive-content__posts-wrapper .blog-card a:hover .blog-card__content {
  height: 100%;
}
.blog-card a:hover .blog-card__content .rest {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.blog-card a:hover .blog-card__content .sep_dots {
  opacity: 0;
  display: none;
}
.blog-card a:hover .blog-card__main {
  transition: all 0.3s linear;
}
.blog-card a:hover .blog-card__text {
  opacity: 1;
  transition-delay: 0.5s;
}
.blog-card a:hover .blog-card__link {
  font-weight: 700;
}
.blog-card > a {
  transition: 0.3s;
  transition-timing-function: linear;
}
.blog-card__image {
  height: 300px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.blog-card__content {
  height: 209px;
  transition: all 0.3s linear;
  transition-delay: 0.2s;
  padding: 24px 24px 79px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.blog-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s linear;
  transition-delay: 0.2s;
  /* stylelint-disable */
  background: linear-gradient(to bottom, rgba(201, 210, 255, 0.1) 0%, rgba(201, 210, 255, 0.8) 33%, rgb(201, 210, 255) 100%);
  /* stylelint-enable */
}
.posts-list .blog-card__content, .related .blog-card__content, .archive-content__posts-wrapper .blog-card__content {
  height: 288px;
}
.blog-card__category {
  display: block;
}
.blog-card__main {
  padding: 50px 0 0;
  position: relative;
  flex: 0 1 auto;
  height: auto;
  max-height: 100%;
}
.blog-card__date {
  font-size: var(--sk-text--2xs);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  display: block;
  line-height: 1.5;
}
.blog-card__title {
  font-size: var(--sk-text--xl);
  font-weight: 700;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
}
.blog-card__link {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease-in-out;
  font-size: var(--sk-text--xs);
}
.blog-card__link:hover {
  gap: 12px;
}
.blog-card__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  text-overflow: ellipsis;
  transition: all 0.2s linear;
  transition-delay: 0s;
  opacity: 0;
}
.blog-card__text .rest {
  color: transparent;
  transition-delay: 0.4s;
}

.pagination-block .pagination {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pagination-block .pagination li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.01em;
}
.pagination-block .pagination li a.page-number {
  text-decoration: none;
}
.pagination-block .pagination li a.page-number:hover {
  opacity: 0.8;
}
.pagination-block .pagination li.current {
  background-color: var(--sk-color-second);
  font-weight: 700;
}
.pagination-block .pagination li.btn {
  box-shadow: 2px 2px 4px 1px rgba(0, 31, 81, 0.15);
}
.pagination-block .pagination li.btn.prev {
  margin: 0 16px 0 12px;
}
.pagination-block .pagination li.btn button,
.pagination-block .pagination li.btn a {
  border: 1px solid var(--sk-color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.pagination-block .pagination li.btn a:hover {
  border-color: var(--sk-color-second);
  background-color: var(--sk-color-second);
}

.posts-articles-archive {
  margin: 40px 0 88px;
}
@media (max-width: 768px) {
  .posts-articles-archive {
    margin: 40px 0 30px;
  }
  .posts-articles-archive .sk-container {
    padding: 0 20px;
  }
}
.posts-articles-archive .posts-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .posts-articles-archive .posts-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .posts-articles-archive .posts-list {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}
