/* ==========================================================
   CUSTOM ORG CHART STYLING (YAYASAN PANDHEGA JAYA - dg10.css)
   ========================================================== */

.dg-tree-section {
    background-color: var(--surface-white);
    padding: 6rem 1rem;
    font-family: 'Source Sans 3', sans-serif;
}

.dg-tree-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2rem;
}

.dg-org-tree {
    display: flex;
    justify-content: center;
    min-width: max-content;
    margin: 0 auto;
}

.dg-org-tree ul {
    padding-top: 25px; 
    position: relative;
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.dg-org-tree li {
    position: relative;
    padding: 25px 12px 0 12px;
    text-align: center;
}

/* Garis Penghubung Pohon (Menggunakan var(--secondary-gold)) */
.dg-org-tree li::before, .dg-org-tree li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 2px solid var(--secondary-gold);
    width: 50%;
    height: 25px;
}

.dg-org-tree li::after {
    right: auto;
    left: 50%;
    border-left: 2px solid var(--secondary-gold);
}

.dg-org-tree li:only-child::after, .dg-org-tree li:only-child::before {
    display: none;
}

.dg-org-tree li:only-child {
    padding-top: 0;
}

.dg-org-tree li:first-child::before, .dg-org-tree li:last-child::after {
    border: 0;
}

.dg-org-tree li:last-child::before {
    border-right: 2px solid var(--secondary-gold);
    border-radius: 0 6px 0 0;
}

.dg-org-tree li:first-child::after {
    border-radius: 6px 0 0 0;
}

.dg-org-tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 2px solid var(--secondary-gold);
    width: 0;
    height: 25px;
    margin-left: -1px;
}

/* KARTU STRUKTUR */
.dg-tree-node-box {
    background: var(--surface-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow-color);
    display: inline-block;
    min-width: 180px;
    border: 1px solid var(--border-line);
    transition: transform 0.3s ease;
}

.dg-tree-node-box:hover {
    transform: translateY(-4px);
}

/* Foto Bulat di atas kartu */
.dg-single-photo {
    padding: 15px 15px 5px 15px;
    display: flex;
    justify-content: center;
}

.dg-single-photo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-line);
}

/* Khusus Pembina (2 Foto Berjajar) */
.dg-dual-photos {
    padding: 15px 15px 5px 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dg-dual-photos img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-line);
}

/* Bagian Teks Info & Kotak Warna Primary/Maroon Khas */
.dg-tree-info {
    background-color: var(--primary-red);
    padding: 14px 12px;
}

.dg-tree-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.dg-tree-info span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bg-cream);
    display: block;
    opacity: 0.9;
}