
/* Hero Split Layout */
.hero-split .hero-left h1 {
  color: #fff;
  font-weight: var(--font-weight-bold);
}

.hero-split {
  display: flex;
  flex-direction: row;
  height: 60vh;
  max-height: 600px;
  width: 100%;
}

.hero-left {
  background-color: #4CAF50;
  color: white;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: left;
  font-size: 2rem;
  line-height: 1.3;
}

.hero-right {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right picture,
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Responsive Stacking - v3 fixes overflow and padding */
@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    height: auto;
    min-height: auto;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .hero-left {
    font-size: 1.3rem;
    padding: 1.25rem;
    word-break: break-word;
  }

  .hero-right picture,
  .hero-right img {
    object-fit: cover;
  }
}
