.lf-slides {
  position: relative;
  width: 100%;
  height: var(--lf-height);
  min-height: 320px;
  overflow: hidden;
  color: #fff;
}

.lf-slides__track,
.lf-slide {
  width: 100%;
  height: 100%;
}

.lf-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 450ms ease;
}

.lf-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.lf-slide__content {
  box-sizing: border-box;
  width: var(--lf-content-width);
  max-width: 1140px;
  padding: var(--lf-padding);
  text-align: left;
}

.lf-slide__title {
  margin: 0 0 24px;
  color: inherit;
  font-family: var(--lf-heading-font);
  font-size: var(--lf-heading-size);
  font-weight: var(--lf-heading-weight);
  line-height: 1.05;
}

.lf-slide__description {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.45;
}

.lf-slide__description img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

.lf-slide__button {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  border: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
}

.lf-slides__arrow,
.lf-slides__dot {
  position: absolute;
  z-index: 3;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.lf-slides__arrow {
  top: 50%;
  padding: 8px 12px;
  background: transparent;
  font-size: 48px;
  line-height: 1;
  transform: translateY(-50%);
}

.lf-slides__arrow--prev { left: 4px; }
.lf-slides__arrow--next { right: 4px; }

.lf-slides__dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 8px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.lf-slides__dot {
  position: static;
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
}

.lf-slides__dot.is-active { background: #fff; }

.lf-search {
  display: flex;
  width: 100%;
}

.lf-search input {
  min-width: 0;
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #d5d8dc;
}

.lf-search button {
  padding: 10px 18px;
  border: 0;
  background: #69727d;
  color: #fff;
}

.lf-form__field { margin-bottom: 10px; }
.lf-form__field label { display: block; margin-bottom: 3px; }
.lf-form__field label span { color: #e32636; }
.lf-form input,
.lf-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #69727d;
  background: #fff;
  color: #333;
}
.lf-form textarea { min-height: 96px; resize: vertical; }
.lf-form__submit {
  width: 100%;
  padding: 11px 18px;
  border: 0;
  background: #69727d;
  color: #fff;
  cursor: pointer;
}
.lf-form__message { margin-bottom: 12px; padding: 10px; }
.lf-form__message.is-success { background: #e8f7ec; color: #176b2c; }
.lf-form__message.is-error { background: #fdeaea; color: #9c1c1c; }
.lf-form__honey { position: absolute !important; left: -9999px !important; }

.lf-nav { position: relative; width: 100%; background: var(--lf-nav-bg); color: var(--lf-nav-color); font-size: var(--lf-nav-size); }
.lf-nav__menu { display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; list-style: none; }
.lf-nav__menu li { position: relative; margin: 0; list-style: none; }
.lf-nav__menu a { display: block; padding: 12px 0; color: var(--lf-nav-color); text-decoration: none; }
.lf-nav__menu .sub-menu { position: absolute; z-index: 1000; top: 100%; left: 0; display: none; min-width: 230px; margin: 0; padding: 8px 18px; background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.16); list-style: none; }
.lf-nav__menu .sub-menu a { color: #24313a; }
.lf-nav__menu li:hover > .sub-menu,
.lf-nav__menu li:focus-within > .sub-menu { display: block; }
.lf-nav__toggle { display: none; border: 1px solid currentColor; background: transparent; color: inherit; padding: 8px 12px; }
.lf-posts__item { display: flex; gap: 28px; padding: 28px 0; border-bottom: 1px solid #e3e7ea; }
.lf-posts__image { flex: 0 0 var(--lf-post-image-width); }
.lf-posts__image img { display: block; width: 100%; height: auto; }
.lf-posts__content { flex: 1 1 auto; }
.lf-posts__content h2 { margin: 0 0 5px; }
.lf-posts__more { font-weight: 700; }
.lf-pagination ul { display: flex; gap: 10px; justify-content: center; list-style: none; }
.lf-post-title { margin: 0; }
.lf-post-featured-image img { display: block; width: 100%; height: auto; }
.lf-post-info { display: flex; flex-wrap: wrap; gap: 16px; }
.lf-post-navigation { display: flex; justify-content: space-between; gap: 20px; }
.lf-share { display: flex; flex-wrap: wrap; gap: 12px; }
.lf-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.lf-gallery img { display: block; width: 100%; height: auto; }
.lf-theme-location--header { position: relative; z-index: 100; }

@media (max-width: 767px) {
  .lf-slides { height: var(--lf-mobile-height); }
  .lf-slide__content {
    width: var(--lf-mobile-content-width);
    padding: var(--lf-mobile-padding);
  }
  .lf-slide__title { font-size: var(--lf-mobile-heading-size); }
  .lf-slides__arrow { font-size: 38px; }
  .lf-nav__toggle { display: inline-block; }
  .lf-nav nav { display: none; }
  .lf-nav.is-open nav { display: block; }
  .lf-nav__menu { display: block; }
  .lf-nav__menu .sub-menu { position: static; display: block; padding-left: 18px; box-shadow: none; }
  .lf-posts__item { display: block; }
  .lf-posts__image { display: block; margin-bottom: 18px; }
  .lf-gallery { grid-template-columns: 1fr; }
}
