/* Main Wrapper */
.diamond-hero-wrapper {
  /* Padding is handled by your module spacing fields in the HTML */
}

/* Centering Container */
.diamond-hero-wrapper .content-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Headline Styles (Desktop) */
.diamond-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 50px;
  font-weight: 700; 
  line-height: 60px;
  margin-top: 0;
  margin-bottom: 25px; 
}

.diamond-headline .headline-dark {
  color: #3f4246; 
}

.diamond-headline .headline-white {
  color: #ffffff; 
}

/* Support Text Styles (Desktop) */
.diamond-support-text {
  max-width: 672px; 
  margin: 0 auto;   
  
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 300; 
  line-height: 30px;
  /* Color is now handled dynamically in module.html */
}

/* Target paragraphs inside Rich Text to ensure overrides */
.diamond-support-text p {
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  /* Color is now handled dynamically in module.html */
}

.diamond-support-text p:last-child {
  margin-bottom: 0;
}

/* --- Stronger Bolds for Support Text --- */
.diamond-support-text strong,
.diamond-support-text b,
.diamond-support-text p strong,
.diamond-support-text p b {
  font-weight: 700;
}
/* --- Large Support Text Option (Desktop) --- */
.diamond-support-text.text-large,
.diamond-support-text.text-large p {
  font-size: 22px !important;
  line-height: 34px !important;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  /* Mobile Headline: 35px / 40px */
  .diamond-headline {
    font-size: 35px;
    line-height: 40px;
  }
  
  /* Mobile Support Text: 15px / 25px */
  .diamond-support-text,
  .diamond-support-text p {
    font-size: 15px;
    line-height: 25px;
  }
  /* Mobile Responsiveness */
@media (max-width: 767px) {
  /* Mobile Headline: 35px / 40px */
  .diamond-headline {
    font-size: 35px;
    line-height: 40px;
  }
  
  /* Standard Mobile Support Text: 15px / 25px */
  .diamond-support-text,
  .diamond-support-text p {
    font-size: 15px;
    line-height: 25px;
  }

  /* Large Mobile Support Text Option: 18px / 28px */
  .diamond-support-text.text-large,
  .diamond-support-text.text-large p {
    font-size: 18px !important;
    line-height: 28px !important;
  }
}