/* ── Awwwards Asymmetric Hero ── */
.hero-section {
  padding: 0 0 var(--grid-margin);
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: var(--space-8);
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  position: relative;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--heading);
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.hero-excerpt {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: var(--space-6);
  max-width: 45ch;
  text-wrap: pretty;
}

.hero-author {
  margin-bottom: var(--space-6);
}

.hero-visual {
  position: relative;
  width: 100%;
  z-index: 1;
  display: block;
  transform-origin: top center;
}

.hero-image-wrapper {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-overlay);
  aspect-ratio: 1 / 1;
  width: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s var(--ease-out-expo);
  display: block;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

/* ── Sticky visual (product/book/serie detail pages) ── */
.hero-visual--sticky {
  position: sticky;
  top: 80px;
}

/* ── Responsive Hero ── */
@media (max-width: 767px) {
  .hero-image-wrapper {
    aspect-ratio: 1 / 1;
    max-height: none;
    width: 100%;
  }
}

@media (max-width: 567px) {
  .hero-grid {
    margin-bottom: var(--space-6) !important;
  }
  .hero-title {
    font-size: var(--text-4xl);
  }
  .hero-section {
    padding: var(--space-4) 0 var(--space-6);
  }
}

@media (max-width: 1023px) {
  .hero-section {
    padding-top: var(--space-4);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .hero-visual {
    order: -1;
  }
  .hero-visual--sticky {
    position: static;
  }
  .hero-image-wrapper {
    aspect-ratio: 4 / 3;
    max-height: 55vw;
  }
}