

/* -----------------------------------
   BACKGROUND SPLIT (OLD LAYOUT)
----------------------------------- */

.propos_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 820px;
  display: grid;
  grid-template-columns: 50% 50%;
  z-index: 1;
}

.propos_left {
  background-color: #f2f2f2;
}

.propos_right {
  background-image: url("../img/a_propos.jpg");
  background-size: cover;
  background-position: center;
}


/* =======================================================
   EDITORIAL SECTION â€“ FINAL CORRECT LAYOUT
======================================================= */

/* Reduced but still strong title */

.propos_main_title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: 6px;
  margin: 0;
  color: #bd4ad5;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4),   /* subtle highlight */
    0 3px 8px rgba(0, 0, 0, 0.12);      /* soft depth */
}

.propos_sub_title {
  max-width: 1200px;	
  width: 100%;
  margin-left: auto;
  margin-right: auto;	
  color: #bd4ad5;
  font-size: 30px;
  padding: 40px 0px;
  border: 0px solid #7360BC;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.10);
}

.propos_editorial {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 70px;
  border: 0px solid red;
}


/* -----------------------------------
   MAIN CONTAINER (OLD STRUCTURE)
----------------------------------- */

.container_propos {
  position: relative;
  width: 100%;
  min-height: 820px;
  overflow: hidden;
  border: 0px solid #000000;
}

/* -----------------------------------
   TOP CONTENT
----------------------------------- */

.propos_top {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 60px;
}

.spacer_row {
  height: 40px;
}


/* -----------------------------------
   TURQUOISE TEXT BLOCK
----------------------------------- */

.text_row {
  background-color: #356169;
  text-align: left;
  padding: 45px 75px;
  width: min(900px, 90%);
  margin: 0 auto;
}

.text_row .propos_subtitle {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 500;
}

.text_row .propos_text {
  font-size: 16px;
  line-height: 1.60;
  font-weight: 300;
}



/* -----------------------------------
   SPLIT LAYOUT
----------------------------------- */

.editorial_split {
  display: flex;
  align-items: center;
  gap: 0; /* between image and text  */
  margin-bottom: 20px;
  padding: 0 40px;
  border: 3px solid #356169;	
}

/* Block 2 â†’ image RIGHT */

.editorial_split.reverse {
  flex-direction: row-reverse;
}

/* Pull the image over the padding of the text column */
.editorial_split:not(.reverse) .editorial_image {
    margin-left: -40px;  /* matches the text padding on left */
}

.editorial_split.reverse .editorial_image {
    margin-right: -40px; /* matches the text padding on right */
}


/* -----------------------------------
   TEXT COLUMN
----------------------------------- */

.editorial_text {
  flex: 1;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0px solid blue;
}

.editorial_text p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.60;
  font-weight: 300;
}

/* -----------------------------------
   IMAGE COLUMN (LARGE + DOMINANT)
----------------------------------- */

.editorial_image {
  flex: 1;   /* image visually stronger */
  position: relative;
}

.editorial_image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  -webkit-filter: drop-shadow(-5px 5px 10px #666666);
  filter: drop-shadow(-5px 5px 10px #666666);	
}

/* -----------------------------------
   VERTICAL DEPTH OFFSET
----------------------------------- */

/* Block 1 (image LEFT)  slightly higher and overlapping text */
.editorial_split:not(.reverse) .editorial_image img {
  transform: translate(-30px, -30px); /* shift left (-X) and up (-Y) */
  z-index: 2; /* bring above background */
}

/* Block 2 (image RIGHT)  slightly lower and overlapping text */
.editorial_split.reverse .editorial_image img {
  transform: translate(30px, 30px); /* shift right (+X) and down (+Y) */
  z-index: 2;
}

/* Optional: smooth transition for hover or resizing */
.editorial_image img {
  transition: transform 0.4s ease;
}

