/**
 * Styles for the X-style Author Profile Page
 */
.author-profile-header-x {
    position: relative;
    margin-bottom: 2rem;
}

.author-cover-photo {
    height: 200px;
    background-color: #e5e7eb; /* Fallback color */
    background-image: linear-gradient(45deg, #dbeafe, #c4b5fd); /* Fallback gradient */
    background-size: cover;
    background-position: center;
}

.author-header-content {
    position: relative;
}

.author-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Avatar di atas, tombol di bawahnya */
    min-height: 65px; /* Setengah dari tinggi avatar, agar konten di bawahnya tidak tertimpa */
}

.author-avatar-x {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid #fff; /* Border putih di sekeliling avatar */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: -65px; /* Kunci untuk efek tumpang tindih */
    background-color: #fff;
    flex-shrink: 0;
}

.author-avatar-x img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
}

.author-actions .social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-light);
    transition: all 0.2s ease;
}

.author-actions .social-icon-link:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.author-actions .social-icon-link svg {
    width: 20px;
    height: 20px;
}

.author-details-x {
    padding: 0.5rem 0;
}

.author-name-x {
    font-size: 1.3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    margin: 0;
}

.author-handle-x {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    display: block;
}

.author-bio-x p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive untuk Mobile --- */
@media (max-width: 767px) {
    .author-cover-photo {
        height: 120px;
    }
    .author-header-top {
        flex-direction: column;
        min-height: 45px;
    }
    .author-avatar-x {
        width: 75px;
        height: 76px;
        margin-top: -50px;
        border-width: 3px;
    }
    
    .author-actions .social-icon-link {
        width: 30px;
        height: 30px;
    }
    .author-actions {
        width: 100%;
        justify-content: flex-end; /* Tombol di kanan */
        padding-top: 0;
        margin-top: -35px; /* Tarik ke atas agar sejajar avatar */
    }
    .author-details-x {
        padding-top: 0.5rem;
    }
    .author-name-x {
        font-size: 17px;
    }
    .author-handle-x {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    .author-bio-x p {
        font-size: 14px;
    }
}