/* ============================================================
   Jetblack Travel — Homepage Hero
   ============================================================ */

.gbooky-home { padding-top: calc(var(--header-h) + 24px); }

.home-hero-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Mobile-only quick links (Group Trips / Private Trip / Host Your Trip) —
   hidden on desktop, shown as a 3-box row on mobile (see RESPONSIVE below). */
.home-quick-links { display: none; }
.home-quick-link {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--clr-sky-xlight);
  border-radius: 4px;
  padding: 12px 4px;
  text-align: center;
  transition: background var(--transition);
}
.home-quick-link:hover,
.home-quick-link:active { background: var(--clr-sky-light); }

/* Glossy shine sweep, staggered per box so they don't all flash at once */
.home-quick-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.75), transparent);
  transform: skewX(-20deg);
  animation: gbQuickShine 3.6s ease-in-out infinite;
}
.home-quick-link:nth-child(2)::before { animation-delay: 0.5s; }
.home-quick-link:nth-child(3)::before { animation-delay: 1s; }
.home-quick-link:nth-child(4)::before { animation-delay: 1.5s; }
@keyframes gbQuickShine {
  0%   { left: -75%; }
  35%  { left: 125%; }
  100% { left: 125%; }
}
@media (prefers-reduced-motion: reduce) {
  .home-quick-link::before { animation: none; display: none; }
}

.home-quick-icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clr-white);
  color: var(--clr-sky-dark);
}
.home-quick-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-primary);
  line-height: 1.25;
}

.home-hero {
  position: relative;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
}

.home-hero-bg { position: absolute; inset: 0; }
.home-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.2s ease;
}
.home-hero-bg img.active { opacity: 1; }

/* Only enough gradient to read the text — the photo stays true-colour everywhere else.
   Darkened toward the bottom-left, where the text now sits. */
.home-hero-scrim-l {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2,6,17,0.72) 0%, rgba(2,6,17,0.4) 32%, rgba(2,6,17,0) 60%);
  pointer-events: none;
}
.home-hero-scrim-b {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,17,0.6) 0%, rgba(2,6,17,0) 34%);
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  gap: 18px;
  padding-bottom: 64px;
  pointer-events: none;
}

.home-kicker {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-sky);
}

.home-hero-h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  font-weight: 800;
  margin: 4px 0 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.home-hero-h1 span { display: inline-block; transition: opacity 0.35s ease; }
.home-hero-h1 em {
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  color: var(--clr-sky);
}

.home-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 46ch;
  margin: 4px 0 0;
  text-shadow: 0 1px 14px rgba(0,0,0,0.25);
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-sky);
  color: var(--clr-white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-hero-primary:hover {
  background: var(--clr-sky-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14,165,233,0.35);
}
.btn-hero-primary svg { width: 16px; height: 16px; }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--clr-white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 22px;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--clr-white);
}

.home-hero-progress {
  display: flex;
  gap: 6px;
  width: 200px;
  margin-top: 26px;
}
.home-hero-progress .seg {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}
.home-hero-progress .seg .fill {
  height: 100%;
  width: 0%;
  background: var(--clr-white);
  border-radius: 2px;
}
.home-hero-progress .seg.done .fill { width: 100%; transition: none; }
.home-hero-progress .seg.filling .fill { width: 100%; transition: width 3.4s linear; }

@media (max-width: 768px) {
  .gbooky-home { padding-top: calc(var(--header-h) + 10px); }
  .home-hero-wrap { padding: 0 14px; }
  .home-quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: var(--max-w);
    margin: 14px auto 0;
    padding: 0 14px;
  }
  .home-hero { height: 190px; border-radius: var(--radius-sm); }
  .home-hero-inner { padding: 0 16px 14px; gap: 6px; }
  .home-kicker { font-size: 10px; }
  .home-hero-h1 { font-size: 20px; }
  .home-hero-sub { display: none; }
  .home-hero-actions { flex-direction: column; align-items: stretch; margin-top: 6px; gap: 8px; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; padding: 10px 16px; font-size: 13px; }
  .home-hero-progress { margin-top: 10px; width: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-bg img,
  .home-hero-progress .fill { transition-duration: 0.01ms !important; }
}

/* ============================================================
   Popular Destinations
   ============================================================ */
.popular-trips-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.popular-eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 8px;
}
.popular-h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--clr-primary);
  margin: 0;
}
.popular-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-primary);
  border-bottom: 1.5px solid var(--clr-primary);
  padding-bottom: 2px;
  white-space: nowrap;
}
.popular-view-all svg { width: 15px; height: 15px; }
.popular-view-all:hover { color: var(--clr-sky); border-color: var(--clr-sky); }
.popular-view-all-mobile { display: none; }

.popular-trips-row-wrap { position: relative; }
.popular-trips-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.popular-trips-row::-webkit-scrollbar { display: none; }

/* Card visuals now come entirely from trip-card (trips.css) — this class only
   sets sizing/scroll behavior for the horizontal-scroll row context. */
.popular-card {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
}

.popular-next, .popular-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition);
  z-index: 2;
}
.popular-next { right: -18px; }
.popular-prev { left: -18px; }
.popular-next:hover, .popular-prev:hover { background: var(--clr-sky); color: var(--clr-white); border-color: var(--clr-sky); }
.popular-next svg, .popular-prev svg { width: 18px; height: 18px; }
.popular-prev:disabled { opacity: 0; pointer-events: none; }
.popular-dots { display: none; }

@media (max-width: 768px) {
  .popular-trips-head { margin-bottom: 16px; }
  .popular-h2 { font-size: 20px; }
  .popular-eyebrow { display: none; }
  .popular-trips-head .popular-view-all { display: none; }
  .popular-view-all-mobile {
    display: flex;
    width: fit-content;
    justify-content: center;
    margin: 16px auto 0;
    font-size: 13px;
  }
  .popular-trips .container { padding: 0 14px; }

  /* Static 3-row x 2-column grid: all 6 cards visible at once, no
     scrolling/swiping needed. */
  .popular-trips-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .popular-card { width: auto; }
  .popular-next, .popular-prev { display: none; }
}

/* ============================================================
   Trust Strip
   ============================================================ */
/* Popular Destinations → Trust Strip → About flow as one tight block (64px
   between each), then every section after keeps its own consistent 112px
   rhythm — explicit on every section so nothing silently falls back to the
   much looser 80px/80px default and breaks the rhythm. */
.popular-trips { padding: 64px 0 32px; }
.trust-strip-section { padding: 32px 0; }
.about-section { padding: 32px 0 56px; }
@media (max-width: 768px) {
  .popular-trips { padding: 28px 0 20px; }
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  padding: 32px 8px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 24px;
  border-left: 1px solid var(--clr-border);
}
.trust-item:first-child { border-left: none; }

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-sky);
}
.trust-icon svg { width: 22px; height: 22px; stroke-width: 2; }

.trust-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-primary);
  margin: 0 0 4px;
  white-space: nowrap;
}
.trust-item p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--clr-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { padding-bottom: 20px; border-bottom: 1px solid var(--clr-border); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { padding-top: 4px; }
}
@media (max-width: 560px) {
  .trust-strip { grid-template-columns: 1fr; padding: 24px 20px; gap: 20px 0; }
  .trust-item { border-left: none !important; border-bottom: 1px solid var(--clr-border); padding: 0 0 20px; }
  .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* Mobile app scale (overrides both breakpoints above): 2x2 grid, icon
   stacked on top of the title/text instead of side-by-side. */
@media (max-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    padding: 20px 14px;
  }
  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 0;
    border: none !important;
  }
  .trust-icon { width: 40px; height: 40px; }
  .trust-icon svg { width: 18px; height: 18px; }
  .trust-item h3 { font-size: 13px; white-space: normal; }
  .trust-item p { font-size: 12px; }
}

/* ============================================================
   About / Who We Are
   ============================================================ */
.about-inner { text-align: center; }
.about-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 18px;
}
.about-h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--clr-primary);
  max-width: 780px;
  margin: 0 auto 28px;
}
.about-cta { margin-bottom: 48px; }

.about-collage {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 20px;
  text-align: left;
  align-items: stretch;
}
.about-col { display: flex; flex-direction: column; gap: 16px; }

.about-stat {
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  padding: 20px;
}
.about-stat-num {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
}
.about-stat-label {
  display: block;
  font-size: 13px;
  color: var(--clr-muted);
  margin-top: 2px;
}

.about-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
  min-height: 180px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-main { min-height: 100%; }
.about-col-main { height: 100%; }

@media (max-width: 900px) {
  .about-h2 { font-size: 23px; }
  .about-collage { grid-template-columns: 1fr; }
  .about-col-main { order: -1; }
  .about-photo, .about-photo-main { min-height: 240px; }
}
/* Photo collage + stat tiles (12+ Curated Trips / 2,000+ Happy Customers)
   hidden on mobile app scale — the "Who We Are" heading + CTA above it stay.
   .about-cta's margin-bottom (48px) and .about-section's bottom padding
   (56px) were both sized to lead into the now-hidden collage, so trim them
   too or the button is left with a big empty gap below it. */
@media (max-width: 768px) {
  .about-collage { display: none; }
  .about-cta { margin-bottom: 0; }
  .about-section { padding-bottom: 28px; }
}

/* ============================================================
   Plan Your Perfect Trip
   ============================================================ */
.plan-trip-section { padding: 56px 0; }
.plan-trip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.plan-trip-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 460px;
}
.plan-trip-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Video review slider — replaces .plan-trip-photo when at least one
   Video Review has been added in wp-admin (Jetblack Travel > Video Reviews) */
.plan-trip-video-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 640px; /* taller than the old 460px photo box — these are vertical
    9:16 phone videos, so a landscape-ish box will always crop some of the
    height, but the extra room means noticeably less gets cut off */
  background: #0F172A;
}
.pts-track { position: relative; width: 100%; height: 100%; cursor: grab; touch-action: pan-y; user-select: none; }
.pts-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}
.pts-slide.active { opacity: 1; visibility: visible; }
.pts-poster {
  width: 100%; height: 100%; object-fit: cover; display: block;
  object-position: center 15%; /* bias the crop toward the top of frame, where faces sit in a vertical selfie-style video, instead of cropping evenly top+bottom */
  -webkit-user-drag: none;
  pointer-events: none; /* the img must not be able to intercept/hijack the drag gesture at all */
}
.pts-slide video { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; background: #000; }
.pts-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform .2s ease;
}
.pts-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.pts-play svg { margin-left: 3px; }
.pts-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.pts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.pts-dot.active { background: #fff; }
@media (max-width: 768px) {
  .plan-trip-video-slider { height: 420px; }
  .pts-play { width: 52px; height: 52px; }
}

.plan-trip-eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 10px;
}
.plan-trip-h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--clr-primary);
  margin: 0 0 14px;
}
.plan-trip-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-muted);
  max-width: 46ch;
  margin: 0 0 28px;
}

.plan-trip-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.plan-trip-list li { display: flex; align-items: flex-start; gap: 14px; }
.plan-trip-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--clr-bg-alt);
  color: var(--clr-sky);
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-trip-icon svg { width: 18px; height: 18px; }
.plan-trip-list h3 { font-size: 15px; font-weight: 700; color: var(--clr-primary); margin: 0 0 2px; }
.plan-trip-list p { font-size: 13.5px; color: var(--clr-muted); margin: 0; line-height: 1.5; }

@media (max-width: 900px) {
  .plan-trip-inner { grid-template-columns: 1fr; gap: 32px; }
  .plan-trip-photo { height: 300px; }
  .plan-trip-h2 { font-size: 27px; }
}

/* ============================================================
   Blog Preview
   ============================================================ */
.blog-preview-section { padding: 56px 0; }
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.blog-preview-card { display: block; }
.blog-preview-img-wrap {
  position: relative;
  height: 190px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
}
.blog-preview-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-preview-card:hover .blog-preview-img-wrap img { transform: scale(1.05); }

.blog-preview-cat {
  position: absolute;
  left: 10px;
  top: 10px;
  background: var(--clr-white);
  color: var(--clr-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
}

.blog-preview-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-primary);
  margin: 0 0 8px;
  line-height: 1.35;
}
.blog-preview-meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-muted);
}

@media (max-width: 900px) {
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .blog-preview-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Mobile app scale: compact horizontal list-item cards (small square
   thumbnail on the left, title + meta stacked on the right) instead of
   full-width vertical cards with a tall banner image. Uses grid placement
   on the existing markup (img-wrap / h3 / meta siblings) rather than
   changing the HTML structure. */
@media (max-width: 768px) {
  .blog-preview-section { padding: 28px 0; }
  .blog-preview-grid { grid-template-columns: 1fr; gap: 14px; }
  .blog-preview-card {
    display: grid;
    grid-template-columns: 84px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
  }
  .blog-preview-img-wrap {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 84px;
    margin-bottom: 0;
  }
  .blog-preview-cat { display: none; }
  .blog-preview-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 14px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-preview-meta {
    grid-column: 2;
    grid-row: 2;
    font-size: 11px;
    margin-top: 4px;
  }
}

/* ============================================================
   Testimonials — draggable slider
   ============================================================ */
.testimonials-section { padding: 56px 0; }
.testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.testimonials-nav { display: flex; gap: 10px; flex-shrink: 0; }
.testimonials-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  color: var(--clr-primary);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.testimonials-arrow svg { width: 18px; height: 18px; }
.testimonials-arrow:hover { border-color: var(--clr-sky); color: var(--clr-sky); }
.testimonials-arrow:disabled { opacity: .35; cursor: default; }
.testimonials-arrow:disabled:hover { border-color: var(--clr-border); color: var(--clr-primary); }

.testimonials-slider {
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 2px; /* the slider's auto height can round a hair short of the
                          card's actual box, clipping its bottom border/shadow */
}
.testimonials-track {
  display: flex;
  gap: 20px;
  cursor: grab;
  user-select: none;
  will-change: transform;
}
.testimonials-track.is-dragging {
  cursor: grabbing;
  transition: none !important;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  padding: 24px;
}
.testimonial-card img,
.testimonial-card svg { pointer-events: none; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars svg { width: 15px; height: 15px; }
.testimonial-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--clr-primary);
  margin: 0 0 18px;
}
.testimonial-author { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.testimonial-author strong { color: var(--clr-primary); }
.testimonial-author span { color: var(--clr-muted); }

@media (max-width: 900px) {
  .testimonial-card { flex-basis: calc(50% - 10px); }
}
@media (max-width: 600px) {
  .testimonial-card { flex-basis: 100%; }
}

/* ============================================================
   FAQ teaser — reuses .faq-item/.faq-q/.faq-a from faq.css so it
   matches the dedicated /faq/ page exactly
   ============================================================ */
.home-faq-section { padding: 56px 0 72px; }
.home-faq-section .faq-list { max-width: 100%; margin: 0; }

/* "What Our Travelers Say" testimonials hidden entirely on mobile app
   scale. Placed at the very end of the file, after every other rule that
   touches .testimonials-section/.testimonial-card, so it always wins. */
@media (max-width: 768px) {
  .testimonials-section { display: none; }
}

/* FAQ teaser hidden entirely on mobile app scale (the real /faq/ page still
   has its own full FAQ list, this is just the homepage teaser). */
@media (max-width: 768px) {
  .home-faq-section { display: none; }
}
