/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl-s: 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: 370px;
}

/* 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);
*/
/* stylelint-disable */
/* Usage Examples
    .my-level-1-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 48px;
        margin: 0 0 0 16px;
    }

    .my-level-2-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 32px; // Don't need to change any settings, will work with any font size automatically
        margin: 0 0 0 16px;
    }

    .my-body-copy-class {
        @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin
        font-size: 16px;
    }

    // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output. 
    // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings 

    .slight-adjustment-needed {
        @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px);
        font-size: 17px;
    }

    .dont-do-this {
        @include text-crop;
        font-size: 16px;
        line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly
    }
*/
.single-post .posts,
.search .posts {
  padding-bottom: var(--sk-spacing-150);
  text-align: center;
}
@media (max-width: 1024px) {
  .single-post .posts,
  .search .posts {
    padding-bottom: var(--sk-spacing-130);
  }
}
@media (max-width: 768px) {
  .single-post .posts,
  .search .posts {
    padding-bottom: var(--sk-spacing-115);
  }
}
.single-post .posts__title,
.search .posts__title {
  margin-bottom: var(--sk-spacing-90);
}
@media (max-width: 1024px) {
  .single-post .posts__title,
  .search .posts__title {
    margin-bottom: var(--sk-spacing-65);
  }
}
@media (max-width: 768px) {
  .single-post .posts__title,
  .search .posts__title {
    margin-bottom: var(--sk-spacing-25);
  }
}
.single-post .posts__posts,
.search .posts__posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sk-spacing-25);
  margin-bottom: var(--sk-spacing-50);
}
@media (max-width: 1024px) {
  .single-post .posts__posts,
  .search .posts__posts {
    grid-template-columns: 1fr 1fr;
    margin-bottom: var(--sk-spacing-65);
  }
}
@media (max-width: 768px) {
  .single-post .posts__posts,
  .search .posts__posts {
    grid-template-columns: 1fr;
    margin-bottom: var(--sk-spacing-25);
  }
}
.single-post .posts__link a:hover,
.search .posts__link a:hover {
  background-color: var(--sk-color-white);
  color: var(--sk-color-text);
}

.single-post__hero {
  height: 100vh;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
@media (min-width: 1280px) {
  .single-post__hero {
    min-height: 870px;
  }
}
.single-post__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}
.single-post__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 74, 63, 0.3);
}
.single-post__hero-container {
  position: relative;
  z-index: 1;
  height: 100%;
}
.single-post .sk-container {
  height: 100%;
}
.single-post__wrapper {
  padding: var(--sk-spacing-100) 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .single-post__wrapper {
    justify-content: flex-start;
    padding: 145px 0;
  }
}
.single-post__date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sk-spacing-40);
  color: var(--sk-color-white);
}
@media (min-width: 768px) {
  .single-post__date {
    margin-bottom: var(--sk-spacing-50);
  }
}
@media (min-width: 1280px) {
  .single-post__date {
    margin-bottom: var(--sk-spacing-95);
  }
}
.single-post__date p {
  font-size: 15px;
  line-height: 21px;
  position: relative;
}
.single-post__date p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 10px;
  background-color: var(--sk-color-primary);
  border-radius: 50%;
  transform: translateY(-50%);
}
.single-post h1 {
  color: var(--sk-color-white);
}
.single-post .single-post__content {
  padding: var(--sk-spacing-65) 0;
  margin-top: calc(var(--sk-spacing-130) * -1);
}
@media (min-width: 1024px) {
  .single-post .single-post__content {
    padding: var(--sk-spacing-130) 0 var(--sk-spacing-65);
  }
}
@media (min-width: 1024px) {
  .single-post .single-post__content {
    padding: 145px 0 var(--sk-spacing-65);
  }
}
.single-post .single-post__content .sk-wp-editor {
  max-width: 1000px;
}
