/* =========================================
   KONTRIBUTOR DETAIL PAGE (SCOPED SAFE)
========================================= */

.kontributor-page {
    font-family: 'Georgia', 'Garamond', serif;
    background-color: #fafaf8;
    color: #333;
}

/* Layout */
.kontributor-page .container-detail {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.kontributor-page .sidebar {
    width: 200px;
    padding: 40px 20px;
    border-right: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    height: 100vh;
}

.kontributor-page .sidebar-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #4a7a8f;
    text-decoration: underline;
    font-family: 'Arial', sans-serif;
}

/* Main Content */
.kontributor-page .main-content {
    flex: 1;
    padding: 50px 100px;
}

/* Header */
.kontributor-page .header {
    margin-bottom: 40px;
}

.kontributor-page .author-name {
    font-size: 44px;
    font-weight: 400;
    border-bottom: 2px solid #999;
    padding-bottom: 12px;
    letter-spacing: 2px;
}

/* Bio */
.kontributor-page .bio-section {
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 15px;
}

.kontributor-page .author-bold {
    font-weight: 700;
}

/* Section Title */
.kontributor-page .section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 40px 0 50px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #999;
    font-family: 'Arial', sans-serif;
}

/* Works */
.kontributor-page .works {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.kontributor-page .work-item {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Image */
.kontributor-page .work-image {
    width: 230px;
    height: 190px;
    background-color: #a8b5cc;
    overflow: hidden;
    flex-shrink: 0;
}

.kontributor-page .work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info */
.kontributor-page .work-info {
    flex: 1;
    padding-top: 40px;
}

.kontributor-page .work-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 6px;
    font-family: 'Arial', sans-serif;
}

.kontributor-page .work-title {
    font-size: 16px;
    font-weight: 700;
}

.kontributor-page .work-title a {
    text-decoration: none;
    color: #333;
}

.kontributor-page .work-title a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

    .kontributor-page .container-detail {
        flex-direction: column;
    }

    .kontributor-page .sidebar {
        position: static;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .kontributor-page .main-content {
        padding: 30px 20px;
    }

    .kontributor-page .author-name {
        font-size: 28px;
    }

    .kontributor-page .work-item {
        flex-direction: column;
        gap: 20px;
    }

    .kontributor-page .work-image {
        width: 100%;
        height: 220px;
    }
}
.bio-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* FOTO */
.bio-image {
    flex: 0 0 100px;
}

.bio-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* bikin bulat */
    object-fit: cover;
    /* biar tidak gepeng */
    object-position: center;
    display: block;
}

/* DESKRIPSI */
.bio-content {
    flex: 1;
}

.author-bold {
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bio-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bio-image {
        max-width: 200px;
    }
}