/* =========================
   1. SB SERVICE BASE
========================= */

.sb-service {
  padding: 120px 20px;
  background: #f7f9fa;
}

.sb-service .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================
   2. INTRO LAYOUT
========================= */

.sb-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.sb-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5a60;
  margin-bottom: 20px;
}


/* =========================
   3. STATUS BOX
========================= */

.sb-status-box {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 25px;

  background: rgba(10,108,116,0.05);
  border: 1px solid rgba(10,108,116,0.15);
  border-radius: 16px;

  text-align: center;
}

.sb-status-box h3 {
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.sb-status-time {
  font-weight: 600;
  color: #0a6c74;
  margin-bottom: 10px;
}

.sb-status-note {
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
}


/* =========================
   4. SB STEPS (3 SCHRITTE)
========================= */

.sb-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sb-steps h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.sb-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  align-items: center;
}

/* Bild */

.sb-step img {
  width: 100%;
  border-radius: 10px;

  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Hover Effekt */

.sb-step:hover img {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Text */

.step-text strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.step-text p {
  margin: 0;
  color: #4a5a60;
  line-height: 1.5;
}


/* =========================
   5. EMBED
========================= */

.sb-embed {
  text-align: center;
  margin-top: 100px;
}

.sb-embed h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.embed-container {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 30px;

  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================
   7. RESPONSIVE
========================= */

@media (max-width: 900px) {
  .sb-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .embed-container {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .sb-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sb-step img {
    max-width: 200px;
    margin: 0 auto;
  }
}