/* ══════════════════════════════════════════
   BRAND DETAIL HEADER
   /brand/{alias}/
══════════════════════════════════════════ */

.gl-bd-header {
  margin-top: 0;
  border-bottom: 1px solid var(--gl-line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 360px;
  background: var(--gl-bg);
}

/* Linke Spalte: Breadcrumb + Name + Text */
.gl-bd-header-top {
  padding: 36px 44px 40px;
  border-right: 1px solid var(--gl-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* Breadcrumb */
.gl-bd-breadcrumb-light {
  margin-bottom: 20px;
}

/* Brand-Name */
.gl-bd-brand-name {
  font-family: var(--gl-disp);
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.88;
  color: var(--gl-ink);
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  overflow-wrap: anywhere;
}

/* About-Text */
.gl-bd-about-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gl-muted);
  max-width: 520px;
  margin: 0;
}

.gl-bd-about-text strong {
  color: var(--gl-ink);
  font-weight: 400;
}

/* Rechte Spalte: Banner-Bild / Video */
.gl-bd-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: var(--gl-bg2);
}

.gl-bd-banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gl-bd-banner:hover .gl-bd-banner-media {
  transform: scale(1.03);
}

/* Ohne Hero-Bild / Video */
.gl-bd-header--no-media {
  grid-template-columns: 1fr;
}

.gl-bd-header--no-media .gl-bd-header-top {
  border-right: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 991.98px) {
  .gl-bd-header {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .gl-bd-header-top {
    border-right: none;
    border-bottom: 1px solid var(--gl-line);
    padding: 32px 24px;
  }

  .gl-bd-banner {
    min-height: 360px;
  }
}

@media (max-width: 767.98px) {
  .gl-bd-header-top {
    padding: 28px 16px;
  }

  .gl-bd-brand-name {
    font-size: clamp(36px, 12vw, 56px);
    line-height: 0.95;
    margin-bottom: 16px;
  }

  .gl-bd-about-text {
    font-size: 13px;
    line-height: 1.75;
  }

  .gl-bd-banner {
    min-height: 280px;
  }
}

@media (max-width: 479.98px) {
  .gl-bd-banner {
    min-height: 240px;
  }
}