.wet-tour-meta {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}
.wet-tour-meta .weneral-icon {
  margin-right: 0.75rem;
}
.wet-tour-meta ul {
  margin: 0;
  padding: 0;
  display: inline-flex;
  list-style: none;
}
.wet-tour-meta ul li {
  display: inline-flex;
  align-items: center;
}
.wet-tour-meta ul li:not(:last-child)::after {
  content: ",";
  margin-right: 0.25rem;
}
.wet-tour-meta ul li a {
  font-size: 0.875rem;
}
.wet-tour-meta-harga {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0;
}

.weneral-posts-item-post_type-wetour_tour {
  display: flex;
  flex-direction: column;
}
.weneral-posts-item-post_type-wetour_tour .weneral-posts-item-thumbnail {
  width: 100%;
  flex-shrink: 1;
  overflow: hidden;
}
.weneral-posts-item-post_type-wetour_tour .weneral-posts-item-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.weneral-posts-item-post_type-wetour_tour .weneral-posts-item-excerpt {
  flex: 1 1 auto;
}

.wetour-destinasi-list {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  gap: 1rem;
}
@media screen and (width >= 576px) {
  .wetour-destinasi-list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media screen and (width >= 768px) {
  .wetour-destinasi-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.wetour-destinasi-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.wetour-destinasi-item:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: opacity ease 0.2s;
  opacity: 1;
}
.wetour-destinasi-item:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity ease 0.2s;
}
.wetour-destinasi-item .weneral-icon {
  color: white;
  margin-bottom: 1.5rem;
}
.wetour-destinasi-item-thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.wetour-destinasi-item-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.wetour-destinasi-item-info {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wetour-destinasi-item-title {
  font-size: 2.5rem;
  font-weight: 600;
}
.wetour-destinasi-item-title h3 {
  color: white;
}
.wetour-destinasi-item:hover:before {
  opacity: 0;
}
.wetour-destinasi-item:hover:after {
  opacity: 1;
}

.wet-pembayaran-detail-tour {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (width >= 992px) {
  .wet-pembayaran-detail-tour {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
.wet-pembayaran-detail-tour-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 1rem;
}
@media screen and (width >= 992px) {
  .wet-pembayaran-detail-tour-thumb {
    max-width: 16rem;
  }
}
.wet-pembayaran-detail-tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wet-pembayaran-detail-tamu {
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.wet-pembayaran-detail-tamu th, .wet-pembayaran-detail-tamu td {
  padding: 1rem 1.5rem;
}
.wet-pembayaran-detail-tamu thead tr {
  border-bottom: 1px solid #CCC;
}

.wet-booking {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (width >= 992px) {
  .wet-booking {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.wet-booking-info {
  position: relative;
}
.wet-booking-info-tour {
  position: sticky;
  top: calc(var(--weneral-header-height) + 32px);
  width: 100%;
}
.wet-booking-info-tour-image {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
}
.wet-booking-info-tour-image img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}