body.single article p {
	text-align: justify;
}
body.single figcaption {
	background-color: rgba(0,0,0,.10);
	margin-top: 0;
	padding: 10px 15px;
	font-size: 16px;
	line-height: 20px;
	opacity: .85;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
}


/* Layout */

/* Sidebar content */
.ww-sidebar {
  width: 320px;
  max-width: 40%;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.ww-sidebar h3 {
  margin-bottom: 12px;
  font-size: 20px;
}


/* Swiper Slider */
.swiper.heroSlider {
    width: 100%;
    height: 380px; 
}
@media (min-width: 1200px) {
	.swiper.heroSlider {
		height: 420px;
	}
}
.heroSlider .swiper-slide {
    overflow: hidden;
    border-radius: 12px;
}
.heroSlider .swiper-slide img {
    width: 100%;
    height: 100%;
	object-fit: contain;
    display: block;
}
.swiper-button-next,
.swiper-button-prev {
    color: #000000;
    background: rgba(108, 108, 108, 0.21);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}


/* Ajax search */
#search-results, #mobile-search-results {
    position: absolute;
    background: #fff;
    width: 100%;
    max-width: 300px; /* Match your search bar width */
    border: 1px solid #ccc;
    z-index: 999;
    display: none;
}
#mobile-search-results {
    max-width: 100%;
}
#search-results ul, #mobile-search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#search-results li a, #mobile-search-results li a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}
#search-results li a:hover, #mobile-search-results li a:hover {
    background-color: #f5f5f5;
}

#ww-search {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 12px;
}

.ww-loc-item {
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 6px;
  transition: background 0.2s;
}

.ww-loc-item:hover {
  background: #f3f6ff;
}

.ww-loc-sub {
  font-size: 13px;
  color: #666;
}

@media (max-width: 900px) {
  .ww-map-wrap {
    flex-direction: column;
  }
  .ww-sidebar {
    width: 100%;
    max-width: 100%;
  }
  .ww-map {
    height: 400px;
  }
}