/**
 * widgets-hero.css - Hero und Suchbereich (V2-Vorlage index_v19.html)
 */
.base-home-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.base-hero {
  min-height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 60px;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.base-hero-search-focused {
  transform: scale(0.98);
  opacity: 0.9;
}

.hero--search-focused {
  transform: scale(0.98);
  opacity: 0.9;
}

.base-hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.base-home-hero {
  min-height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px 60px;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.base-home-hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin-top: 0;
}

.base-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-hero-badge-gradient-start), var(--color-hero-badge-gradient-end));
  border: 1px solid var(--color-hero-badge-border);
  border-radius: 50px;
  font-family: var(--font-primary);
  font-style: var(--font-style-normal);
  font-size: var(--font-size-hero-badge);
  font-weight: var(--font-weight-hero-badge);
  color: var(--color-orange);
  text-transform: var(--text-transform-hero-badge);
  letter-spacing: var(--letter-spacing-hero-badge);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease;
}

.base-hero-badge-icon {
  width: 16px;
  height: 16px;
}

.base-hero-subtitle {
  font-family: var(--font-secondary);
  font-style: var(--font-style-normal);
  font-size: var(--font-size-hero-subtitle);
  font-weight: var(--font-weight-hero-subtitle);
  line-height: var(--line-height-base);
  color: var(--color-gray-50);
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.base-quick-suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@media (max-width: 768px) {
  .base-hero {
    min-height: calc(100vh - 88px);
    padding: 100px 20px 40px;
  }
  .base-home-hero {
    min-height: calc(100vh - 88px);
    padding: 0 20px 40px;
  }
  .base-quick-suggestions {
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .base-hero {
    min-height: auto;
    padding: 72px 16px 32px;
  }

  .base-home-hero {
    min-height: auto;
    padding: 0 16px 32px;
  }

  .base-search-results-wrapper {
    overflow-x: hidden;
    max-width: 100%;
  }
}

.base-search-results-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: visible;
}

/**
 * V2-Vorlage briefing/vorlage/v2/index_v19.html: gleiche Abmessungen wie base-hero, Klassennamen wie im Prototyp.
 */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 60px;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-hero-badge-gradient-start), var(--color-hero-badge-gradient-end));
  border: 1px solid var(--color-hero-badge-border);
  border-radius: 50px;
  font-family: var(--font-primary);
  font-style: var(--font-style-normal);
  font-size: var(--font-size-hero-badge);
  font-weight: var(--font-weight-hero-badge);
  color: var(--color-orange);
  text-transform: var(--text-transform-hero-badge);
  letter-spacing: var(--letter-spacing-hero-badge);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge-icon {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-primary);
  font-style: var(--font-style-normal);
  font-size: var(--font-size-hero-title);
  font-weight: var(--font-weight-hero-title);
  color: var(--color-anthracite);
  line-height: var(--line-height-hero-title);
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title-accent {
  color: var(--color-orange);
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-style: var(--font-style-normal);
  font-size: var(--font-size-hero-subtitle);
  font-weight: var(--font-weight-hero-subtitle);
  line-height: var(--line-height-base);
  color: var(--color-gray-50);
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 40px;
  }

  .hero-title {
    font-size: var(--font-size-hero-title-mobile);
  }
}
