/* ======================================================
   SERVICE / INNER PAGE HERO BANNER
   (Common for all pages except Home)
====================================================== */

.service-hero {
  position: relative;
  width: 100%;
  height: 397px; /* Desktop height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Mobile height */
@media (max-width: 768px) {
  .service-hero {
    height: 300px;
  }
}

/* ======================================================
   HERO OVERLAY
====================================================== */

.service-hero-overlay {
  position: absolute;
  inset: 0;
/*  background: rgba(0, 0, 0, 0.50); /* subtle dark overlay */*/
  z-index: 1;
}

/* ======================================================
   HERO CONTENT WRAPPER
====================================================== */

.service-hero .container {
  position: relative;
  z-index: 2;
  width: 75%;
}

.service-hero-content {
  max-width: 100%;
}

/* Mobile left spacing */
@media (max-width: 768px) {
  .service-hero-content {
    padding-left: 30px;
    padding-right: 20px;
  }
}

/* ======================================================
   HERO TITLE
====================================================== */

.service-hero-title {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0;
  color: rgba(250, 100, 0, 1);
  margin: 0 0 10px 0;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile title */
@media (max-width: 768px) {
  .service-hero-title {
    font-size: 30px;
    line-height: 34px;
  }
}

/* ======================================================
   HERO SUBTITLE
====================================================== */

.service-hero-subtitle {
  font-family: 'Arimo', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  margin: 0;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile subtitle */
@media (max-width: 768px) {
  .service-hero-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
}
