.author-page{
    display: flex;
    gap: 3rem;
}

.author-info{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 372px;
    flex-shrink: 0;
    border: 1px solid #ECECEC;
    border-radius: 24px;
    padding: 1.5rem;
    height: fit-content;
}

.tf-post-card{
    max-width:300px;
}

.author-avatar{
    align-self: center;
}

.author-name{
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0px;
}

.author-posts-count{
    font-weight: 300;
    font-size: 15px;
}

.author-bio{
    font-weight: 500;
    font-size: 14px;
    color: #000
}

.author-posts-title{
    font-weight: 700;
    font-size: 20px;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 0.5rem;
}

.author-posts-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem;
}

.author-socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem; 
    margin-top: 20px; 
}

.author-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #F5F5F7;
    width: 50px;
    height: 50px;
}

@media (max-width: 768px) {
    .author-page {
        flex-direction: column;
        gap: 2rem;
    }

    .author-info{
        max-width: 100%;
    }

    .author-posts-list{
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }
    
    .author-posts-title{
        font-weight: 500;
        font-size: 16px;
    }
}