/* Struktur organisasi — halaman publik & admin */
.pengurus-struktur-page {
    margin: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #f4f6f8;
    color: #1a1a1a;
    line-height: 1.5;
}
.ps-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}
.ps-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.ps-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}
.ps-brand img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.ps-nav a {
    margin-left: 12px;
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.ps-nav a:hover { text-decoration: underline; }
.ps-main { max-width: 1100px; margin: 0 auto; padding: 24px 16px 48px; }
.ps-hero { text-align: center; margin-bottom: 32px; }
.ps-hero h1 { margin: 0 0 8px; font-size: 1.75rem; }
.ps-hero-sub { font-size: 1.1rem; color: #374151; margin: 0; }
.ps-hero-meta { color: #6b7280; font-size: 0.9rem; margin: 6px 0 0; }
.ps-section { margin-bottom: 36px; }
.ps-section-title { font-size: 1.15rem; margin: 0 0 6px; color: #111827; }
.ps-section-desc { color: #6b7280; font-size: 0.9rem; margin: 0 0 16px; }
.ps-section-muted {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
}
.ps-footer {
    text-align: center;
    padding: 20px 16px;
    color: #9ca3af;
    font-size: 0.85rem;
    border-top: 1px solid #e5e7eb;
}

.pengurus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.pengurus-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: box-shadow .2s;
}
.pengurus-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.pengurus-card-photo {
    position: relative;
    background: linear-gradient(135deg, #ecfdf5, #dbeafe);
    padding: 20px;
    text-align: center;
}
.pengurus-card-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.pengurus-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #2563eb;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.pengurus-card-body { padding: 16px 18px 18px; }
.pengurus-card-jabatan {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #059669;
}
.pengurus-card-nama {
    margin: 4px 0 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}
.pengurus-card-bidang {
    font-size: 0.88rem;
    color: #374151;
    margin-bottom: 8px;
}
.pengurus-card-meta {
    font-size: 0.84rem;
    color: #6b7280;
    margin-top: 4px;
}
.pengurus-card-meta a { color: #2563eb; text-decoration: none; }
.pengurus-card-meta a:hover { text-decoration: underline; }
.pengurus-card-alamat { line-height: 1.35; }

.pengurus-struktur-admin .pengurus-grid { margin-bottom: 8px; }

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