/* =========================================================
   LEFT IMAGE – RIGHT TEXT BLOCK
========================================================= */

/* SECTION SETTINGS */
.left-image-text-section {
  background: #ffffff;
  padding: 40px 0;
}

/* INNER WRAPPER */
.left-image-text-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   MAIN LAYOUT – MOBILE FIRST
========================================================= */
.left-image-text-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 🔒 NEUTRALISE REVERSE BY DEFAULT */
.left-image-text-container.is-reversed {
  flex-direction: column;
}

/* COLUMNS */
.lit-image-col,
.lit-content-col {
  width: 100%;
  max-width: 100%;
}

.lit-image-col img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

/* TYPOGRAPHY */
.lit-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #333333;
  margin: 0 0 16px;
}

.lit-content {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 24px;
}

/* BUTTON */
.lit-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 32px;
  border: 1px solid #0A45BB;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0A45BB;
  text-decoration: none;
  transition: all 0.2s ease-in;
}

.lit-cta-button:hover {
  background: #0A45BB;
  color: #ffffff;
}

/* =========================================================
   DESKTOP LAYOUT ONLY (≥901px)
========================================================= */
@media (min-width: 901px) {

  .left-image-text-section {
    padding: 80px 0;
  }

  .left-image-text-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  /* ✅ DESKTOP REVERSE ENABLED */
  .left-image-text-container.is-reversed {
    flex-direction: row-reverse;
  }

  .lit-image-col {
    flex: 0 0 44%;
    max-width: 44%;
  }

  .lit-content-col {
    flex: 0 0 50%;
    max-width: 600px;
  }

  .lit-title {
    font-size: 32px;
  }
}

/* =========================================================
   🚨 HARD MOBILE OVERRIDE (≤768px) – MUST BE LAST
========================================================= */
@media (max-width: 768px) {

  /* ❌ DISABLE REVERSE COMPLETELY ON MOBILE */
  .left-image-text-container.is-reversed {
    flex-direction: column !important;
  }
}
