/* ============================================================
   SECTION HEADINGS – orange-brush style with orange_line.png
   Applied to: "Dive Into the RV World", "Explore Destinations", "Stories"
   ============================================================ */

.section-heading.orange-brush h2 {
  font-family: var(--font-display, 'Oswald', sans-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text, #1a1a1a);
  display: inline-block;
  position: relative;
  padding: 10px 28px;
  z-index: 1;
}

/* The orange brush-stroke image behind the text */
.section-heading.orange-brush h2::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 55%;
  transform: translateY(-30%);
  background: url('../images/orange_line.png') center / 100% 100% no-repeat;
  z-index: -1;
  pointer-events: none;
}

/* Ensure no ::after decorators from other styles leak in */
.section-heading.orange-brush h2::after {
  display: none;
}
