/* ==========================================================================
   WH Support Us - Complete Styles
   ========================================================================== */

p {
  line-height: 1.4;
}  
  
/* ---------------------------------------------------------------------
   1. Main Container (Page Width, Full Bleed Background via Pseudo-element)
   --------------------------------------------------------------------- */
.wh-support-us {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 32px;
  box-sizing: border-box;
  /* Background color is set via inline style from field_wh_support_bg_color */
}

/* Full bleed background using absolute positioned pseudo-element */
.wh-support-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: inherit;
  z-index: -1;
}

.wh-support-us__wrapper {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .wh-support-us {
    padding: 32px 16px;
  }
}

/* ---------------------------------------------------------------------
   2. Heading
   --------------------------------------------------------------------- */
.wh-support-us__heading {
  font-family: 'Action Cond Bold Web', sans-serif;
  font-size: 48px;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  text-align: center;
  color: #333333;
  margin: 0 0 1.5rem 0;
  letter-spacing: 1px;
  line-height: 1;
}

.wh-support-us__heading .field {
  display: inline;
}

@media (min-width: 768px) {
  .wh-support-us__heading {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {
  .wh-support-us__heading {
    font-size: 60px;
  }
}

/* ---------------------------------------------------------------------
   3. Text
   --------------------------------------------------------------------- */
.wh-support-us__text {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 2rem 0;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.wh-support-us__text .field {
  display: block;
}

.wh-support-us__text p {
  margin: 0 0 1rem 0;
}

.wh-support-us__text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .wh-support-us__text {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .wh-support-us__text {
    font-size: 18px;
  }
}

/* ---------------------------------------------------------------------
   4. CTA Button (matches image-text button style)
   --------------------------------------------------------------------- */
.wh-support-us__cta {
  margin-top: 2rem;
  text-align: center;
}

.wh-support-us__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 3px solid transparent;
  background-color: #2a24e4;
  color: #ffffff;
  border-color: #2a24e4;
  box-shadow: 0 6px 25px rgba(42, 36, 228, 0.5);
  cursor: pointer;
  transition: 
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.25s ease;
}

.wh-support-us__button:hover,
.wh-support-us__button:focus {
  background-color: #3d36ff;
  border-color: #3d36ff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(42, 36, 228, 0.6);
  color: #ffffff;
  text-decoration: none;
}

.wh-support-us__button:focus {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .wh-support-us__button {
    padding: 1.4rem 3.5rem;
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .wh-support-us__button {
    padding: 1.5rem 4.5rem;
    font-size: 16px;
  }
}

/* ---------------------------------------------------------------------
   5. Hide empty field wrappers
   --------------------------------------------------------------------- */
.wh-support-us__heading:empty,
.wh-support-us__text:empty,
.wh-support-us__cta:empty {
  display: none;
}

/* ---------------------------------------------------------------------
   6. Responsive adjustments
   --------------------------------------------------------------------- */
@media (max-width: 767px) {
  .wh-support-us__heading {
    font-size: 32px;
    margin-bottom: 1rem;
  }

  .wh-support-us__text {
    margin-bottom: 1.5rem;
  }

  .wh-support-us__cta {
    margin-top: 1.5rem;
  }
}

