.hero-fiselerie {
  position: relative;
  min-height: 680px;
  background-image: url('/wp-content/uploads/hero-fiselerie.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 59, 67, .92) 0%,
    rgba(18, 59, 67, .65) 45%,
    rgba(18, 59, 67, .20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
}

.hero-kicker {
  display: inline-block;
  color: var(--fisel-yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(58px, 9vw, 118px);
  line-height: .9;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.hero-content p {
  font-size: clamp(24px, 3vw, 38px);
  max-width: 720px;
  line-height: 1.15;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-button {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.hero-button.primary {
  background: var(--fisel-orange);
  color: #fff;
}

.hero-button.secondary {
  background: #fff;
  color: var(--fisel-teal-dark);
}