#content,
#content > .container {
    display: flex;
    width: 100%;
    height: fit-content;
}

#content main {
    display: flex;
    flex-direction: column;
    width: 70%;
    padding: 0 0 60px 0;
}

#content .sidebar {
    display: flex;
    flex-direction: column;
    width: 30%;
    padding: 0 45px 45px 45px;
}

.title {
    line-height: 115%;
    margin-bottom: 10px;
    opacity: 1;
}
.title:hover {
    opacity: 0.7;
}



/* Author Tag List 
*/

.users_tag_list {
    display: flex;
    width: 100%;
    height: fit-content;
    margin: 5px 0 0 0;
}

.users_tag_list-wrapper,
.users_tag_list-user,
.users_tag_list-user-content {
    display: flex;
    width: fit-content;
    height: fit-content;
}

.users_tag_list-user
{
    align-items: center;
    padding: 10px 0;
    /* background-color: #ffffff05; */
    border-radius: 5px;
}
.users_tag_list-user:hover .users_tag_list-user-name {
    opacity: 0.7;
}

.users_tag_list-user-photo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 100vh;
    border: 3px solid #3d3d3d;
    background-color: #ffffff10;

    background-size: 125%;
    background-repeat: no-repeat;
    background-position: center;
}

.users_tag_list-user-content {
    flex-direction: column;
}

.users_tag_list-user-name {
    font-size: 0.75rem;
    line-height: 100%;
    font-family: helvetica_black;
    margin: 0 0 2px 0;
}

.users_tag_list-user-sub {
    font-family: helvetica;
    font-size: 0.7rem;
    opacity: 0.8;
    margin: 0;
}
