/* ===============================
   ABOUT HERO SECTION (Inspired by  Code sommet)
   =============================== */
.hero-section.section.about-hero {
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  background-color: #211e1d;
  
  margin-top: -40px; 
  padding-top: 120px; 
  margin-bottom: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* container center alignment */
.container.is-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  width: 100%;
  max-width: 1440px;
}

/* subtitle */
.hero_subtitle {
  color: #fff;
  mix-blend-mode: overlay;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

/* title */
.hero_title {
  color: #fff;
  text-wrap: balance;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

/* image block */
.hero-image {
  background-color: #111;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 1500px;
  height: 600px;
  margin-top: 3rem;
  margin-bottom: -300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img.full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   RESPONSIVE FIXES
   =============================== */
@media (max-width: 991px) {
  .hero-section.section.about-hero {
    margin-top: -30px;
    padding-top: 100px;
    margin-bottom: 200px;
  }

  .hero-image {
    height: 420px;
    margin-bottom: -200px;
  }
}

@media (max-width: 767px) {
  .hero-section.section.about-hero {
    margin-top: -25px;
    padding-top: 90px;
    margin-bottom: 160px;
  }

  .hero-image {
    height: 320px;
    margin-bottom: -150px;
  }

  .hero_subtitle {
    font-size: 1.25rem;
  }

  .hero_title {
    font-size: 2rem;
  }
}

/* ===============================================
 RICH-TEXT STYLE
   =============================================== */

.rich-text-section.section {
  background-color: var(--light--off-white);
  padding: 6rem 2rem;
}

.container {
  width: 100%;
  max-width: 1100px; 
  margin: 0 auto;
}

.rich-text {
  max-width: 820px; 
  margin: 0 auto;
  font-size: 1.35rem; 
  line-height: 1.65; 
  color: #000;
  font-weight: 400;
  letter-spacing: 0.1px;
}

.rich-text p {
  margin-bottom: 1.6rem; /* big spacing */
}

.rich-text p strong {
  font-weight: 700;
  display: inline-block;
  margin-top: 0.5rem;
}

.w-richtext::before,
.w-richtext::after {
  content: " ";
  display: table;
}

.w-richtext::after {
  clear: both;
}
.rich-text h2 {
    margin-top: 2.5rem !important;
    margin-bottom: 1.2rem !important;
    font-weight: 700;
    line-height: 1.2;
}

/* FIX: h3 styling like screenshot */
.rich-text h3 {
    color: var(--light--blue);
    text-transform: none;
    margin-top: 1em;
    margin-bottom: .5em;
    font-size: 1.2rem;
    font-weight: 600;
}

