/** Shopify CDN: Minification failed

Line 63:12 Expected identifier but found whitespace
Line 63:14 Unexpected "{"
Line 63:23 Expected ":"
Line 63:50 Expected ":"
Line 71:12 Expected identifier but found whitespace
Line 71:14 Unexpected "{"
Line 71:23 Expected ":"
Line 71:51 Expected ":"
Line 78:12 Expected identifier but found whitespace
Line 78:14 Unexpected "{"
... and 6 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:studio-hero (INDEX:65, SCOPED:FALSE) */
/* =========================
   BASIS (Mobile & Allgemein)
   ========================= */

.studio-hero {
  position: relative;
  margin-bottom: 3rem;
}

/* Höhe des Hero-Bildes auf MOBILE */
.studio-hero__cover {
  position: relative;
  height: 260px; /* Mobile Höhe */
  overflow: hidden;
}

.studio-hero__cover img {
  width: 100%;
  height: 260px; /* Mobile Bildhöhe */
  object-fit: cover;
}

/* Content-Container */
.studio-hero__content {
  position: relative;
  margin-top: -48px;
  padding: 0 1rem;
  text-align: center;
}

/* Profilbild Mobile */
.studio-hero__profile img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  margin-bottom: 1rem;
}

/* Typografie (aus Editor steuerbar) */
.studio-hero__eyebrow {
  font-size: {{ section.settings.eyebrow_size }}px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #666;
  margin-bottom: .4rem;
}

.studio-hero__headline {
  font-size: {{ section.settings.headline_size }}px;
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.2;
}

.studio-hero__subline {
  font-size: {{ section.settings.subline_size }}px;
  color: #666;
  margin-bottom: 1rem;
}

.studio-hero__description {
  font-size: {{ section.settings.description_size }}px;
  color: #333;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  max-width: none; /* volle Breite der Textbox */
}

/* Buttons */
.studio-hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.studio-hero__button {
  min-width: 220px;
  padding: 1rem 1.8rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
}

.studio-hero__button.primary {
  background: #000;
  color: #fff;
}

.studio-hero__button.secondary {
  background: transparent;
  border: 1px solid #000;
  color: #000;
  opacity: .85;
}


/* =========================
   DESKTOP LAYOUT
   ========================= */

@media (min-width: 768px) {

  /* Gesamthöhe des Hero-Bereichs (HIER steuerst du die Höhe!) */
  .studio-hero__cover {
    height: 45vh; /* z.B. 45vh, 60vh, 70vh */
  }

  /* Bild folgt exakt der Hero-Höhe */
  .studio-hero__cover img {
    width: 100%;
    height: 100%;     /* WICHTIG: nicht mehr px, sondern 100% */
    object-fit: cover;
  }

 .studio-hero__profile {
  position: absolute;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -420px; /* Abstand zur Textbox – hier kannst du feinjustieren */
  z-index: 3;
}

  .studio-hero__profile img {
    width: 260px;     /* Profilbild-Größe Desktop */
    height: 260px;
  }

  /* Text-Card Position */
  .studio-hero__text {
    position: absolute;
    top: 50%;        /* vertikale Zentrierung */
    left: 65%;       /* horizontale Position */
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.96);
    padding: 2.5rem 3rem;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
    max-width: 900px; /* Breite der Textbox */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: left;
  }

  /* Buttons horizontal */
  .studio-hero__buttons {
    flex-direction: row;
    gap: 1.2rem;
  }

  /* Platz nach unten für überlappendes Profilbild */
  .studio-hero {
    margin-bottom: 20rem;
  }
}
/* END_SECTION:studio-hero */