/* ==========================================================================
   HERO CENTERED
   ========================================================================== */

.btjek-hero-centered {
  text-align: center;
  padding: 80px 0;
}

.btjek-hero-centered--offwhite {
  background: var(--btjek-offwhite);
}

.btjek-hero-centered--dark {
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 100%);
}

.btjek-hero-centered--dark h1,
.btjek-hero-centered--dark h2,
.btjek-hero-centered--dark .btjek-hero-centered__subtitle {
  color: var(--btjek-white);
}

.btjek-hero-centered--dark .btjek-hero-centered__subtitle {
  opacity: 0.85;
}

.btjek-hero-centered__inner {
  max-width: 720px;
  margin: 0 auto;
}

.btjek-hero-centered__inner h1,
.btjek-hero-centered__inner h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--btjek-heading);
  margin: 12px 0;
  line-height: 1.2;
}

.btjek-hero-centered__subtitle {
  font-size: 18px;
  color: var(--btjek-muted);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.btjek-hero-centered__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .btjek-hero-centered {
    padding: 48px 0;
  }
  .btjek-hero-centered__inner h1,
  .btjek-hero-centered__inner h2 {
    font-size: 26px;
  }
  .btjek-hero-centered__subtitle {
    font-size: 16px;
  }
}


