.struktur-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.struktur-container h1 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #1f2937;
}

.level {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.node {
  width: 160px;
  background: #f9fafb;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.node img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s;
}

.node:hover img {
  transform: scale(1.1);
}

.title {
  font-weight: bold;
  margin-top: 10px;
  color: #047857;
  font-size: 14px;
}

.name {
  font-size: 13px;
  color: #374151;
}

/* Garis */
.line-vertical {
  width: 2px;
  height: 30px;
  background: #999;
  margin: auto;
}

.line-horizontal {
  width: 80%;
  height: 2px;
  background: #999;
  margin: auto;
}

.struktur-container {
  padding: 20px;
}

.struktur-container .card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
