@charset "UTF-8";
.pw-gallery-container {
  width: 100%;
  margin: 0 auto;
}

.pw-grid-wrapper {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .pw-grid-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .pw-grid-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.pw-gallery-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.pw-gallery-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.pw-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.pw-item-link:hover {
  color: inherit;
  text-decoration: none;
}

.pw-item-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: #f5f5f5;
}
.pw-item-image .pw-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.pw-item-image.pw-no-image {
  background: #e0e0e0;
}
.pw-item-image.pw-no-image .pw-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}
.pw-item-image.pw-no-image .pw-placeholder::before {
  content: "📷";
  font-size: 3rem;
  opacity: 0.3;
}

.pw-item-content {
  padding: 20px;
}

.pw-item-title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.pw-item-title a {
  color: inherit;
  text-decoration: none;
}
.pw-item-title a:hover {
  color: #F37020;
}

.pw-item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666;
}
.pw-item-date .pw-date-icon {
  font-size: 1.1em;
}
.pw-item-date .pw-date-value {
  font-style: normal;
}

.pw-item-excerpt {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.pw-item-excerpt p {
  margin: 0;
}

.pw-no-results {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 1rem;
}

.pw-gallery-container .owl-stage-outer {
  padding: 16px 0;
  overflow: hidden;
}
.pw-gallery-container .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.pw-gallery-container .owl-item .pw-gallery-item {
  height: 100%;
}

.pw-single, .pw-header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pw-single-header {
  margin-bottom: 60px;
}
.pw-single-header .pw-header-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .pw-single-header .pw-header-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pw-header-left .pw-single-title {
  margin: 0 0 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .pw-header-left .pw-single-title {
    font-size: 2rem;
  }
}
.pw-header-left .pw-single-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.pw-header-left .pw-single-meta .pw-meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #666;
}
.pw-header-left .pw-single-meta .pw-meta-item .pw-meta-icon {
  font-size: 1.2em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.pw-header-left .pw-single-meta .pw-meta-item .pw-meta-label {
  font-weight: 600;
  color: #333;
}
.pw-header-left .pw-single-meta .pw-meta-item time {
  font-style: normal;
}
.pw-header-left .pw-single-meta .pw-meta-item a {
  color: #F37020;
  text-decoration: none;
}
.pw-header-left .pw-single-meta .pw-meta-item a:hover {
  text-decoration: underline;
}
.pw-header-left .pw-header-excerpt {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
}
.pw-header-left .pw-header-excerpt p {
  margin: 0;
}

.pw-header-right .pw-featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.pw-header-right .pw-featured-image .pw-featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.pw-single-content {
  max-width: 940px;
  padding: 0 20px;
  margin: 0 auto 60px;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
}
.pw-single-content p {
  margin: 0 0 1.5em;
}
.pw-single-content h2, .pw-single-content h3, .pw-single-content h4 {
  margin: 1.5em 0 0.75em;
  color: #333;
}
.pw-single-content ul, .pw-single-content ol {
  margin: 0 0 1.5em;
  padding-left: 2em;
}

.pw-section-heading {
  margin: 0 0 30px;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}
@media (max-width: 768px) {
  .pw-section-heading {
    font-size: 1.75rem;
  }
}

.pw-single-gallery {
  margin: 60px 0 0;
  padding: 40px 0;
  background: #FFFFFF;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(255, 255, 255)), color-stop(50%, rgb(240, 240, 240)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(240, 240, 240) 50%);
}
.pw-single-gallery .pw-gallery-carousel {
  max-width: 900px;
  margin: 0 auto;
}
.pw-single-gallery .pw-gallery-carousel .pw-carousel-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
}
.pw-single-gallery .pw-gallery-carousel .pw-carousel-slide .pw-gallery-image {
  width: 100%;
  height: auto;
  display: block;
}

.pw-single-review {
  margin: 0 auto;
  padding: 40px 0;
  background: #F0F0F0;
}
.pw-single-review .pw-review-content {
  margin: 0 auto -140px;
  z-index: 2;
  position: relative;
  padding: 40px;
  background-color: #FFF;
  border-radius: 8px;
  border-left: 4px solid #F37020;
  max-width: 800px;
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}
.pw-single-review .pw-section-heading {
  text-align: left;
  margin-bottom: 20px;
}
.pw-single-review .pw-review-content .pw-review-text {
  margin-bottom: 20px;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}
.pw-single-review .pw-review-content .pw-review-text p {
  margin: 0 0 1em;
}
.pw-single-review .pw-review-content .pw-review-text p:last-child {
  margin-bottom: 0;
}
.pw-single-review .pw-review-content .pw-review-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  color: #666;
}
.pw-single-review .pw-review-content .pw-review-meta .pw-reviewer-name {
  font-weight: 600;
  font-style: normal;
  color: #333;
}
.pw-single-review .pw-review-content .pw-review-meta .pw-review-date time {
  font-style: normal;
}

.pw-gallery-container, .pw-single-gallery {
  position: relative;
}

.pw-gallery-container.pw-carousel-wrapper .owl-nav,
.pw-single-gallery .owl-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.pw-gallery-container.pw-carousel-wrapper .owl-nav button,
.pw-single-gallery .owl-carousel .owl-nav button {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.pw-gallery-container.pw-carousel-wrapper .owl-nav button:hover,
.pw-single-gallery .owl-carousel .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}
.pw-gallery-container.pw-carousel-wrapper .owl-nav button.owl-prev .pw-nav-prev,
.pw-gallery-container.pw-carousel-wrapper .owl-nav button.owl-prev .pw-nav-next, .pw-gallery-container.pw-carousel-wrapper .owl-nav button.owl-next .pw-nav-prev,
.pw-gallery-container.pw-carousel-wrapper .owl-nav button.owl-next .pw-nav-next,
.pw-single-gallery .owl-carousel .owl-nav button.owl-prev .pw-nav-prev,
.pw-single-gallery .owl-carousel .owl-nav button.owl-prev .pw-nav-next,
.pw-single-gallery .owl-carousel .owl-nav button.owl-next .pw-nav-prev,
.pw-single-gallery .owl-carousel .owl-nav button.owl-next .pw-nav-next {
  display: inline-block;
}
.pw-gallery-container.pw-carousel-wrapper .owl-dots,
.pw-single-gallery .owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
  padding: 0 86px;
}
.pw-gallery-container.pw-carousel-wrapper .owl-dots .owl-dot,
.pw-single-gallery .owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  border: 0;
}
.pw-gallery-container.pw-carousel-wrapper .owl-dots .owl-dot.active,
.pw-single-gallery .owl-carousel .owl-dots .owl-dot.active {
  background: #333;
}
.pw-gallery-container.pw-carousel-wrapper .owl-dots .owl-dot:hover,
.pw-single-gallery .owl-carousel .owl-dots .owl-dot:hover {
  background: #666;
}

.pw-map iframe {
  display: block;
}

@media (max-width: 992px) {
  .pw-single {
    padding: 30px 20px;
  }
  .pw-single-review .pw-review-content {
    max-width: 100%;
    margin: 0 20px;
  }
  .pw-single-header {
    margin-bottom: 40px;
  }
  .pw-header-right {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}