.rl-hero {
  display: flex;
  min-height: 85vh;
  position: relative;
}

.rl-hero__dark,
.rl-hero__light {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.rl-hero__dark {
  background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-gradient) 60%, #0d1f3c 100%);
}

.rl-hero__light {
  background: linear-gradient(160deg, var(--light-bg) 0%, var(--light-gradient) 60%, #f8f4ff 100%);
}

.rl-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.rl-hero__glow--dark {
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
}
.rl-hero__glow--light {
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(107,63,160,0.1) 0%, transparent 70%);
}

/* Force buttons to natural width regardless of any external override */
.rl-hero__dark .btn-dark,
.rl-hero__dark .btn-light,
.rl-hero__light .btn-dark,
.rl-hero__light .btn-light {
  align-self: flex-start;
  width: auto;
}

.rl-hero__label { display: block; margin-bottom: 0.75rem; }

.rl-hero__headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.rl-hero__subtext {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 380px;
}

.rl-hero__divider {
  width: 3px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, var(--gold-accent), var(--primary-purple), var(--gold-accent));
}

@media (max-width: 768px) {
  .rl-hero { flex-direction: column; min-height: auto; }
  .rl-hero__divider { width: 100%; height: 3px; background: linear-gradient(to right, var(--gold-accent), var(--primary-purple), var(--gold-accent)); }
  .rl-hero__dark, .rl-hero__light { padding: 3rem 1.5rem; min-height: 50vh; }
}
