/* =====================================================================
   Ridhaan Travels — Package single + archive templates
   Additive only: tokens, .container, .section, .btn, .pkg-card,
   .page-hero, .breadcrumb, .text-link etc. come from the shared
   assets/css/site.css loaded before this file. Scoped under .rt for
   the same specificity reasons as site.css.
===================================================================== */

/* Single package hero image + meta stats */
.rt .package-hero-media {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  height: 320px;
  margin: 20px 0 32px;
  background: var(--muted);
}
.rt .package-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.rt .package-title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 24px; }

.rt .package-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 40px; }
.rt .package-meta-item {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: .85rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}
.rt .package-meta-item span:first-child {
  font-size: .7rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
}
.rt .package-meta-item span:last-child { font-size: .88rem; color: var(--foreground); font-weight: 500; }

/* Itinerary body (the_content) */
.rt .package-body { max-width: 760px; }
.rt .package-body h2 { font-size: 1.3rem; margin-top: 2em; }
.rt .package-body h2:first-child { margin-top: 0; }
.rt .package-body p { color: var(--muted-foreground); font-size: .95rem; line-height: 1.7; }

/* Bottom quote CTA */
.rt .package-cta {
  margin-top: 48px;
  padding: 32px;
  border-radius: 1.25rem;
  background: var(--secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.rt .package-cta h3 { font-size: 1.1rem; margin-bottom: 4px; }
.rt .package-cta p { margin: 0; color: var(--muted-foreground); font-size: .9rem; }

.rt .package-back { margin-top: 24px; }
