.muth-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 780px) {
  .muth-grid {
    grid-template-columns: 1fr;
  }
}

.muth-card {
  background: linear-gradient(
    140deg,
    rgba(15, 23, 42, 0.96),
    rgba(24, 24, 27, 0.96)
  );
  border-radius: var(--radius-lg);
  padding: 14px 15px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  box-shadow: var(--shadow);
}

.muth-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.muth-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at top, #facc15, #b91c1c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #030712;
}

.muth-name {
  font-weight: 600;
  font-size: 14px;
}

.muth-meta {
  font-size: 11px;
  color: var(--muted);
}

.muth-body {
  font-size: 13px;
  margin: 6px 0 10px;
}

.muth-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(156, 163, 175, 0.9);
  color: #e5e7eb;
}

.badge-apuh {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #facc15, #d97706);
  color: #111827;
  margin-right: 6px;
  box-shadow:
    0 0 0 1px rgba(250, 204, 21, 0.6),
    0 6px 20px rgba(180, 83, 9, 0.55);
}

.badge-apuh::before {
  content: "●";
  font-size: 8px;
}

/* Foto di dalam lingkaran muth-avatar */
.muth-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}
