.step-container {
  display: flex;
  align-items: center; /* Ini yang menjaga agar teks sejajar tengah vertikal */
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap; /* Agar responsif di layar kecil */
}

.step-container img {
  width: 600px;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-container div {
  flex: 1;
  min-width: 260px; /* agar tidak terlalu sempit saat responsif */
}

.step-container h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: left; /* Ini yang mencegah <h3> center */
}

/* .md-sidebar--secondary {
  display: none !important;
} */

.md-content {
  background: #fff; /* kasih background putih biar shadow kelihatan */
  padding: 20px; /* beri jarak dalam */
  border-radius: 10px; /* sudut membulat */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* shadow */
}

.md-grid {
  max-width: none !important;
  width: 98% !important;
}

/* CSS Note */
/* Reset style admonition bawaan */
.md-typeset .admonition,
.md-typeset details {
  border: none !important;
  border-radius: 10px;
  padding: 0.8em 1em;
  margin: 1em 0;
  background: #e6f3fc; /* biru lembut */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Judul admonition */
.md-typeset .admonition-title,
.md-typeset details summary {
  font-weight: bold;
  font-size: 0.95em;
  margin-bottom: 0.4em;
  padding-left: 2em;
  position: relative;
  background: none;
  border: none;
}
