
:root {
   --primary: #b91c1c;
   --primary-dark: #7f1d1d;
   --bg: #f8fafc;
   --text: #1e293b;
   --text-light: #64748b;
   --white: #ffffff;
   --border: #e2e8f0;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
body { background: var(--bg); color: var(--text); line-height: 1.6; }
.pengurus{
   .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
   .header-pengurus { background: var(--white); border-bottom: 1px solid var(--border); }
   .pengurus-hero { padding: 40px 0; text-align: center; }
   .pengurus-hero h1 { font-size: 2rem; color: var(--primary); font-weight: 900; margin-bottom: 8px; }
   .pengurus-hero p { color: var(--text-light); max-width: 700px; margin: 0 auto; }
   .section { padding: 40px 0; }
   .section-title { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
   .section-title h2 { font-size: 1.3rem; font-weight: 800; color: var(--text); }
   .section-title small { color: var(--text-light); }
   .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
   .grid-wide { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
   .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: border-color 0.2s, transform 0.2s;
   }
   .card:hover { border-color: #d1d5db; transform: translateY(-2px); }
   .avatar {
      width: 64px; height: 64px; border-radius: 50%;
      background: #eef2f7; object-fit: cover; flex-shrink: 0;
      border: solid 5px aliceblue;
   }
   .info { display: flex; flex-direction: column; gap: 4px; }
   .name {
      font-weight: 500;
      color: var(--text);
      font-size: 0.9rem;
   }
   .role { font-size: 0.9rem; color: var(--text-light); }
   .badge {
      display: inline-block; background: #fee2e2; color: var(--primary);
      border: 1px solid #fecaca; border-radius: 999px; padding: 4px 10px; font-size: 0.8rem; font-weight: 700;
      width: fit-content;
   }
   .lead-card .avatar { width: 80px; height: 80px; }
   .lead-card .name { font-size: 1.1rem; }
   .group { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
   .group h3 { font-size: 1rem; color: var(--text); margin-bottom: 12px; font-weight: 800; }
   .mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
   .mini-card { border: 1px solid var(--border); border-radius: 10px; padding: 12px; display: flex; align-items: center; gap: 10px; background: #fff; }
   .mini-card .avatar { width: 48px; height: 48px; }
   .mini-card .name { font-size: 0.95rem; }
   .mini-card .role { font-size: 0.85rem; }
   .bidang-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
   .bidang-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
   .bidang-header { display: flex; justify-content: space-between; align-items: center; }
   .bidang-title { font-weight: 500; color: var(--text); }
   .bidang-roles { display: grid; grid-template-columns: 1fr; gap: 10px; }
   .bidang-row { display: flex; align-items: center; gap: 10px; }
   .bidang-row .avatar { width: 40px; height: 40px; }
   .bidang-row .name { font-size: 0.95rem; }
   .bidang-row .role { font-size: 0.85rem; }
   @media (max-width: 768px) {
      .lead-card { padding: 14px; }
      .avatar { width: 56px; height: 56px; }
   }
}