
{% scope_css %}

.custom-hero {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 600px;
  padding: 100px;
  margin-bottom: 100px;
  color: #fff;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}

.custom-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90.58deg, #000000 20.29%, rgba(129, 39, 96, 0) 107.82%);
  z-index: 1;
}

.custom-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.custom-hero__headline {
  margin: 0 0 40px 0;
  font-size: 48px;
  line-height: 1.05;
  color: #fff;
}

/* Tags */
.tag-repeater {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 20px 0;
  justify-content: flex-start;
}

.tag-repeater__tag {
  padding: 8px 26px 6px;
  border-radius: 30px;
  white-space: nowrap;
  font-size: 16px; /* Desktop: nicht verkleinern */
  line-height: 1.2;

  background-color: #f4f4f4;
  color: #000;
}

.custom-hero__text {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
}

/* Mobile optimization */
@media (max-width: 767px) {
  .custom-hero {
    padding: 40px 24px;
    min-height: auto;
    margin-bottom: 60px;
  }

  .custom-hero__headline {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .tag-repeater {
    gap: 10px;
    margin-bottom: 16px;
  }

  .tag-repeater__tag {
    font-size: 14px; /* nur Mobile kleiner */
  }

  .custom-hero__text {
    font-size: 16px;
    line-height: 1.5;
  }
}

{% end_scope_css %}
