/* 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
    }
*/
.archive-content {
  padding-top: 177px;
}
@media (max-width: 768px) {
  .archive-content {
    padding-top: 100px;
  }
}
@media (max-width: 512px) {
  .archive-content {
    padding-top: 50px;
  }
}
.archive-content .section-bg-image {
  padding-bottom: var(--sk-spacing-80);
  background-position: center 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .archive-content .section-bg-image {
    padding-bottom: var(--sk-spacing-85);
  }
}
@media (max-width: 512px) {
  .archive-content .section-bg-image {
    padding-bottom: var(--sk-spacing-45);
  }
}
.archive-content .archive-content__title {
  margin-bottom: var(--sk-spacing-65);
}
@media (max-width: 512px) {
  .archive-content .archive-content__title {
    margin-bottom: var(--sk-spacing-40);
  }
}
.archive-content__posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sk-spacing-25);
  margin-bottom: var(--sk-spacing-75);
}
@media (max-width: 1024px) {
  .archive-content__posts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .archive-content__posts {
    grid-template-columns: 1fr;
  }
}
.archive-content__pagination {
  margin-bottom: var(--sk-spacing-100);
}

.search__form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
}
.search__input, .search__submit {
  height: 50px;
  padding: 15px;
}
.search__input {
  margin-bottom: 0;
  border-color: var(--sk-color-border-primary);
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: 15px;
  line-height: 24px;
}
.search__input::-moz-placeholder {
  color: var(--sk-color-placeholder-primary);
  font-weight: 400;
}
.search__input::placeholder {
  color: var(--sk-color-placeholder-primary);
  font-weight: 400;
}
.search__submit {
  cursor: pointer;
  background-color: var(--sk-color-primary);
  border: none;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease-in-out;
}
.search__submit svg path {
  transition: stroke 0.3s ease-in-out;
}
.search__submit:hover {
  background-color: var(--sk-color-second);
}
.search__submit:hover svg path {
  stroke: var(--sk-color-white);
}
