.simple-section-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1.538rem;
}

.section-content {
  text-align: center;
  margin: var(--mp32) auto;
  max-width: 800px;
  padding: 0 var(--mp20);
}

.section-content-title {
  font-family: var(--font-canela) !important;
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-56);
  line-height: 100%;
  color: rgba(31, 41, 55, 1);
  margin: 0 0 var(--mp16);
}

.section-content-subtitle {
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-30);
  line-height: 1.3;
  color: rgba(220, 38, 38, 1);
  margin: 0;
}

.simple-section-container .banner-bg-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--border-radius-24);
  position: relative;
  overflow: hidden;
}

.simple-section-container .banner-bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-bg, none);
  border-radius: inherit;
}

.simple-section-container .banner-bg-image .content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 40px 32px;
  text-align: center;
}

.content-overlay .content-text-block {
  margin-bottom: var(--mp32);
}

.content-overlay .content-text-block .content-title {
  font-family: var(--font-canela) !important;
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-36);
  line-height: 1.5;
  margin: 0 0 var(--mp20);
  color: rgba(255, 255, 255, 1);
}

.content-overlay .content-text-block .content-sub-title {
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-20);
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1024px) {
  .section-content-title {
    font-size: var(--font-size-44);
  }

  .section-content-subtitle {
    font-size: var(--font-size-24);
  }

  .content-overlay .content-text-block .content-title {
    font-size: var(--font-size-28);
  }

  .content-overlay .content-text-block .content-sub-title {
    font-size: var(--font-size-18);
  }

  .simple-section-container .banner-bg-image .content-overlay {
    padding: 32px 24px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .section-content-title {
    font-size: var(--font-size-32);
  }

  .section-content-subtitle {
    font-size: var(--font-size-20);
  }

  .content-overlay .content-text-block .content-title {
    font-size: var(--font-size-24);
  }

  .content-overlay .content-text-block .content-sub-title {
    font-size: var(--font-size-16);
  }

  .simple-section-container .banner-bg-image {
    aspect-ratio: 4 / 3;
  }

  .simple-section-container .banner-bg-image .content-overlay {
    padding: 24px 16px;
  }
}