/* =====================================================
   RED STATEMENT BAND
===================================================== */

.sfw-statement-band {
  background: #d51d28;
  color: #ffffff;
  padding: 42px 0 44px;
}

.sfw-statement-inner {
  width: min(1200px, 88%);
  margin: 0 auto;
}

.sfw-statement-inner h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* =====================================================
   EXECUTIVE OVERVIEW
===================================================== */

.sfw-overview {
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  background: #000;
}

.sfw-overview-bg {
  position: absolute;
  inset: 0;
  background-image: url("../../img/office-handshake.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(.78);
}

.sfw-overview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.18) 0%,
    rgba(255,255,255,.05) 42%,
    rgba(0,0,0,.1) 100%
  );
  z-index: 1;
}

.sfw-overview-content {
  position: relative;
  z-index: 2;
  width: min(680px, 90%);
  padding: 80px 0 80px 56px;
  color: #ffffff;
}

.sfw-overview-content h2 {
  margin: 0 0 35px;
  font-size: clamp(58px, 6vw, 96px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.sfw-overview-content p {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.45;
  font-weight: 800;
  max-width: 620px;
}

/* Mobile */
@media (max-width: 768px) {
  .sfw-statement-band {
    padding: 30px 0;
  }

  .sfw-statement-inner {
    width: 90%;
  }

  .sfw-statement-inner h2 {
    font-size: 26px;
  }

  .sfw-overview {
    min-height: 560px;
  }

  .sfw-overview-content {
    padding: 55px 24px;
    width: 100%;
  }

  .sfw-overview-content h2 {
    font-size: 52px;
  }

  .sfw-overview-content p {
    font-size: 24px;
    line-height: 1.35;
  }
}