@media only screen and (max-width: 1200px) {
    
    #profileCentric {
        width: 100% !important;
    }

    #mainCont {
        width: 90% !important;
    }

}

@media only screen and (max-width: 1096px) {
    
    #profileCentric {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        min-width: 0px !important;
    }

    #interests {
        display: none !important;
    }

    #leftColumn {
        width: 80% !important;
    }

    #mainCont {
        margin: 64px auto auto auto !important;
        width: 80% !important;
    }

    #centerWrapper {
        width: unset !important;
    }

    #topScroller {
        padding-left: 0px !important;
    }

    .topScrollButton {
        min-width: 75px;
        width: unset !important;
    }

}

@media only screen and (max-width: 776px) {
    
    .rightArticleImageWrapper {
        display: none !important;
    }

    .rightSectionArticleRightContent {
        width: 100% !important;
    }

    #articleContent {
        row-gap: 240px !important;
    }

    .rightSectionArticle {
        margin-top: 12px !important;
    }

    #topScroller {
        justify-content: center !important;
    }

    .topScrollButton {
        margin: auto !important;
        min-width: 50px !important;
        padding: 12px 6px 12px 6px !important;
        font-size: 80%;
    }

    #articleContent, #commentsContent, #likesContent, #followingContent {
        padding: 12px 0px 0px 0px !important;
        margin: auto !important;
    }

    .noContent {
        margin-top: 100px !important;
    }

    .userNamePartial {
        font-size: 1.2rem !important;
        margin-bottom: 0px !important;
    }

    .userBio {
        margin-top: 0px !important;
        font-size: 0.8rem !important;
    }

    .rightUserPartialContent {
        margin: auto 0px auto 0px !important;
        position: relative;
        bottom: 2px;
    }

    .userContainerWrapper {
        gap: 12px !important;
    }

    .userPartialImage {
        height: 50px;
        width: 50px;
    }

}

@media only screen and (max-width: 495px) {
    
    #mainCont {
        width: 90% !important;
    }

    #profileCentric {
        width: 100% !important;
    }

}

#profilePicture {
    border-radius: 50%;
    height: 200px;
    width: 200px;
    object-fit: cover;
}

#profileCentric {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0px auto auto auto;
    gap: 0.5px;
    align-items: stretch;
    height: 100%;
    width: 80%;
    min-width: 1000px;
}

#leftColumn {
    width: 500px;
}

#centerWrapper {
    background-color: white;
    width: 100%;
}

#topScroller {
    padding-left: 48px;
    border-bottom: 1px solid rgb(216, 216, 216);
}

#topScrollgit {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap !important;
}

.topScrollButton {
    background: none;
    outline: none;
    border: none;
    height: 100%;
    margin: 0px;
    width: 120px;
    padding: 12px;
}

.selectedButton {
    border-bottom: 0.5px solid rgb(156, 156, 156);
}

#linebreakV {
    display: block;
    height: 100%;
    width: 1px !important;
    background-color: rgb(197, 197, 197);
}

.interestBoxImage {
    height: 30px;
    width: 30px;
}

#interests {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
}

.interestBox {
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    
    padding: 6px 12px 6px 12px;
    background: #f6f9fc;
    border: 1px solid #ccd1d6;
    border-radius: 20px;
    font-size: 14px;
    width: 225px;
    transition-duration: 0.2s;
}

.interestBox:hover {
    cursor: pointer;
    border: 1px solid rgb(134, 166, 255);
}

#bigName {
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin: 14px 0px 0px 0px;
}

#username {
    margin: 0px auto auto 0px !important;
    font-family: 'Inter', sans-serif;
    color: rgb(161, 161, 161);
}


#followButton {
    margin: 6px auto auto 0px;
    background-color: var(--tertiary);
    border-radius: 12px;
    border: 1px solid var(--tertiary);
    color: white;
    width: 260px;
    padding-top: 7px;
    padding-bottom: 7px;
}

#interests {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 12px;
    margin-top: 28px;
}

#topAuthorCont {
    background-color: white;
}

#authorBio {
    margin-top: 22px;
    color: grey;
    margin-right: 18px;
}

.interestBoxText {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    color: rgb(34, 34, 34);
    margin: auto auto auto 0px;
}

#articleContent, #commentsContent, #likesContent, #followingContent {
    padding: 24px 0px 0px 28px;
}

#commentsContent, #likesContent, #followingContent {
    display: none;
}

.noContent {
    margin: 140px auto auto auto;
}

.noContentTitle {
    font-size: 1.2rem;
    margin: auto;
    text-align: center;
    font-family: 'PT Serif', sans-serif;
}

#unfollowPanel {
    display: none;
    position: fixed;
    margin: auto;
    background-color: white;
    border-radius: 24px;
    z-index: 103;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 64px 42px 42px 42px;
    min-width: 400px;
    height: 240px;
    transition-duration: 0.2s;
}

#unfollowTitle {
    font-size: 1.3rem;
    margin-top: 28px;
    font-family: 'PT Serif', sans-serif;
}

#unfollowButton {
    margin: 8px auto auto 0px;
    width: 100%;
    padding: 6px;
    background-color: var(--tertiary);
    border-radius: 12px;
    border: 1px solid var(--tertiary);
    color: white;
    width: 90%;
    padding-top: 8px;
    padding-bottom: 8px;
}