/* ==========================================================================
   HERO ELEMENT
   ========================================================================== */

.btjek-hero {
  position: relative;
  overflow: hidden;
}

.btjek-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--btjek-gap);
  align-items: center;
  min-height: 480px;
}

.btjek-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btjek-hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btjek-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--btjek-muted);
}

.btjek-hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--btjek-green);
}

.btjek-hero h1 {
  font-size: 42px;
  margin: 0;
}

.btjek-hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--btjek-muted);
  max-width: 520px;
  margin: 0;
}

.btjek-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btjek-hero__image {
  position: relative;
  border-radius: var(--btjek-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.btjek-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark variant */
.btjek-hero--dark {
  background: var(--btjek-heading);
}
.btjek-hero--dark h1,
.btjek-hero--dark .btjek-hero__subtitle,
.btjek-hero--dark .btjek-hero__badge,
.btjek-hero--dark .btjek-label {
  color: #fff;
}
.btjek-hero--dark .btjek-hero__subtitle {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .btjek-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
  }
  .btjek-hero h1 { font-size: 28px; }
  .btjek-hero__image { order: -1; }
}


