/* =========================================================
   WWT Destination – Clean Brand + Mobile Readability
   ========================================================= */

/* Base wrapper */
.wwt-destination{
  max-width: 1040px;
  margin: 0 auto;
}

.wwt-destination img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent WP editor <br> from breaking layout */
.wwt-destination br{
  display: none !important;
}

/* HERO (clean card) */
.wwt-hero{
  margin-top: 8px;
}

.wwt-hero--lux{
  padding: 22px 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.wwt-title{
  margin: 0 0 12px;
  line-height: 1.1;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.02em;
}

.wwt-lead{
  margin: 0 0 16px;
  max-width: 860px;
}

/* Chips */
.wwt-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.wwt-chip{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  line-height: 1.1;
  background: rgba(63,208,212,0.12);
  border: 1px solid rgba(63,208,212,0.35);
  color: #222;
  transition: all 160ms ease;
}

.wwt-chip:hover{
  background: #3fd0d4;
  color: #fff;
  border-color: #3fd0d4;
}

/* Images grid */
.wwt-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}

.wwt-figure{
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.wwt-figure img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 250ms ease;
}

.wwt-figure:hover img{
  transform: scale(1.02);
}

/* Content */
.wwt-content{
  margin-top: 40px;
  max-width: 920px;
}

.wwt-content h3{
  font-size: 26px;
  margin: 26px 0 10px;
}

.wwt-content p{
  margin: 0 0 14px;
  line-height: 1.7;
}

/* Good to know (brand block) */
.wwt-goodtoknow--card{
  margin-top: 44px;
  background: #3fd0d4;
  color: #fff;
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.wwt-goodtoknow__head h3{
  margin: 0 0 8px;
  color: #fff;
}

.wwt-goodtoknow__head p{
  margin: 0 0 18px;
  opacity: 0.95;
  max-width: 560px;
}

.wwt-goodtoknow__list{
  display: grid;
  max-width: 920px;
}

.wwt-row{
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.wwt-row:last-child{
  border-bottom: 0;
}

.wwt-row strong{
  color: #fff;
}

.wwt-row span{
  justify-self: start;
  opacity: 0.95;
  overflow-wrap: anywhere;
}

/* FAQ */
.wwt-faq{
  margin-top: 36px;
  max-width: 920px;
}

.wwt-faq h3{
  margin: 0 0 12px;
}

.wwt-faq details{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: #fff;
  transition: border-color 160ms ease;
}

.wwt-faq details:hover{
  border-color: #3fd0d4;
}

.wwt-faq summary{
  cursor: pointer;
  font-weight: 700;
  position: relative;
  padding-left: 18px;
}

.wwt-faq summary::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: #3fd0d4;
}

.wwt-faq__body{
  margin-top: 10px;
}

/* CTA */
.wwt-cta{
  margin-top: 22px;
  max-width: 920px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.wwt-cta h3{
  margin: 0 0 10px;
}

.wwt-cta p{
  margin: 0 0 16px;
}

.wwt-cta__buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wwt-cta__buttons .qodef-btn:hover{
  transform: translateY(-1px);
}

/* =========================================================
   Mobile readability fixes (SetSail + WWT destination)
   ========================================================= */

@media (max-width: 768px){

  /* Wider content area */
  .qodef-container-inner{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .qodef-page-content-holder,
  .qodef-grid-col-12{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .wwt-destination{
    max-width: 100% !important;
    padding: 0 14px;
  }

  .wwt-hero--lux{
    padding: 16px !important;
  }

  .wwt-title{
    font-size: 30px !important;
    line-height: 1.15 !important;
  }

  .wwt-lead,
  .wwt-content p,
  .wwt-faq__body,
  .wwt-cta p{
    font-size: 16px !important;
    line-height: 1.65 !important;
    overflow-wrap: anywhere !important;
    hyphens: auto;
  }

  .wwt-images{
    grid-template-columns: 1fr;
  }

  .wwt-figure img{
    aspect-ratio: 16 / 11;
  }

  .wwt-goodtoknow--card{
    padding: 20px 16px !important;
  }

  .wwt-goodtoknow__head p,
  .wwt-goodtoknow__list{
    max-width: none !important;
  }

  .wwt-row{
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 14px 0 !important;
  }

  .wwt-row strong{
    font-size: 14px !important;
  }

  .wwt-row span{
    font-size: 16px !important;
  }

  .wwt-cta__buttons a.qodef-btn{
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* =========================================================
   Sidebar shortcode tours (single, deduped)
   ========================================================= */

.wwt-shortcode-tours{
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(63, 208, 212, 0.35);
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.wwt-shortcode-tours__title{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
}

.wwt-shortcode-tours__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.wwt-shortcode-tours__item{
  margin: 0;
}

/* Card */
.wwt-shortcode-tours__link{
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

/* Hover: subtle, no jumping */
.wwt-shortcode-tours__link:hover{
  border-color: rgba(63, 208, 212, 0.55);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.wwt-shortcode-tours__media{
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: rgba(0,0,0,0.03);
}

.wwt-shortcode-tours__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

/* Image gets a tiny zoom, keeps it classy */
.wwt-shortcode-tours__link:hover .wwt-shortcode-tours__media img{
  transform: scale(1.03);
}

.wwt-shortcode-tours__content{
  padding: 14px 16px 16px;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.wwt-shortcode-tours__text{
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wwt-shortcode-tours__excerpt{
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.75;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Nice focus for keyboard */
.wwt-shortcode-tours__link:focus-visible{
  outline: 2px solid rgba(63, 208, 212, 0.75);
  outline-offset: 3px;
}

/* Mobile: a bit shorter image */
@media (max-width: 768px){
  .wwt-shortcode-tours{
    padding: 16px;
    border-radius: 16px;
  }
  .wwt-shortcode-tours__media{
    height: 150px;
  }
}

/* ===== Premium sidebar cards ===== */

.wwt-shortcode-tours__list{
  display: grid;
  gap: 18px;
}

.wwt-shortcode-tours__link{
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 28px rgba(0,0,0,.06);
  transition: 220ms ease;
  text-decoration: none;
  color: inherit;
}

.wwt-shortcode-tours__link:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0,0,0,.12);
  border-color: rgba(63,208,212,.55);
}

.wwt-shortcode-tours__media{
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.wwt-shortcode-tours__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.wwt-shortcode-tours__link:hover .wwt-shortcode-tours__media img{
  transform: scale(1.05);
}

.wwt-shortcode-tours__content{
  padding: 16px 18px;
}

.wwt-shortcode-tours__text{
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.wwt-shortcode-tours__excerpt{
  font-size: 14px;
  opacity: .8;
  line-height: 1.5;
}

.wwt-shortcode-tours__excerpt{
  font-size: 13px;
  opacity: .7;
}

/* ===== Sidebar Tours – outer frame ===== */

.wwt-shortcode-tours{
  padding: 22px;
  border-radius: 18px;

  background: #ffffff;
  border: 1px solid rgba(63, 208, 212, 0.35);

  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}



/* Optional subtle hover lift */
.wwt-shortcode-tours:hover{
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

/* WWT – Tour destinations chips */
.wwt-tour-destinations{
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.wwt-tour-destinations__label{
  font-weight: 600;
  color: inherit;
  opacity: .85;
}

.wwt-tour-destinations__list{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wwt-dest-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  text-decoration: none !important;
  line-height: 1;
  font-weight: 600;
  font-size: 13px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.wwt-dest-chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
