.struktur-hero {
    background: linear-gradient(135deg, var(--primary-color, #F8B803) 0%, #d69a00 100%);
    padding: 100px 20px 60px;
    text-align: center;
    color: white;
}

.struktur-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.struktur-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.org-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.org-section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--text-color, #333);
    font-weight: 700;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.org-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.org-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color, #F8B803);
    flex-shrink: 0;
}

.org-info {
    margin-left: 20px;
}

.org-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #222;
    font-weight: 700;
}

.org-info .jabatan {
    color: var(--primary-color, #F8B803);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: inline-block;
}

.org-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.org-info p i {
    width: 16px;
    text-align: center;
    color: #888;
}

@media (max-width: 768px) {
    .org-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .org-info {
        margin-left: 0;
        margin-top: 20px;
    }
    .org-info p {
        justify-content: center;
    }
}
