/*==========Microblog==========--------------------------*/
body {
    display: block;
    border-left: none;
    overflow-y: auto;
    background: var(--glow-fill) url(../../assets/layout/background/gingham.svg) fixed;
    background-size: var(--bg-sm);
}

#wrapper { 
    display: block;
    max-width: var(--miniwrapper-width);
    background-size: 36px;
    padding: 0 36px;
/*    margin: 0 auto;*/
    margin-left: var(--sidenav-width);
    height: unset;
}

#frame {
    height: 100%;
    background: transparent;
    min-height: 100%;
    max-width: unset;
    margin-left: 0;
    border: none;
    height: 100%;
}

#content::before {
    display: none;
    content: none;
}

#plate {
    background: none;
    padding: 0;
}

#content {
    padding: 0;
    border: none;
    background: none;
}


#microblog {
    padding-bottom: 24px;
}

#header {
    background: url('../_images/deco/banner.jpg') center no-repeat;
    background-size: cover;
    color: var(--primary-light);
    padding: 24px;
    margin-bottom: 10px;
    border: var(--outline-alt);
    border-radius: 6px;
    line-height: 1.25;
}

#header h1 {
    color: inherit;
    font-size: 2rem;
    font-family: inherit;
    text-transform: inherit;
    text-align: inherit;
    line-height: 2;
    background: none;
    margin: 0;
    padding: 0;
    border: none;
    text-shadow: none;
}

#header .profilePic {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.subscribeButton {
    font: var(--body-sm);
    font-variant: all-small-caps;
    letter-spacing: 1pt;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 24px;
    background: var(--primary-light);
    border: var(--outline-alt);
}
#content a.subscribeButton:hover {
    color: var(--white);
    background: var(--attn);
}

.post {
    display: flex;
    background: var(--primary-light);
    padding: 12px;
    margin-bottom: 24px;
    border-radius: 6px;
    border: var(--outline-alt);
}
.post:last-child { margin-bottom: 0; }
.post > a:first-child { margin-right: 7px; align-self: flex-start; }

#homebox .post {
    border: none;
    padding: 0;
}

.postImage {
    display: block;
    max-width: 100%;
    margin: 24px auto 0 auto;
    border-radius: 5px;
    border: var(--outline-light);
}

.profilePic {
    display: block;
    width: 54px;
    max-width: inherit;
    height: 54px;
    border-radius: 50%;
    border: var(--attn) 2px solid;
}
.profilePic:hover {
    border-color: var(--white);
}

.postContent {
    display: inline-block;
    margin-left: 7px;
    width: 100%;
}

.authorDate, #content .postDate, .interactions { 
    color: var(--attn);
}
.authorDate {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.authorDate .authorName {
    font-weight: bold;
}
.authorDate img {
    max-height: 20px;
    display: inline;
}

.authorName { color: var(--bodytext); }

#content .postDate:hover {
    color: var(--attn);
    background: var(--white);
}

.interactions span:nth-child(odd):hover, .authorName:hover {
    color: var(--attn);
    cursor: pointer;
    
}

.interactions {
    color: var(--bodytext);
    cursor: default;
    float: right;
    margin-top: 5px;
    user-select: none;
}

.reblogCount,
.likeCount {
    margin-left: 4px;
}

.likeButton {
    margin-left: 7px;
}