/* ==========================================================================
   FEATURE COLUMNS (3 or 4 col)
   ========================================================================== */

.btjek-features__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.btjek-features__grid {
  display: grid;
  gap: var(--btjek-gap);
}

.btjek-features__grid--2 { grid-template-columns: repeat(2, 1fr); }
.btjek-features__grid--3 { grid-template-columns: repeat(3, 1fr); }
.btjek-features__grid--4 { grid-template-columns: repeat(4, 1fr); }

.btjek-feature-card {
  background: var(--btjek-white);
  border: 1px solid var(--btjek-border);
  border-radius: var(--btjek-radius-md);
  padding: 32px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.btjek-feature-card:hover {
  box-shadow: var(--btjek-shadow-hover);
  transform: translateY(-2px);
}

.btjek-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--btjek-radius);
  background: var(--btjek-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.btjek-feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--btjek-primary);
}

.btjek-feature-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.btjek-feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--btjek-muted);
  margin: 0;
  max-width: none;
}

/* Center-aligned variant */
.btjek-features--centered .btjek-feature-card {
  text-align: center;
}
.btjek-features--centered .btjek-feature-card__icon {
  margin: 0 auto 16px;
}

@media (max-width: 768px) {
  .btjek-features__grid--3,
  .btjek-features__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .btjek-features__grid--2,
  .btjek-features__grid--3,
  .btjek-features__grid--4 {
    grid-template-columns: 1fr;
  }
}


