.gto-tokoh-single {
    --gto-gold: #b8893a;
    --gto-brown: #4b3217;
    --gto-soft: #fff9ef;
    --gto-line: #eadcc7;
    margin: 0 auto;
}

.gto-tokoh-hero {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin: 0 0 32px;
}

.gto-tokoh-photo {
    position: relative;
    width: min(100%, 320px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f7ead4, #fbfbfb);
    border: 8px solid #fff;
    box-shadow: 0 18px 42px rgba(50, 32, 14, 0.18);
    transition: border-radius 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.gto-tokoh-photo:hover,
.gto-tokoh-card-link:hover .gto-tokoh-photo {
    border-radius: 18px;
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(50, 32, 14, 0.22);
}

.gto-tokoh-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gto-tokoh-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #80674b;
    font-weight: 700;
}

.gto-tokoh-data-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--gto-soft) 100%);
    border: 1px solid var(--gto-line);
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(77, 49, 19, 0.10);
    padding: clamp(18px, 3vw, 28px);
}

.gto-tokoh-data-card h2 {
    margin: 0 0 18px;
    color: var(--gto-brown);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.2;
}

.gto-tokoh-data-card dl {
    margin: 0;
    display: grid;
    gap: 0;
}

.gto-tokoh-data-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid rgba(184, 137, 58, 0.22);
}

.gto-tokoh-data-row:first-child {
    border-top: 0;
}

.gto-tokoh-data-row dt {
    font-weight: 800;
    color: var(--gto-brown);
}

.gto-tokoh-data-row dd {
    margin: 0;
    color: #3d3328;
}

.gto-tokoh-muted {
    color: #80674b;
    font-size: 0.95em;
}

.gto-tokoh-content {
    clear: both;
}

.gto-tokoh-grid {
    --gto-grid-gap: 22px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--gto-grid-gap);
    margin: 28px 0;
}

.gto-tokoh-card {
    min-width: 0;
}

.gto-tokoh-card-link {
    display: block;
    height: 100%;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eadcc7;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(50, 32, 14, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gto-tokoh-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(50, 32, 14, 0.14);
    border-color: #d6b06f;
}

.gto-tokoh-card .gto-tokoh-photo {
    width: min(100%, 180px);
    margin: 0 auto 14px;
    border-width: 5px;
}

.gto-tokoh-card h3 {
    margin: 0 0 6px;
    color: #4b3217;
    font-size: 1rem;
    line-height: 1.35;
}

.gto-tokoh-card p {
    margin: 0;
    color: #80674b;
    font-weight: 600;
}

.gto-tokoh-empty {
    padding: 18px;
    border: 1px dashed #d7c4a8;
    border-radius: 14px;
    background: #fff9ef;
}

@media (max-width: 1200px) {
    .gto-tokoh-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .gto-tokoh-hero {
        grid-template-columns: 1fr;
    }

    .gto-tokoh-photo {
        margin-inline: auto;
    }

    .gto-tokoh-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gto-tokoh-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .gto-tokoh-data-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 420px) {
    .gto-tokoh-grid {
        grid-template-columns: 1fr;
    }
}
