.authorPage{
    max-width:1200px;
    margin:auto;
    padding:8px;
}

.authorTop{
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius:12px;
    padding:30px;
    margin-bottom:30px;
}

.authorFlex{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}


.profileImageWrapper{
    position:relative;
    width:110px;
    height:110px;
    flex-shrink:0;
}

.authorImage{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--border);
    display:block;
}

.imageOverlay{
    position:absolute;
    inset:0;
    border-radius:50%;
    height:110px;
    background:rgba(0,0,0,0.55);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:24px;
    cursor:pointer;
    opacity:0;
    transition:0.2s;
    backdrop-filter:blur(3px);
}

.profileImageWrapper:hover .imageOverlay{
    opacity:1;
}

@media(max-width:700px){

    .profileImageWrapper{
        width:85px;
        height:85px;
    }
    .imageOverlay{
        height:85px;
    }
    .authorTop{
    padding:15px;
}
.authorFlex{
    gap:18px;
}

}

.authorName{
    font-size:32px;
    font-weight:700;
}

.authorUsername{
    color:#888;
    margin-top:6px;
    font-size:15px;
}

.authorMeta{
    color:#888;
    margin-top:6px;
}


.tabs{
    display:flex;
    gap:12px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.tabBtn{
    border:none;
    background: var(--bg-gradient);
    color: var(--text-muted);
    padding:12px 18px;
    border-radius:10px;
    cursor:pointer;
    /* transition:0.2s; */
}

.tabBtn.active{
    background: var(--text-soft);
    color: var(--bg-soft);
    font-weight:700;
}

.tabContent{
    display:none;
}

.tabContent.active{
    display:block;
}

.contentCard{
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius:12px;
    padding:24px;
    margin-bottom:18px;
}

.contentTitle{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.contentMeta{
    color:var(--text-muted);
    font-size:14px;
    margin-bottom:15px;
}

.contentPreview{
    color:var(--text-soft);
    line-height:1.7;
    overflow-wrap:anywhere;
}

.cardActions{
    margin-top:20px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.actionBtn{
    background: var(--bg-dropdown);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding:10px 16px;
    border-radius:12px;
    text-decoration:none;
    cursor:pointer;
}

.actionBtn:hover{
    text-decoration:none
}

.deleteBtn{
    background:var(--btn-delete);
    border:1px solid var(--border);
    color:var(--text-delete)
}


@media(max-width:700px){

    .authorName{
        font-size:24px;
    }

    .authorImage{
        width:85px;
        height:85px;
    }

    .tabs{
        overflow:auto;
        flex-wrap:nowrap;
    }

    .tabBtn{
        white-space:nowrap;
    }
}
