@charset "UTF-8";
/*
Theme Name: Sonja Lengauer
Description: Custom Theme für sonjalengauer
Author: Simon Doppler
Author URI: https://www.doppler.ws
Version: 1.0
Text Domain: sonjalengauer
*/
.sl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.67rem 0;
  background: rgba(255, 255, 255, 0.69);
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -ms-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}
@media screen and (min-width: 1024px) {
  .sl-header {
    padding: 1rem 0;
  }
}
.sl-header.sl-header--scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.sl-header > div.container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-bar .sl-header {
  top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 600px) {
  .admin-bar .sl-header.sl-header--scrolled {
    top: 0;
  }
}

#sl-logo {
  flex: 1 1 0;
  position: relative;
  z-index: 10;
}
#sl-logo a {
  display: inline-block;
}
#sl-logo img {
  display: block;
  max-height: 3.5rem;
  width: auto;
}
@media screen and (min-width: 1024px) {
  #sl-logo img {
    max-height: 4.5rem;
  }
}

#sl-hamburger {
  cursor: pointer;
  position: relative;
  z-index: 10;
}
#sl-hamburger:before, #sl-hamburger:after {
  content: "";
  display: block;
}
#sl-hamburger div, #sl-hamburger:before, #sl-hamburger:after {
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: #212121;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#sl-hamburger.active div {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 0;
}
#sl-hamburger.active:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-bottom: -3px;
  margin-top: 13px;
}
#sl-hamburger.active:after {
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  #sl-hamburger {
    display: none;
  }
}

#sl-main-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 400;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}
#sl-main-menu ul,
#sl-main-menu .sl-header-cta--mobile {
  -webkit-transform: translateY(1rem);
  -moz-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  -o-transform: translateY(1rem);
  transform: translateY(1rem);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#sl-main-menu li {
  line-height: 2.5;
  text-align: center;
}
#sl-main-menu a:link,
#sl-main-menu a:visited {
  color: #212121;
}
#sl-main-menu a:hover,
#sl-main-menu a:focus,
#sl-main-menu li.current-menu-item > a,
#sl-main-menu li.current_page_item > a,
#sl-main-menu li.current-menu-ancestor > a {
  color: #6e8465;
}
#sl-main-menu .sub-menu {
  font-size: 1.05rem;
}
#sl-main-menu .sub-menu li {
  line-height: 2.2;
}
#sl-main-menu .sub-menu a:link,
#sl-main-menu .sub-menu a:visited {
  color: #3d3f3b;
}
#sl-main-menu .sub-menu a:hover,
#sl-main-menu .sub-menu a:focus,
#sl-main-menu .sub-menu li.current-menu-item > a,
#sl-main-menu .sub-menu li.current_page_item > a {
  color: #6e8465;
}
#sl-main-menu.active {
  opacity: 1;
  visibility: visible;
}
#sl-main-menu.active ul,
#sl-main-menu.active .sl-header-cta--mobile {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (min-width: 1024px) {
  #sl-main-menu {
    position: initial;
    display: block;
    opacity: 1;
    visibility: visible;
    flex: 0 0 auto;
    font-size: 1rem;
    background: transparent;
  }
  #sl-main-menu ul,
#sl-main-menu .sl-header-cta--mobile {
    transform: none;
  }
  #sl-main-menu li {
    line-height: 1;
    display: inline-block;
    margin-left: 1rem;
    text-align: left;
  }
  #sl-main-menu li:first-child {
    margin-left: 0;
  }
  #sl-main-menu li.menu-item-has-children {
    position: relative;
  }
  #sl-main-menu li.menu-item-has-children > a:after {
    content: "";
    display: inline-block;
    width: 0.4em;
    height: 0.4em;
    margin-left: 0.45em;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    vertical-align: 0.18em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: transform 0.2s ease-in-out;
    -moz-transition: transform 0.2s ease-in-out;
    -ms-transition: transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
  }
  #sl-main-menu li.menu-item-has-children:hover > a:after, #sl-main-menu li.menu-item-has-children:focus-within > a:after, #sl-main-menu li.menu-item-has-children.open > a:after {
    transform: rotate(225deg);
  }
  #sl-main-menu li.menu-item-has-children:hover > .sub-menu, #sl-main-menu li.menu-item-has-children:focus-within > .sub-menu, #sl-main-menu li.menu-item-has-children.open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  #sl-main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 20;
    min-width: 240px;
    margin-top: 1.2rem;
    font-size: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0.5rem);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #sl-main-menu .sub-menu:before {
    content: "";
    position: absolute;
    top: -1.2rem;
    left: 0;
    right: 0;
    height: 1.2rem;
  }
  #sl-main-menu .sub-menu li {
    display: block;
    margin-left: 0;
    line-height: 1.3;
  }
  #sl-main-menu .sub-menu a:link,
#sl-main-menu .sub-menu a:visited {
    display: block;
    padding: 0.65rem 1.4rem;
    color: #212121;
    white-space: nowrap;
  }
  #sl-main-menu .sub-menu li:first-child a {
    padding-top: 1rem;
  }
  #sl-main-menu .sub-menu li:last-child a {
    padding-bottom: 1rem;
  }
  #sl-main-menu .sub-menu a:hover,
#sl-main-menu .sub-menu a:focus,
#sl-main-menu .sub-menu li.current-menu-item > a,
#sl-main-menu .sub-menu li.current_page_item > a {
    color: #6e8465;
  }
}

.sl-header-cta .sl-cta-menu li {
  line-height: 1.5;
}
.sl-header-cta a:link,
.sl-header-cta a:visited {
  display: inline-block;
  color: #ed6c78;
  line-height: 1.5;
  white-space: nowrap;
}
.sl-header-cta a:hover,
.sl-header-cta a:focus {
  color: #e0525f;
}
.sl-header-cta--desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .sl-header-cta--desktop {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
  }
}
.sl-header-cta--mobile {
  margin-top: 2rem;
  text-align: center;
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .sl-header-cta--mobile {
    display: none;
  }
}

html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Ofelia Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: #212121;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
body.sl-menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1.5rem;
  font-weight: 400;
}

strong,
b {
  font-weight: 700;
}

h1 {
  font-size: 1.6rem;
}
@media screen and (min-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.4rem;
}
@media screen and (min-width: 1024px) {
  h3 {
    font-size: 1.8rem;
  }
}

h4 {
  font-size: 1.3rem;
}
@media screen and (min-width: 1024px) {
  h4 {
    font-size: 1.6rem;
  }
}

h5 {
  font-size: 1.2rem;
}
@media screen and (min-width: 1024px) {
  h5 {
    font-size: 1.4rem;
  }
}

h6 {
  font-size: 1.1rem;
}
@media screen and (min-width: 1024px) {
  h6 {
    font-size: 1.2rem;
  }
}

li {
  list-style: none;
}

header,
footer {
  flex: 0 0 auto;
}

section.sl-main-content {
  flex: 1 0 auto;
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.container {
  position: relative;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.sl-container--narrow {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.sl-container--mid {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

a:link,
a:visited {
  color: #6e8465;
  fill: #6e8465;
  text-decoration: none;
  -webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
  transition: 0.15s all;
}

a:hover,
a:focus {
  color: #ed6c78;
  fill: #ed6c78;
}

.sl-overlay {
  display: none;
}
.sl-overlay.active {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 15;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin-bottom: 1rem;
}

#sl-footer {
  background: #fff;
  padding: 4rem 0 2.5rem;
  font-size: 0.95rem;
}
#sl-footer .sl-row {
  margin: 0 -0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
}
#sl-footer .sl-row .sl-footer-col {
  padding: 0 0.5rem;
  flex: 0 0 100%;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #sl-footer .sl-row .sl-footer-col {
    width: auto;
    flex: 1 1 0px;
  }
}
#sl-footer .sl-footer-title,
#sl-footer .sl-footer-col h2,
#sl-footer .sl-footer-col h3 {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6e8465;
}
#sl-footer p {
  color: #3d3f3b;
}
#sl-footer li {
  line-height: 1.5;
}
#sl-footer a:link,
#sl-footer a:visited {
  color: #3d3f3b;
}
#sl-footer a:hover,
#sl-footer a:focus {
  color: #6e8465;
}
#sl-footer .sl-footer-legal {
  margin-top: 3rem;
  border-top: 1px solid rgba(33, 33, 33, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  font-size: 0.85rem;
}
#sl-footer .sl-footer-legal .sl-legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

a.sl-button:link,
a.sl-button:visited,
.sl-theme .sl-button .elementor-button,
a.button:link,
a.button:visited,
button.button,
input[type=submit] {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 1px solid #e0525f;
  border-radius: 0;
  background: #e0525f;
  color: #ffffff;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
  transition: 0.15s all;
}

a.sl-button:hover,
a.sl-button:focus,
.sl-theme .sl-button .elementor-button:hover,
.sl-theme .sl-button .elementor-button:focus,
a.button:hover,
a.button:focus,
button.button:hover,
button.button:focus,
input[type=submit]:hover,
input[type=submit]:focus {
  border-color: #da2f3f;
  background: #da2f3f;
  color: #ffffff;
}

a.sl-button--ghost:link,
a.sl-button--ghost:visited,
.sl-theme .sl-button--ghost .elementor-button {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 1px solid #e0525f;
  border-radius: 0;
  background: #e0525f;
  color: #ffffff;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
  transition: 0.15s all;
  border-color: #ed6c78;
  background: transparent;
  color: #ed6c78;
}

a.sl-button--ghost:hover,
a.sl-button--ghost:focus,
.sl-theme .sl-button--ghost .elementor-button:hover,
.sl-theme .sl-button--ghost .elementor-button:focus {
  border-color: #e0525f;
  background: #e0525f;
  color: #ffffff;
}

ul.sl-chips,
.sl-theme .sl-chips .elementor-icon-list-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.sl-chips li,
.sl-theme .sl-chips .elementor-icon-list-item {
  margin: 0;
  padding: 0.45rem 1.1rem;
  border: 1px solid #a3bc9b;
  font-size: 0.9rem;
  color: #3d3f3b;
  white-space: nowrap;
}

ul.sl-chips--filled li,
.sl-theme .sl-chips--filled .elementor-icon-list-item {
  border-color: transparent;
  background: #ffffff;
}

a.sl-more-link,
.sl-theme .sl-more-link a {
  color: #6e8465;
}
a.sl-more-link:after,
.sl-theme .sl-more-link a:after {
  content: "→";
  display: inline-block;
  margin-left: 0.4rem;
  -webkit-transition: 0.15s transform;
  -moz-transition: 0.15s transform;
  -ms-transition: 0.15s transform;
  -o-transition: 0.15s transform;
  transition: 0.15s transform;
}
a.sl-more-link:hover, a.sl-more-link:focus,
.sl-theme .sl-more-link a:hover,
.sl-theme .sl-more-link a:focus {
  color: #ed6c78;
}
a.sl-more-link:hover:after, a.sl-more-link:focus:after,
.sl-theme .sl-more-link a:hover:after,
.sl-theme .sl-more-link a:focus:after {
  -webkit-transform: translateX(0.25rem);
  -moz-transform: translateX(0.25rem);
  -ms-transform: translateX(0.25rem);
  -o-transform: translateX(0.25rem);
  transform: translateX(0.25rem);
}

.sl-theme .sl-more-link .elementor-button {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: inherit;
  color: #6e8465;
}
.sl-theme .sl-more-link .elementor-button .elementor-button-content-wrapper {
  display: inline;
}
.sl-theme .sl-more-link .elementor-button:hover, .sl-theme .sl-more-link .elementor-button:focus {
  background: transparent;
  color: #ed6c78;
}

.sl-theme .sl-quotes {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sl-theme .sl-quotes .sl-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sl-theme .sl-quotes .sl-quote > .e-con-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sl-theme .sl-quotes .sl-quote:before {
  content: "„";
  position: static;
  width: auto;
  height: auto;
  display: block;
  font-size: 4.5rem;
  line-height: 1;
  color: #a3bc9b;
}
.sl-theme .sl-quotes .sl-quote p {
  max-width: 36em;
  margin: 0 auto 1.5rem;
  font-size: 1.35rem;
  line-height: 1.5;
  text-align: center;
}
.sl-theme .sl-quotes .sl-quote .sl-quote-attr,
.sl-theme .sl-quotes .sl-quote .sl-quote-attr p {
  margin-bottom: 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6e8465;
}
.sl-theme .sl-quotes.sl-quotes--js .sl-quote-stack {
  display: grid;
  grid-template-columns: 100%;
  width: 100%;
}
.sl-theme .sl-quotes.sl-quotes--js .sl-quote > .e-con-inner {
  justify-content: center;
}
.sl-theme .sl-quotes.sl-quotes--js .sl-quote {
  grid-area: 1/1;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  -moz-transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  -ms-transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  -o-transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.sl-theme .sl-quotes.sl-quotes--js .sl-quote.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s ease, visibility 0s linear 0s;
  -moz-transition: opacity 0.4s ease, visibility 0s linear 0s;
  -ms-transition: opacity 0.4s ease, visibility 0s linear 0s;
  -o-transition: opacity 0.4s ease, visibility 0s linear 0s;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}
.sl-theme .sl-quotes .sl-quote-dots {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.sl-theme .sl-quotes .sl-quote-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(33, 33, 33, 0.15);
  cursor: pointer;
  -webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
  transition: 0.15s all;
}
.sl-theme .sl-quotes .sl-quote-dots button.active {
  background: #6e8465;
}
.sl-theme .sl-quotes .sl-quote-dots button:focus-visible {
  outline: 2px solid #6e8465;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .sl-theme .sl-quotes.sl-quotes--js .sl-quote {
    transition: none;
  }
}
input,
textarea {
  padding: 0.7rem 1rem;
  border: 2px solid #919191;
  font-size: 1rem;
  margin: 0.4rem 0;
  outline: 0;
  font-family: inherit;
}
input:focus,
textarea:focus {
  border-color: #212121;
}

input[type=submit] {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 1;
}

.sl-page-head {
  padding: 8.5rem 0 3.5rem;
  background: #f4f4f4;
}
@media screen and (min-width: 1024px) {
  .sl-page-head {
    padding: 10rem 0 3rem;
  }
}
.sl-page-head .sl-page-head-inner {
  max-width: 46rem;
}
.sl-page-head h1 {
  margin-bottom: 0rem;
  line-height: 1.15;
}
.sl-page-head p.sl-page-head-sub {
  max-width: 38em;
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.55;
  color: #3d3f3b;
}

.sl-eyebrow {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6e8465;
}

.sl-breadcrumb {
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: #3d3f3b;
}
.sl-breadcrumb a:link,
.sl-breadcrumb a:visited {
  color: #3d3f3b;
}
.sl-breadcrumb a:hover,
.sl-breadcrumb a:focus {
  color: #6e8465;
}
.sl-breadcrumb span {
  margin: 0 0.5rem;
  color: #a3bc9b;
}

.sl-posts-section {
  text-align: center;
}
.sl-posts-section h2 {
  margin-bottom: 2.5rem;
}

.sl-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sl-posts.sl-posts--2, .sl-posts.sl-posts--3, .sl-posts.sl-posts--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .sl-posts.sl-posts--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .sl-posts.sl-posts--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sl-post-card .sl-post-card-link {
  position: relative;
  display: block;
  overflow: hidden;
}
.sl-post-card .sl-post-card-link:hover img, .sl-post-card .sl-post-card-link:focus-visible img {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}
.sl-post-card .sl-post-card-link:focus-visible {
  outline: 2px solid #6e8465;
  outline-offset: 3px;
}
.sl-post-card .sl-post-card-media {
  display: block;
}
.sl-post-card .sl-post-card-media img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: 0.35s transform;
  -moz-transition: 0.35s transform;
  -ms-transition: 0.35s transform;
  -o-transition: 0.35s transform;
  transition: 0.35s transform;
}
.sl-post-card .sl-post-card-placeholder {
  display: block;
  padding-bottom: 92.5%;
  background: #eef2ea;
}
.sl-post-card .sl-post-card-label {
  position: absolute;
  bottom: 20px;
  left: 10px;
  width: 80%;
  padding: 0.55rem 0.7rem;
  background: #a3bc9b;
  color: #ffffff;
  line-height: 1.35;
}
.sl-post-card .sl-post-card-title {
  display: block;
}
.sl-post-card a:link .sl-post-card-label,
.sl-post-card a:visited .sl-post-card-label {
  color: #ffffff;
}

.sl-posts-more {
  margin: 2.5rem 0 0;
  text-align: right;
}

.sl-pagination,
.navigation.pagination {
  margin-top: 4rem;
}
.sl-pagination .nav-links,
.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}
.sl-pagination .page-numbers,
.navigation.pagination .page-numbers {
  display: inline-block;
  min-width: 2.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(33, 33, 33, 0.12);
  text-align: center;
  line-height: 1.4;
  color: #212121;
  -webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
  transition: 0.15s all;
}
.sl-pagination .page-numbers:hover, .sl-pagination .page-numbers:focus,
.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers:focus {
  border-color: #6e8465;
  color: #6e8465;
}
.sl-pagination .page-numbers.current,
.navigation.pagination .page-numbers.current {
  border-color: #6e8465;
  background: #6e8465;
  color: #ffffff;
}
.sl-pagination .page-numbers.dots,
.navigation.pagination .page-numbers.dots {
  border-color: transparent;
}

.sl-post-meta {
  margin-bottom: 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6e8465;
}

.sl-post-content--plain {
  padding-top: 8rem;
}
@media screen and (min-width: 1024px) {
  .sl-post-content--plain {
    padding-top: 10rem;
  }
}

.sl-post-content {
  padding-bottom: 4rem;
}
.sl-post-content p,
.sl-post-content li {
  line-height: 1.7;
  color: #3d3f3b;
}
.sl-post-content ul,
.sl-post-content ol {
  margin: 0 0 1rem 1.2rem;
}
.sl-post-content li {
  margin-bottom: 0.4rem;
  list-style: disc;
}
.sl-post-content h2,
.sl-post-content h3,
.sl-post-content h4 {
  margin-top: 2.5rem;
}
.sl-post-content img {
  margin: 1.5rem 0;
}
.sl-post-content blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid #a3bc9b;
  font-size: 1.15rem;
  line-height: 1.6;
}

.sl-post-back {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}
@media screen and (min-width: 1024px) {
  .sl-post-back {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

.sl-posts-empty {
  padding: 2rem 0 5rem;
  color: #3d3f3b;
}

.sl-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 65vh;
  padding: 8.5rem 0 5rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .sl-404 {
    min-height: 70vh;
    padding: 11rem 0 7rem;
  }
}
.sl-404 .sl-eyebrow {
  margin-bottom: 1.25rem;
}
.sl-404 h1 {
  margin-bottom: 1rem;
}
.sl-404 p {
  max-width: 32em;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  color: #3d3f3b;
}

/*# sourceMappingURL=style.css.map */
