﻿.reserved-block {
    display: flex;
    height: 100px;
}

.posts {
}

.post {
    display: flex;
    flex-direction: row;
    padding: 15px 25px;
    margin: 5px 0;
    border-radius: 25px;
    align-items: center;
    color: #1A1A1A;
    transition: cubic-bezier(0.16, 1, 0.3, 1) 250ms;
}

.post:hover{
    background-color: var(--main-color-2);
    color: #000000;
}

.post-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #00000000;
    width: 75px;
    height: 32px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 900;
    user-select: none;
    margin: 0 30px 0 0;
    transition: cubic-bezier(0.16, 1, 0.3, 1) 250ms;
}

.post-category.normal {
    background-color: #0000003A;
}

.post-category.update {
    background-color: #7A9D545A;
}

.post-category.important {
    background-color: #1B6B935A;
}

.post:hover .post-category {
    background-color: #0000002C;
}

.post-title {
    display: flex;
    align-items: center;
    width: 50%;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Red Hat Text', 'Noto Sans CJK TC', sans-serif;
    user-select: none;
}

.post-author {
    display: flex;
    align-items: center;
    width: 200px;
    margin: 0 10px 0 auto;
    font-family: 'Red Hat Text', 'Noto Sans CJK TC', sans-serif;
    font-size: 18px;
    font-weight: 400;
    user-select: none;
}

.post-date {
    display: flex;
    align-items: center;
    font-family: 'Red Hat Text', 'Noto Sans CJK TC', sans-serif;
    font-weight: 400;
    font-size: 18px;
    user-select: none;
}

.postpage {
    display: block;
    top: 0px;
    padding: 0px 0px;
    margin: 0 10% 0 10%;
    font-size: 18px;
}

.postpage-title-back{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.postpage-title {
    font-family: 'Red Hat Text', 'Noto Sans CJK TC', sans-serif;
    font-size: 45px;
    color: #3D3D3D;
    padding: 0 30px 0 0;
    width: fit-content;
    /*border-right: var(--main-color-1) 1px dashed;*/
}

.postpage-back{
    display: block;
    padding: 0 0 20px 0px;
    color: #3F3F3F;
}

.postpage-back:hover {
    color: var(--main-color-1);
}

.postpage-author-date{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.postpage-author {
    font-family: 'Red Hat Text', 'Noto Sans CJK TC', sans-serif;
    font-size: 18px;
    margin: 15px 30px 15px 0;
    color: #5A5A5A;
}

.postpage-category-container {
    padding: 0 0 5px 0;
}

.postpage-date {
    font-family: 'Red Hat Text', 'Noto Sans CJK TC', sans-serif;
    font-size: 18px;
    margin: 15px 0;
    color: #5A5A5A;
}

.postpage-content{
    margin: 15px 0;
}