.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.image-wrapper {
  position: relative;
}

.main-image {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.image-border {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand-red);
  border-radius: 16px;
  z-index: 1;
}

/* --- TEXT CONTENT SIDE --- */
.text-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 16px 0 24px;
  line-height: 1.1;
  color: var(--text-main);
}

.text-highlight {
  color: var(--brand-red);
}

/* Typography Levels */
.lead-text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.body-text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
