/*THIN KATEGORIE*/

.cfg-banner-thin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 18px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  flex-wrap: wrap;
  font-family: inherit;
}

.cfg-banner-thin__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cfg-banner-thin__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cfg-banner-thin__title {
  font-weight: 600;
  font-size: 1.4rem;
  color: #222;
  flex: 1 1 auto;
  min-width: 160px;
}

.cfg-banner-thin__steps {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.cfg-step-thin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  color: #333;
  white-space: nowrap;
}

.cfg-step-thin .cfg-num {
  background: #DDA756;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cfg-btn-thin {
  background: #DDA756;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.cfg-btn-thin:hover {
  background: #333;
color:white;
}

@media (max-width: 768px) {
  .cfg-banner-thin {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  .cfg-banner-thin__steps {
    gap: 0.6rem;
  }
}
