/* Positioning Split Section Inspired by Reference */
.section-positioning-split {
  background-color: transparent;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.positioning-flex {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
}

/* Left Image Column */
.positioning-image-wrapper {
  flex: 1.2;
  position: relative;
  /* Use mask to fade the right side smoothly into the white background */
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  display: flex;
  justify-content: flex-start;
}

.positioning-image-wrapper img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Right Content Column */
.positioning-content {
  flex: 1;
  padding: 40px 60px 40px 20px;
  max-width: 600px;
}

.positioning-tag {
  display: inline-block;
  background-color: #F1F1F1;
  color: #111;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.positioning-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 25px;
}

.positioning-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.positioning-highlight {
  font-size: 17px;
  font-weight: 700;
  color: #FF4326; /* Brand red for emphasis */
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .positioning-flex {
    flex-direction: column;
  }
  
  .positioning-image-wrapper {
    width: 100%;
    /* Fade bottom instead of right on mobile */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  }
  
  .positioning-content {
    padding: 20px 30px 60px;
    text-align: center;
  }
  
  .positioning-title {
    font-size: 42px;
  }
}
