/* tour-royal-highland-festival.css — extracted from bhutan-tour-packages/festival-tours/royal-highland-festival.php */

/* ============================================================
   ROYAL HIGHLAND FESTIVAL — PAGE-SCOPED STYLES
   Scope: .rhf-page — all styles are namespaced to avoid
   conflicts with the site's global stylesheet.
   ============================================================ */

/* ---------- CSS Variables — Brand: #ffc21a / #0e2d45 ---------- */
.rhf-page {
  --rhf-gold:        #ffc21a;
  --rhf-gold-light:  #ffd35c;
  --rhf-gold-pale:   #fff6d6;
  --rhf-dark:        #071825;
  --rhf-deep:        #0e2d45;
  --rhf-deep-mid:    #163d5e;
  --rhf-navy-muted:  #1e4f79;
  --rhf-cream:       #f7f9fc;
  --rhf-white:       #FFFFFF;
  --rhf-text:        #0e2d45;
  --rhf-text-muted:  #4a6a85;
  --rhf-border:      rgba(255,194,26,0.28);
  --rhf-shadow:      0 4px 32px rgba(14,45,69,0.10);
  --rhf-shadow-lg:   0 12px 60px rgba(14,45,69,0.18);
  --rhf-radius:      4px;
  --rhf-radius-lg:   12px;
  --rhf-font-serif:  'Playfair Display', Georgia, serif;
  --rhf-font-sans:   'Roboto', system-ui, sans-serif;
  --rhf-transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
.rhf-page *,
.rhf-page *::before,
.rhf-page *::after {
  box-sizing: border-box;
}

.rhf-page {
  font-family: var(--rhf-font-sans);
  color: var(--rhf-text);
  background: var(--rhf-cream);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.rhf-hero {
  position: relative;
  width: 100%;
  height: min(90vh, 720px);
  min-height: 480px;
  overflow: hidden;
}

.rhf-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.05);
  animation: rhf-heroZoom 12s ease-out forwards;
}

@keyframes rhf-heroZoom {
  to { transform: scale(1); }
}

/* Gradient overlays */
.rhf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,18,9,0.15) 0%,
    rgba(26,18,9,0.05) 40%,
    rgba(26,18,9,0.65) 80%,
    rgba(26,18,9,0.85) 100%
  );
  z-index: 1;
}

/* Decorative corner marks */
.rhf-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--rhf-cream), transparent);
  z-index: 2;
}

.rhf-hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 8vw, 6rem);
  text-align: center;
}

.rhf-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--rhf-font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rhf-gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: rhf-fadeUp 0.8s 0.5s ease forwards;
}

.rhf-hero__eyebrow::before,
.rhf-hero__eyebrow::after {
  content: '';
  width: 36px; height: 1px;
  background: var(--rhf-gold);
  opacity: 0.8;
}

.rhf-hero__title {
  font-family: var(--rhf-font-serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--rhf-white);
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  opacity: 0;
  animation: rhf-fadeUp 0.8s 0.7s ease forwards;
}

.rhf-hero__title em {
  font-style: italic;
  color: var(--rhf-gold-light);
}

.rhf-hero__subtitle {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  opacity: 0;
  animation: rhf-fadeUp 0.8s 0.9s ease forwards;
}

.rhf-hero__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rhf-fadeUp 0.8s 1.1s ease forwards;
}

.rhf-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(14,45,69,0.55);
  border: 1px solid rgba(255,194,26,0.6);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rhf-gold);
  backdrop-filter: blur(8px);
}

.rhf-hero__badge i {
  font-size: 0.78rem;
}

/* Scroll cue */
.rhf-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: rhf-fadeUp 0.8s 1.4s ease forwards;
}

.rhf-hero__scroll span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.rhf-hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,194,26,0.9), transparent);
  animation: rhf-scrollLine 1.8s 2s ease infinite;
}

@keyframes rhf-scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================================================
   QUICK STATS BAR
   ============================================================ */
.rhf-stats {
  background: var(--rhf-deep);
  border-top: 3px solid var(--rhf-gold);
  padding: 0;
}

.rhf-stats__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.rhf-stats__item {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.15);
  transition: background var(--rhf-transition);
}

.rhf-stats__item:last-child { border-right: none; }

.rhf-stats__item:hover {
  background: rgba(255,194,26,0.08);
}

.rhf-stats__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,194,26,0.12);
  border: 1px solid var(--rhf-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--rhf-gold);
  font-size: 0.85rem;
}

.rhf-stats__text { line-height: 1.3; }

.rhf-stats__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rhf-text-muted);
  color: rgba(255,255,255,0.45);
}

.rhf-stats__value {
  display: block;
  font-family: var(--rhf-font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--rhf-gold-light);
}

/* ============================================================
   LAYOUT WRAPPER
   ============================================================ */
.rhf-layout {
  max-width: 1260px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-areas: "sidebar content";
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .rhf-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "sidebar";
  }
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.rhf-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Table of Contents */
.rhf-toc {
  background: var(--rhf-white);
  border: 1px solid var(--rhf-border);
  border-radius: var(--rhf-radius-lg);
  overflow: hidden;
  box-shadow: var(--rhf-shadow);
}

.rhf-toc__header {
  background: var(--rhf-deep);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 2px solid var(--rhf-gold);
}

.rhf-toc__header i {
  color: var(--rhf-gold);
  font-size: 0.8rem;
}

.rhf-toc__header h2 {
  font-family: var(--rhf-font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rhf-gold-light);
  margin: 0;
}

.rhf-toc__links {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.rhf-toc__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--rhf-text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all var(--rhf-transition);
}

.rhf-toc__link::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rhf-gold);
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity var(--rhf-transition);
}

.rhf-toc__link:hover {
  color: var(--rhf-deep);
  border-left-color: var(--rhf-gold);
  background: var(--rhf-gold-pale);
  padding-left: 1.75rem;
}

.rhf-toc__link:hover::before { opacity: 1; }

/* Book Now Card */
.rhf-book-card {
  background: var(--rhf-deep);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--rhf-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--rhf-shadow);
  position: relative;
  overflow: hidden;
}

.rhf-book-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,26,0.18) 0%, transparent 70%);
}

.rhf-book-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rhf-gold);
  margin-bottom: 0.5rem;
}

.rhf-book-card__price {
  font-family: var(--rhf-font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.rhf-book-card__cta {
  display: block;
  padding: 0.85rem 1.5rem;
  background: var(--rhf-gold);
  color: var(--rhf-deep);
  font-family: var(--rhf-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  transition: all var(--rhf-transition);
  box-shadow: 0 4px 16px rgba(255,194,26,0.35);
}

.rhf-book-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,194,26,0.45);
  background: var(--rhf-gold-light);
  color: var(--rhf-deep);
  text-decoration: none;
}

.rhf-book-card__secondary {
  display: block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--rhf-gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all var(--rhf-transition);
}

.rhf-book-card__secondary:hover {
  background: rgba(255,194,26,0.12);
  color: var(--rhf-gold-light);
  text-decoration: none;
}

.rhf-book-card__note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* Heli option badge */
.rhf-heli-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,194,26,0.08);
  border: 1px solid rgba(255,194,26,0.25);
  border-radius: var(--rhf-radius);
  padding: 1rem;
  margin-top: 1rem;
}

.rhf-heli-badge i {
  color: var(--rhf-gold);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.rhf-heli-badge p {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.rhf-heli-badge strong {
  color: var(--rhf-gold-light);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.rhf-content {
  grid-area: content;
  min-width: 0;
}

/* Section Heading Style */
.rhf-section-title {
  font-family: var(--rhf-font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--rhf-deep);
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.rhf-section-rule {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--rhf-gold), rgba(255,194,26,0.15));
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

/* ---------- Overview Section ---------- */
.rhf-overview {
  background: var(--rhf-white);
  border-radius: var(--rhf-radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  border: 1px solid var(--rhf-border);
  box-shadow: var(--rhf-shadow);
}

.rhf-overview p {
  font-family: var(--rhf-font-sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--rhf-text);
  margin-bottom: 1.1rem;
  text-align: justify;
}

.rhf-overview p:last-child { margin-bottom: 0; }

/* Highlight pull-quote */
.rhf-pull-quote {
  border-left: 3px solid var(--rhf-gold);
  padding: 1rem 1.5rem;
  margin: 1.75rem 0;
  background: var(--rhf-gold-pale);
  border-radius: 0 var(--rhf-radius) var(--rhf-radius) 0;
}

.rhf-pull-quote p {
  font-style: italic;
  color: var(--rhf-deep) !important;
  margin: 0 !important;
}

/* ---------- Highlights ---------- */
.rhf-highlights {
  background: var(--rhf-white);
  border-radius: var(--rhf-radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  border: 1px solid var(--rhf-border);
  box-shadow: var(--rhf-shadow);
}

.rhf-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.rhf-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f0f5fa;
  border: 1px solid rgba(14,45,69,0.10);
  border-radius: var(--rhf-radius);
  transition: all var(--rhf-transition);
}

.rhf-highlight-item:hover {
  background: var(--rhf-gold-pale);
  border-color: var(--rhf-gold);
  transform: translateX(4px);
}
.rhf-highlight-item i {
  color: var(--rhf-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.rhf-highlight-item span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--rhf-text);
  letter-spacing: 0.01em;
}

/* ---------- Itinerary ---------- */
.rhf-itinerary {
  background: var(--rhf-white);
  border-radius: var(--rhf-radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  border: 1px solid var(--rhf-border);
  box-shadow: var(--rhf-shadow);
}

/* Notice box */
.rhf-notice {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, rgba(255,194,26,0.10) 0%, rgba(255,194,26,0.04) 100%);
  border: 1px solid var(--rhf-border);
  border-left: 3px solid var(--rhf-gold);
  border-radius: var(--rhf-radius);
  margin-bottom: 1.5rem;
}

.rhf-notice i {
  color: var(--rhf-gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.9rem;
}

.rhf-notice p {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--rhf-text-muted);
  line-height: 1.6;
}

/* Accordion */
.rhf-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rhf-accordion-item {
  border: 1px solid var(--rhf-border);
  border-radius: var(--rhf-radius);
  overflow: hidden;
  transition: border-color var(--rhf-transition);
}

.rhf-accordion-item.is-open {
  border-color: var(--rhf-gold);
  box-shadow: 0 2px 16px rgba(255,194,26,0.15);
}

.rhf-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  background: #f0f5fa;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--rhf-transition);
  font-family: var(--rhf-font-sans);
}

.rhf-accordion-item.is-open .rhf-accordion-btn,
.rhf-accordion-btn:hover {
  background: var(--rhf-gold-pale);
}

.rhf-accordion-btn__day {
  flex-shrink: 0;
  min-width: 52px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rhf-deep);
  border-radius: 3px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rhf-gold);
  line-height: 1.2;
  text-align: center;
  padding: 0 6px;
}

.rhf-accordion-btn__title {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--rhf-deep);
}

.rhf-accordion-btn__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--rhf-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--rhf-gold);
  font-size: 0.74rem;
  transition: transform var(--rhf-transition), background var(--rhf-transition);
}

.rhf-accordion-item.is-open .rhf-accordion-btn__icon {
  transform: rotate(180deg);
  background: var(--rhf-gold);
  color: var(--rhf-deep);
  border-color: var(--rhf-gold);
}

.rhf-accordion-body {
  display: none;
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--rhf-border);
  background: var(--rhf-white);
}

.rhf-accordion-item.is-open .rhf-accordion-body {
  display: block;
  animation: rhf-slideDown 0.3s ease;
}

@keyframes rhf-slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rhf-accordion-body p,
.rhf-accordion-body li {
  font-size: 0.95rem;
  color: var(--rhf-text);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.rhf-accordion-body strong {
  color: var(--rhf-deep);
  font-weight: 600;
}

.rhf-accordion-body ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

/* Itinerary meta pills */
.rhf-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--rhf-border);
}

.rhf-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: #eef3f8;
  border: 1px solid rgba(14,45,69,0.12);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--rhf-text-muted);
}

.rhf-meta-pill i {
  color: var(--rhf-gold);
  font-size: 0.78rem;
}

/* ---------- Customizable Note ---------- */
.rhf-customizable-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--rhf-deep);
  border-left: 3px solid var(--rhf-gold);
  border-radius: var(--rhf-radius);
  margin-top: 1.5rem;
}

.rhf-customizable-note i {
  color: var(--rhf-gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.rhf-customizable-note p {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ---------- Generic Section Card ---------- */
.rhf-section-card {
  background: var(--rhf-white);
  border-radius: var(--rhf-radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  border: 1px solid var(--rhf-border);
  box-shadow: var(--rhf-shadow);
}

/* ---------- Gallery ---------- */
.rhf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.rhf-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--rhf-radius);
  background: var(--rhf-gold-pale);
  border: 1px solid var(--rhf-border);
}

.rhf-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rhf-gallery-item:hover img {
  transform: scale(1.07);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes rhf-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.rhf-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rhf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .rhf-stats__item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  .rhf-highlights__grid {
    grid-template-columns: 1fr 1fr;
  }

  .rhf-hero__content {
    text-align: left;
    padding-bottom: 3.5rem;
  }

  .rhf-hero__badges { justify-content: flex-start; }
  .rhf-hero__eyebrow { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .rhf-highlights__grid {
    grid-template-columns: 1fr;
  }

  .rhf-stats__item {
    flex: 1 1 100%;
  }

  .rhf-hero {
    min-height: 420px;
    height: 70vh;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .rhf-hero { height: auto; }
  .rhf-sidebar { position: static; }
  .rhf-stats { display: none; }
}
