.post{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post .post-title{
    text-align: center;
}

.post .post-time{
    font-size: 0.8em;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    width: 800px;
    max-width: 800px;
    margin: 10px 0px;
}

.post .post-content{
    width: 800px;
    max-width: 800px;
}

.post .post-image{
    width: 100%;
    display: flex;
    justify-content: center;
}
.post .post-image .image-container img{
    max-width: 100%;
    border-radius: 5px;
}
.post .post-image .image-container label{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    font-size: 0.75em;
    text-align: right;
}

.post .inline-image{
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 200px;
    margin: 20px;
}
.post .inline-image img{
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}
.post .inline-image label{
    font-size: 0.75em;
}
.post .inline-image.inline-left{
    float: left;
}
.post .inline-image.inline-right{
    float: right;
    text-align: right;
}

.post .post-author{
    width: 800px;
    max-width: 800px;
}
.post .post-author .author-signature{
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
}
.post .post-author .author-signature .sig-profilepic{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 10px;
}
.post .post-author .author-signature .author-info{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.post .post-author .author-signature .author-info .sig-authorname{
    font-size: 1.25em;
}
.post .post-author .author-signature .author-info .sig-title{
    font-size: 0.9em;
}

.post .share{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-end;
    width: 800px;
    max-width: 800px;
}

.post .share .cta{
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 1.5em;
    font-weight: bold;
}

.post .share .share-links{
    display: flex;
}

.post .share .share-links .x-share,
.post .share .share-links .fb-share,
.post .share .share-links .bsky-share{
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-right: 20px;
    transition: 0.3s;
}
.post .share .share-links .x-share:hover,
.post .share .share-links .fb-share:hover,
.post .share .share-links .bsky-share:hover{
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}
.post .share .share-links .x-share{
    background-image: url('/assets/x.png');
}
.post .share .share-links .fb-share{
    background-image: url('/assets/fb.png');
}
.post .share .share-links .bsky-share{
    background-image: url('/assets/bluesky.png');
}
.post .share .share-links div:last-child{
    margin-right: 0px;
}
.post .share .share-links .x-share a,
.post .share .share-links .fb-share a,
.post .share .share-links .bsky-share a{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}

@media screen and (max-width: 840px) {
    .post .post-content,
    .post .post-author,
    .post .post-time,
    .post .share{
        width: 100%;
        max-width: 100%;
        padding: 0px 10px;
    }
    .post{
        padding: 10px;
    }
}
