/* ═══════════════════════════════════════════
   Thm-Samsung-v4 — Steps Timeline
   ═══════════════════════════════════════════ */

.fl-v4-timeline-steps {
  position: relative;
  margin-bottom: 28px;
  padding-left: 40px;
}

.fl-v4-timeline-steps::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #333333;
}

.fl-v4-timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 8px;
  background: #1e1e1e;
  border: 1px solid #333333;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fl-v4-timeline-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fl-v4-timeline-marker {
  position: absolute;
  left: -40px;
  top: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 68, 68, 0.15);
  border: 2px solid rgba(255, 68, 68, 0.3);
  color: #ff6b6b;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-v4-timeline-content h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.fl-v4-timeline-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d4d4d4;
}

@media (max-width: 768px) {
  .fl-v4-timeline-steps {
    padding-left: 30px;
  }
  .fl-v4-timeline-marker {
    left: -30px;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}