/* Editorial Hero Component */
.editorial-hero {
  background: var(--velora-bg-primary, #ffffff);
  padding: 3rem 0 2rem;
}

.editorial-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Breadcrumb */
.editorial-hero-breadcrumb {
  margin-bottom: 1.5rem;
}

.editorial-hero-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--velora-text-muted, #9a92b5);
}

.editorial-hero-breadcrumb a {
  color: var(--velora-text-soft, #6b6288);
  text-decoration: none;
  transition: color 0.2s ease;
}

.editorial-hero-breadcrumb a:hover {
  color: var(--velora-accent-primary, #6B46C1);
}

.editorial-hero-breadcrumb-separator {
  opacity: 0.5;
}

/* Typography */
.editorial-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: 1.1;
  font-weight: var(--velora-font-weight-medium);
  letter-spacing: 0.02em;
  color: var(--velora-text-strong, #151022);
  margin-bottom: 1rem;
}

.editorial-hero p {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--velora-text-default, #2a203f);
  max-width: 65ch;
  margin: 0;
}

/* Editorial variant (default) */
.editorial-hero--editorial h1,
.editorial-hero--editorial p {
  text-align: left;
}

.editorial-hero-illustration-accent {
  margin-top: 1.5rem;
  max-width: 200px;
}

.editorial-hero-illustration-accent img {
  width: 100%;
  height: auto;
  display: block;
}

/* Split variant */
.editorial-hero--split .editorial-hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.editorial-hero--split .editorial-hero-text {
  max-width: 600px;
}

.editorial-hero-illustration {
  max-width: 360px;
  /* increased by +80px for larger desktop hero illustrations */
  min-width: 200px;
  justify-self: end;
}

.editorial-hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

/* Minimal variant */
.editorial-hero--minimal {
  padding: 2rem 0 1.5rem;
}

.editorial-hero--minimal h1 {
  margin-bottom: 0.75rem;
}

.editorial-hero--minimal p {
  font-size: 1rem;
}

/* Extra slot content */
.editorial-hero-extra {
  margin-top: 1.5rem;
}

/* Dark mode */
[data-theme="dark"] .editorial-hero {
  background: var(--velora-bg-primary, #0A0E27);
}

[data-theme="dark"] .editorial-hero h1 {
  color: var(--velora-text-luminous, #F8FAFC);
}

[data-theme="dark"] .editorial-hero p {
  color: var(--velora-text-ethereal, #E2E8F0);
}

/* Responsive */
@media (max-width: 768px) {
  .editorial-hero {
    padding: 2rem 0 1.5rem;
  }

  .editorial-hero h1 {
    font-size: clamp(2rem, 5vw, 2.4rem);
  }

  .editorial-hero p {
    font-size: 1rem;
  }

  .editorial-hero--split .editorial-hero-split {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }

  .editorial-hero--split .editorial-hero-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .editorial-hero-illustration {
    justify-self: center;
    margin-bottom: 2rem;
  }

  .editorial-hero-illustration {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Editorial Illustration Component */
.editorial-illustration {
  display: block;
  position: relative;
}

.editorial-illustration--small {
  max-width: 100px;
}

.editorial-illustration--medium {
  max-width: 280px;
  /* increased by +80px */
}

.editorial-illustration--large {
  max-width: 480px;
  /* increased by +80px */
}

.editorial-illustration-image {
  width: 100%;
  height: auto;
  display: block;
}