

/* triplara-tour-styles.css Scoped classes prefixed with "triplara-" to avoid conflicts. */

:root {
	--trp-primary: #2d5f2e;
	--trp-primary-2: #3b7a3b;
	--trp-accent: #f4a226;
	--trp-muted: #6b7280;
	--trp-card: #ffffff;
	--trp-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	--trp-radius: 14px;
}

p {
    margin: 0 0 15px;
    padding: 0;
   font-size: 16px !important;
    font-weight: normal;
}

.triplara-card-hidden {
  display: none !important;
}

.triplara-loadmore-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  width: 100%;
  text-align: center;
}

#triplara-loadmore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  margin: 0 auto;
}

.triplara-loadmore-status {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

.triplara-loadmore-status.is-visible {
  display: flex;
}

.triplara-loadmore-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-top-color: #ff6a00;
  border-radius: 50%;
  animation: triplaraSpin 0.8s linear infinite;
}

@keyframes triplaraSpin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   MAIN LAYOUT
========================= */

.triplara-main {
    width: 100%;
    max-width: 1500px;
    margin: 2.5rem auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* VERY IMPORTANT */
.triplara-content {
    min-width: 0;   /* Prevents grid overflow */
}

/* Sidebar */
.triplara-sidebar {
    position: sticky;
    top: 120px;
}

/* Tablet */
@media (max-width: 1100px) {
    .triplara-main {
        grid-template-columns: 2fr 1fr;
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 920px) {
    .triplara-main {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .triplara-sidebar {
        position: relative;
        top: auto;
    }
}

/* Article card */
.triplara-article {
	background: var(--trp-card);
	border-radius: var(--trp-radius);
	box-shadow: var(--trp-shadow);
	border: 1px solid rgba(12, 18, 20, 0.04);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}




/* Horizontal layout inside button */
/* ---------- VIDEO TOUR BUTTON (NEW LAYOUT) ---------- */

/* Hover effect */
.triplara-video-compact:hover {
  background: #f9fafb;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Heading inside button (CENTERED) */
/* Make Video Tour button same card size as See Tickets */
.triplara-video-compact {
  width: 23%;                     /* full width like See Tickets */
  background: #fff;
  border-radius: 20px;             /* same rounded corners */
           /* large padding */
                 /* same height feel */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06); /* same soft shadow */
  transition: all .25s ease;
  cursor: pointer;
}

/* Hover effect same as See Tickets */
.triplara-video-compact:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

/* Centered heading */
.video-tour-heading-inside {
  display: block;
  width: 100%;
  text-align: center;
color: green;
  font-weight: 400;
  margin-bottom: 1px;
}

/* Horizontal inner layout */
.video-compact-wrap {
  display: flex;
  align-items: center;
  justify-content: center;

}

/* Thumbnail same size always */
.video-compact-wrap .thumb {
  width: 85px;
  height: auto;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* Play icon */
.video-compact-wrap .play-overlay {
  font-size: 42px;
  color: #4f83ff;
  line-height: 1;
}


/* Responsive adjustments */
@media (max-width: 480px) {

  .triplara-video-compact {
    padding: 10px;
  }

  .triplara-video-compact .thumb {
    width: 60px;
  }

  .triplara-video-compact .play-overlay {
    font-size: 26px;
  }
}


/* Hero */
.triplara-hero {
	padding: 1.2rem;
	background: linear-gradient(180deg, #eef9ee 0%, #fff 55%)
}

.triplara-hero-img {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06)
}

.triplara-hero-img img {
	width: 100%;
	display: block;
	object-fit: cover;
	max-height: 450px;
	object-position: top;
}

/* Tag / Title */
.triplara-tag {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .35rem .8rem;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.08);
	border: 1px solid rgba(34, 197, 94, 0.16);
	color: var(--trp-primary);
	font-weight: 600;
	margin-top: .7rem;
	font-size: .9rem
}

.triplara-title {
	font-size: clamp(1.6rem, 2.4vw, 2.4rem);
	margin: .5rem 0;
	color: #0f1724;
	line-height: 1.08;
	font-weight: 700
}

.triplara-sub {
	color: var(--trp-muted);
	max-width: 72ch;
	margin-bottom: .6rem
	font-size: 16px;
}

/* Actions */
.triplara-actions {
	display: flex;
	gap: .6rem;
	flex-wrap: wrap;
	align-items: center;
	background: #fbfdfb;
	padding: .7rem;
	border-radius: 12px;
	margin-top: .7rem
}

.triplara-btn {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	padding: .6rem 1rem;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	border: 0;
	text-decoration: none
}

.triplara-btn img.icon {
	width: 18px;
	height: 18px;
	object-fit: contain;
	display: inline-block
}

.triplara-actions .triplara-btn img.actions-icon {
	width: 40px;
	height: 40px
}

.triplara-btn--primary {
	background: linear-gradient(135deg, #ff7a00, #ff4500);
	/* Orange → Deep Orange */
	color: #fff;
	box-shadow: 0 8px 18px rgba(255, 140, 0, 0.25);
	/* Soft orange glow */
}

.triplara-btn--ghost {
	background: #fff;
	color: var(--trp-primary);
	border: 1px solid rgba(20, 40, 20, 0.06)
}

.triplara-meta {
	margin-left: auto;
	background: #0f1724;
	color: #fff;
	padding: .4rem .85rem;
	border-radius: 999px;
	font-size: .85rem
}


.triplara-video-compact img.thumb {
	width: 100px;
	height: 50px;
	object-fit: cover;
	border-radius: 8px
}

.triplara-video-compact .play-overlay {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-weight: 700
}

/* Body */
.triplara-body {
  padding: 0 1.4rem 1.4rem;
  color: #111827;
  line-height: 1.65;
}

.triplara-body h2 {
	color: var(--trp-primary);
	margin-bottom: .5rem;
	font-size: 1.18rem
}

.triplara-list {
	list-style: none;
	padding-left: 0;
	margin-top: .4rem
}

.triplara-list li {
	padding-left: 1.6rem;
	position: relative;
	margin-bottom: .45rem
}

.triplara-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .45rem;
	width: .42rem;
	height: .42rem;
	border-radius: 50%;
	background: var(--trp-accent)
}

/* Sidebar cards */
.triplara-aside {
	display: flex;
	flex-direction: column;
	gap: 1rem
}

.triplara-side-card {
	background: var(--trp-card);
	padding: 1rem;
	border-radius: 12px;
	border: 1px solid rgba(12, 18, 20, 0.04);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04)
}

.side-title {
	display: flex;
	gap: .6rem;
	align-items: center;
	color: var(--trp-primary);
	margin-bottom: .6rem;
	font-size: 1rem;
	font-weight: 700
}

.side-title img.icon-small {
	width: 50px;
	height: 50px
}

/* video sidebar thumb */
.video-thumb-sidebar {
	position: relative;
	display: block;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06)
}

.video-thumb-sidebar img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block
}

.play-overlay-sidebar {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .12s ease
}

.play-icon-sidebar {
	width: 64px;
	height: 64px;
	padding: 10px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.45)
}

/* recent posts */
.triplara-recent a {
	display: flex;
	gap: .7rem;
	align-items: center;
	margin-bottom: .6rem;
	text-decoration: none;
	color: inherit
}

.triplara-thumb img {
	width: 72px;
	height: 52px;
	border-radius: 8px;
	object-fit: cover
}

.triplara-seeall {
	display: inline-flex;
	gap: .4rem;
	color: var(--trp-primary);
	margin-top: .6rem;
	font-weight: 600
}

/* responsive smaller screens */
@media(max-width:700px) {
	.triplara-hero-img img {
		max-height: 260px
	}

	.triplara-meta {
		display: none
	}

	.triplara-actions .triplara-btn img.actions-icon {
		width: 30px;
		height: 30px
	}

	.video-thumb-sidebar img {
		height: 160px
	}

	.triplara-video-compact img.thumb {
		width: 56px;
		height: 40px
	}
}

/* video modal (placed last to ensure higher stacking) */
.triplara-video-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	z-index: 9999
}

.triplara-video-modal.open {
	display: flex
}

.triplara-video-frame {
	width: 100%;
	max-width: 920px;
	height: 520px;
	border-radius: 12px
}

@media(max-width:700px) {
	.triplara-video-frame {
		height: 50vh
	}
}

/* Unified card/bubble style used across the site */
.triplara-block {
	background: #ffffff;
	padding: 12px;
	border-radius: 18px;
	margin-top: 10px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.triplara-block-title {
	font-size: 22px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 18px;
}

.triplara-map-embed-wrapper iframe {
	width: 100%;
	height: 330px;
	border: 0;
	border-radius: 14px;
}

@media (max-width: 600px) {
	.triplara-map-embed-wrapper iframe {
		height: 250px;
	}
}

/* Breadcrumbs */
.triplara-breadcrumb {
	margin: 20px 0 10px;
}

.triplara-breadcrumb ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.triplara-breadcrumb li {
	font-size: 14px;
	color: #555;
}

.triplara-breadcrumb a {
	color: #0073aa;
	text-decoration: none;
}

.triplara-breadcrumb li::after {
	content: ">";
	margin-left: 8px;
	color: #999;
}

.triplara-breadcrumb li.active {
	font-weight: 600;
	color: #222;
}

.triplara-breadcrumb li.active::after {
	content: "";
}

/* Archive White Card Block */
.triplara-archive-block {
	background: #fff;
	padding: 32px;
	border-radius: 20px;
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
	margin-top: 30px;
}

/* Title */
.triplara-archive-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 16px;
}

/* Description */
.triplara-archive-desc {
    font-size: 18px;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.6;
}

.triplara-archive-desc p {
    margin-bottom: 12px;
}

/* Grid */
.triplara-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 26px;
}

/* Card */
.triplara-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform .2s ease;
}

.triplara-card:hover {
	transform: translateY(-4px);
}

.triplara-card-thumb img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.triplara-card-body {
	padding: 16px;
}

.triplara-card-title {
	font-size: 20px;
	margin: 0 0 8px;
}

.triplara-card-excerpt {
	font-size: 15px;
	color: #777;
}
/* blog Reading layout */
/* Progress bar */
/* Reading progress bar */
/* =========================
   Reading progress bar
========================= */
#trp-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #ff7a00, #ff4500);
  z-index: 10000;
}

/* =========================
   Reading time pill
========================= */
#trp-reading-time {
  position: fixed;
  top: 8px;
  right: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 500;
  z-index: 10001;
}

/* =========================
   Accordion (EDITOR CONTENT)
========================= */

/* Base accordion */
.triplara-tour-content details {
  border-bottom: 1px solid #e5e7eb;
  padding: 0;

}


/* Summary */
.triplara-tour-content summary {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 36px 18px 4px;
  font-weight: 400;
  cursor: pointer;
  font-size: 18px;
  list-style: none;
}


.triplara-audio-block summary{
     padding: 18px 36px 18px 4px;
  font-weight: bold;
    font-size: 26px;
}
.triplara-tour-content summary::-webkit-details-marker {
  display: none;
}

/* Arrow injected via CSS */
/* Accordion arrow */
.triplara-tour-content summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-image: var(--trp-icon-accordion); /* 👈 THIS IS KEY */
  background-repeat: no-repeat;
  background-size: contain;
  
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Rotate arrow when open */
.triplara-tour-content details[open] summary::after {
  transform: translateY(-50%) rotate(180deg) scale(1.08);
  opacity: 1;
}



/* Rotate arrow when open */
.triplara-tour-content details[open] summary::after {
  transform: translateY(-50%) rotate(180deg) scale(1.08);
  opacity: 1;
}

/* Content spacing inside details */
.triplara-tour-content details > *:not(summary) {
  padding: 0 4px 18px;
  animation: trp-fade-in 0.25s ease;
}

details ul {
  font-size: 16px;
  line-height: 1.6;
  padding-left: 1.25rem; /* keeps bullets nicely aligned */
}

details ul li {
  font-size: 16px;
  margin-bottom: 0.5rem;
}

/* Gentle content reveal */
@keyframes trp-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Ticket CTA timing
========================= */
#trp-ticket-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#trp-ticket-cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* Bigger, bold, black accordion arrow */
.triplara-body .triplara-tour-content details > summary {
  position: relative;
  padding-right: 48px; /* more space for bigger arrow */
}

.triplara-body .triplara-tour-content details > summary::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 40px;          /* BIGGER */
  height: 40px;         /* BIGGER */
  transform: translateY(-50%);
  
  /* SVG as mask */
  -webkit-mask-image: var(--trp-icon-accordion);
  mask-image: var(--trp-icon-accordion);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;

  background-color: #000; /* BOLD BLACK */
  opacity: 1;

  transition: transform 0.35s ease;
}

/* Rotate when open */
.triplara-body .triplara-tour-content details[open] > summary::after {
  transform: translateY(-50%) rotate(180deg) scale(1.15);
}

/* Paragraphs inside accordion */
.triplara-body .triplara-tour-content details p {
  font-size: 16px;  
  line-height: 1.75;
  color: #1f2937;
}

.triplara-sub {
	color: var(--trp-muted);
	max-width: 72ch;
	margin-bottom: .6rem
	font-size: 16px;
}

/* Fix paragraph spacing inside accordion */
.triplara-tour-content details p {
  margin: 0 0 12px;      /* controlled spacing */
  line-height: 1.6;     /* tighter, readable */
}

/* Remove extra padding stacking */
.triplara-tour-content details > *:not(summary) {
  padding-bottom: 8px;  /* reduce from 18px */
}
.triplara-tour-content details p:last-child {
  margin-bottom: 0;
}

/* =========================
   Ticket CTA timing
========================= */
#trp-ticket-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#trp-ticket-cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Ticket CTA – Elegant Card
========================= */
.trp-ticket-cta {
  margin: 48px auto 32px;
  padding: 0 16px;
}

.trp-ticket-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px;
  text-align: center;

  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border-radius: 22px;
  border: 1px solid #fde68a;

  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Title */
.trp-ticket-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

/* Subtitle text */
.trp-ticket-text {
  font-size: 16.5px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 22px;
}

/* Big CTA button */
.trp-ticket-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  padding: 14px 26px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 999px;

  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover / tap feedback */
.trp-ticket-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.25);
}

/* Mobile refinement */
@media (max-width: 640px) {
  .trp-ticket-cta-inner {
    padding: 26px 18px;
  }

  .trp-ticket-title {
    font-size: 20px;
  }

  .trp-ticket-btn {
    width: 100%;
    min-width: auto;
  }
}

/* =========================
   Sticky Mobile Ticket CTA
========================= */
.trp-sticky-ticket-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;

  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.12);

  padding: 10px 14px;
  display: none; /* desktop hidden */
}

/* Inner layout */
.trp-sticky-inner {
  max-width: 1180px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Text block */
.trp-sticky-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
}

.trp-sticky-trust {
  font-size: 12px;
  color: #6b7280;
}

/* Button */
.trp-sticky-btn {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
}

/* Mobile only */
@media (max-width: 768px) {
  .trp-sticky-ticket-cta {
    display: block;
  }

  /* Prevent content from hiding behind sticky bar */
  body {
    padding-bottom: 78px;
  }
}

/* Hide video visually but keep audio playing */
.triplara-video-frame.audio-only {
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}


/* =========================
   AUDIO TOUR BUTTON
========================= */

.triplara-audio-compact {
  width: 23%; /* same width as video tour */
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);

  transition: all .25s ease;
  cursor: pointer;
}

/* Hover interaction */
.triplara-audio-compact:hover {
  background: #f9fafb;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

/* Heading text */
.audio-tour-heading-inside {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--trp-primary);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 14px;
}

/* Inner layout */
.audio-compact-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Audio icon */
.audio-compact-wrap img.icon-small {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* Supporting text */
.audio-text {
  font-size: 13px;
  color: var(--trp-muted);
  white-space: nowrap;
}

/* =========================
   MOBILE ADJUSTMENTS
========================= */

@media (max-width: 480px) {
  .triplara-audio-compact {
    padding: 10px;
  }

  .audio-compact-wrap img.icon-small {
    width: 28px;
    height: 28px;
  }

  .audio-text {
    font-size: 12px;
  }
}

/* Sidebar Audio Thumbnail (mirrors video sidebar) */
.audio-thumb-sidebar {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.audio-thumb-sidebar img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Audio badge */
.audio-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 12px;
  border-radius: 999px;

  background: linear-gradient(135deg, #facc15, #f59e0b); /* yellow → amber */
  color: #1f2937; /* dark text for contrast */

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;

  box-shadow: 
    0 6px 16px rgba(245, 158, 11, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  pointer-events: none; /* click passes through */
}

/* Optional headphone icon via CSS */
.audio-badge::before {
  content: "🎧";
  font-size: 13px;
}

/* Larger layout for states & cities */
.depth-1 .triplara-product-grid,
.depth-2 .triplara-product-grid {
    margin-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.depth-1 .triplara-modern-image img,
.depth-2 .triplara-modern-image img {
    height: 300px;
    object-fit: cover;
}

.depth-1 .triplara-modern-content h3,
.depth-2 .triplara-modern-content h3 {
    font-size: 22px;
}

/* For Listen as a song */

/* =========================================
   TRIPLARA LOCATION HERO + RAIL
========================================= */

.triplara-location-main {
    gap: 28px;
}

.triplara-location-hero {
    position: relative;
    min-height: 420px;
    border-radius: 26px;
    overflow: hidden;
    background-color: #0f172a;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.triplara-location-hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.56) 72%, rgba(15, 23, 42, 0.78) 100%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.30) 0%, rgba(15, 23, 42, 0.06) 52%, rgba(15, 23, 42, 0.28) 100%);
}

.triplara-location-hero__content {
    position: relative;
    z-index: 1;
    min-height: 420px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: end;
    padding: 42px;
}

.triplara-location-hero__copy h1 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(2.4rem, 4.8vw, 4.15rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 10ch;
}

.triplara-location-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.triplara-location-hero__summary {
    align-self: end;
    max-width: 32ch;
    justify-self: end;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
    padding-bottom: 8px;
}

.triplara-location-collection {
    margin-top: 28px;
}

.triplara-location-collection__head {
    margin-bottom: 18px;
}

.triplara-location-collection__head h2,
.triplara-story-head h2,
.triplara-country-tags__group h2,
.triplara-end-discovery__head h2 {
    margin: 0;
    color: #2b3b63;
    font-size: clamp(1.7rem, 2.6vw, 2.15rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.triplara-location-collection__head p,
.triplara-story-head p,
.triplara-end-discovery__head p {
    max-width: 60ch;
    margin: 10px 0 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.triplara-location-rail {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.triplara-location-rail__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 4px 14px;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.triplara-location-rail__track::-webkit-scrollbar {
    display: none;
}

.triplara-location-rail__button {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #2b3b63;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 12px 28px rgba(43, 59, 99, 0.22);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.triplara-location-rail__button:hover {
    transform: translateY(-1px);
    background: #243253;
}

.triplara-location-card {
    flex: 0 0 clamp(210px, 20vw, 248px);
    scroll-snap-align: start;
}

.triplara-location-card__link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.triplara-location-card__media {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4 / 5;
    background: #dbeafe;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
}

.triplara-location-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.triplara-end-discovery__country-rail .triplara-location-card__media {
    background: #eef4ff;
}

.triplara-end-discovery__country-rail .triplara-location-card__media img {
    object-fit: contain;
    object-position: center center;
    background: #eef4ff;
}

.triplara-location-card:hover .triplara-location-card__media img {
    transform: scale(1.05);
}

.triplara-location-card__body {
    padding-left: 2px;
}

.triplara-location-card__body h3 {
    margin: 0;
    color: #2b3b63;
    font-size: 1.02rem;
    line-height: 1.25;
    font-weight: 700;
}

.triplara-location-card__body p {
    margin: 5px 0 0;
    color: #8a94a6;
    font-size: 0.92rem;
    font-weight: 500;
}

.triplara-location-empty {
    padding: 18px 20px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #64748b;
}

.triplara-archive-block--story-grid {
    margin-top: 34px;
}

.triplara-story-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.triplara-archive-block--story-grid h2 {
    margin: 0 0 18px;
    color: #2b3b63;
    font-size: clamp(1.7rem, 2.6vw, 2.15rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.triplara-story-head h2 {
    margin: 0;
}

.triplara-story-head p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 60ch;
}

.triplara-story-count {
    flex: 0 0 auto;
    color: #2b3b63;
    font-size: 0.98rem;
    font-weight: 700;
    background: rgba(43, 59, 99, 0.06);
    border: 1px solid rgba(43, 59, 99, 0.10);
    border-radius: 999px;
    padding: 10px 16px;
    white-space: nowrap;
}

.triplara-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.triplara-story-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    transition: transform .22s ease, box-shadow .22s ease;
}

.triplara-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.triplara-story-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.triplara-story-card__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
}

.triplara-story-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    transition: transform .35s ease;
    background: #dbeafe;
}

.triplara-story-card:hover .triplara-story-card__thumb img {
    transform: scale(1.05);
}

.triplara-story-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.triplara-story-card__eyebrow {
    margin: 0;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.triplara-story-card__body h3 {
    margin: 0;
    color: #2b3b63;
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 800;
}

.triplara-story-card__body p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.55;
}

.triplara-show-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.triplara-show-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: 1px solid #d2d9e6;
    background: #fff;
    color: #2b3b63;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.triplara-show-more-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    background: #fbfcff;
}

.triplara-ad-slot {
    width: 100%;
    max-width: 100%;
}

.triplara-ad-slot > * {
    max-width: 100%;
}

.triplara-ad-slot iframe {
    width: 100%;
    max-width: 100%;
}

.triplara-ad-slot--banner {
    margin: 28px 0 14px;
}

.triplara-ad-slot--inline {
    margin: 28px 0;
}

.triplara-ad-slot--sidebar {
    margin-bottom: 18px;
}

.triplara-country-tags {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid #e7ecf5;
}

.triplara-country-tags__group + .triplara-country-tags__group {
    margin-top: 34px;
}

.triplara-country-tags__group h2 {
    margin: 0 0 16px;
}

.triplara-country-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.triplara-country-tags__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.72rem 1.05rem;
    border-radius: 13px;
    border: 1px solid #d7dce8;
    background: #fff;
    color: #2b3b63;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.025);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.triplara-country-tags__chip:hover {
    transform: translateY(-1px);
    border-color: rgba(43, 59, 99, 0.24);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
    background: #f9fbff;
    color: #22325a;
}

.triplara-end-discovery {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid #e7ecf5;
}

.triplara-end-discovery__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.triplara-end-discovery__cta-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: #2b3b63;
    color: #fff;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(43, 59, 99, 0.18);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.triplara-end-discovery__cta-link:hover {
    transform: translateY(-1px);
    background: #243253;
    box-shadow: 0 16px 32px rgba(43, 59, 99, 0.22);
    color: #fff;
}

.triplara-end-discovery__block {
    margin-top: 28px;
}

.triplara-end-discovery__block h3 {
    margin: 0 0 16px;
    color: #2b3b63;
    font-size: clamp(1.08rem, 1.8vw, 1.3rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.triplara-end-discovery__story-grid {
    margin-top: 0;
}

.triplara-end-discovery__chips {
    margin-top: 0;
}

@media (max-width: 1100px) {
    .triplara-location-hero__content {
        grid-template-columns: 1fr;
    }

    .triplara-location-hero__summary {
        justify-self: start;
        max-width: 46ch;
    }

    .triplara-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .triplara-country-tags__list {
        gap: 10px;
    }

    .triplara-end-discovery__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 920px) {
    .triplara-location-hero {
        min-height: 360px;
        border-radius: 22px;
    }

    .triplara-location-hero__content {
        min-height: 360px;
        padding: 28px;
    }

    .triplara-location-rail__button {
        display: none;
    }

    .triplara-story-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .triplara-story-count {
        white-space: normal;
    }

    .triplara-country-tags {
        margin-top: 40px;
        padding-top: 22px;
    }

    .triplara-end-discovery {
        margin-top: 40px;
        padding-top: 22px;
    }
}

@media (max-width: 640px) {
    .triplara-location-hero {
        min-height: 320px;
    }

    .triplara-location-hero__content {
        min-height: 320px;
        padding: 22px;
    }

    .triplara-location-hero__copy h1 {
        max-width: 12ch;
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .triplara-location-hero__summary {
        font-size: 0.95rem;
    }

    .triplara-location-card {
        flex-basis: 190px;
    }

    .triplara-location-rail__track {
        gap: 16px;
    }

    .triplara-story-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .triplara-story-card__body {
        padding: 16px 16px 18px;
    }

    .triplara-country-tags__chip {
        min-height: 48px;
        padding: 0.7rem 0.95rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
}
.triplara-audio-block {
    margin: 10px 0;
}

.triplara-audio-header {
    text-align: center;
    margin-bottom: 8px;
}

.triplara-audio-header strong {
    display: block;
    font-size: 15px;
    color: #111827;
}

.triplara-audio-header span {
    font-size: 12.5px;
    color: #6b7280;
}

.triplara-audio-footer {
    text-align: center;
    font-size: 12.5px;
    color: #6b7280;
    margin-top: 6px;
}

.triplara-audio-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.triplara-audio-brand img {
    width: 90px;
    border-radius: 6px;
}

/* For Listen as a song */
