/* ==========================================================================
   FOR CRAFTSMEN (Dark Recruitment CTA)
   ========================================================================== */

.btjek-for-craftsmen {
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 100%);
  color: var(--btjek-white);
  overflow: hidden;
}

.btjek-for-craftsmen__inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

.btjek-for-craftsmen__image-col {
  flex: 1;
  position: relative;
}

.btjek-for-craftsmen__image-col img {
  width: 100%;
  border-radius: var(--btjek-radius-md);
  object-fit: cover;
}

.btjek-for-craftsmen__content {
  flex: 1;
}

.btjek-for-craftsmen__content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--btjek-white);
  margin: 8px 0 12px;
}

.btjek-for-craftsmen__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 20px;
}

.btjek-for-craftsmen__benefits {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.btjek-for-craftsmen__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}

.btjek-for-craftsmen__benefit-icon {
  color: var(--btjek-green);
  font-size: 18px;
  flex-shrink: 0;
}

.btjek-for-craftsmen__badge {
  position: absolute;
  background: var(--btjek-white);
  border-radius: var(--btjek-radius);
  padding: 10px 16px;
  box-shadow: var(--btjek-shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--btjek-heading);
}

.btjek-for-craftsmen__badge--1 {
  bottom: 20px;
  left: -12px;
}

.btjek-for-craftsmen__badge--2 {
  top: 20px;
  right: -12px;
}

.btjek-label--light {
  background: rgba(255,255,255,0.15);
  color: var(--btjek-white);
}

@media (max-width: 768px) {
  .btjek-for-craftsmen__inner {
    flex-direction: column;
  }
  .btjek-for-craftsmen__badge {
    display: none;
  }
}


