.post-viewer{
    width: 100%;
    padding: 2px;
    background-color: #fff;
    border-radius: 10px;
}
.post-viewer .title{
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 2rem;
    padding: 10px 20px;
    text-align: left;
}
.post-viewer .meta{
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 10px;
}
.post-viewer .meta .author{
    display: flex;
    align-items: center;
}
.post-viewer .meta .author img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.post-viewer .meta .author span{
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Hind Siliguri', sans-serif;
}
.post-viewer .meta .date{
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Hind Siliguri', sans-serif;
}
.post-viewer .thumb-area{
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.post-viewer .thumb-area img{
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: all 0.5s;
}
.post-viewer .thumb-area img:hover{
    cursor: pointer;
    transform: scale(105%);
}
.post-viewer .content{
    padding: 0 20px;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: justify;
    margin-top: 17px;
}
.post-viewer .content *{
    font-family: 'Hind Siliguri', sans-serif !important;
}
.post-viewer .content p{
    margin: 10px 0;
}
.post-viewer .content img{
    width: 100%;
    aspect-ratio: 16/9;
    margin: 10px 0;
}
.post-viewer .content h1, h2, h3, h4, h5, h6{
    margin: 10px 0;
    padding: 2px;
}
.post-viewer .content p strong {
    /* Attention */
    color: #3455c3;
    font-size: 14px;
}
/* Universal table style for content responsive */
.post-viewer .content table{
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}
.post-viewer .content table th, .post-viewer .content table td{
    border: 1px solid #ddd;
    padding: 8px;
}
.post-viewer .content table th{
    background-color: #f2f2f2;
}
.post-viewer .content table tr:nth-child(even){
    background-color: #f2f2f2;
}
.post-viewer .content table tr:hover{
    background-color: #f9f9f9;
}
.post-viewer .content table th{
    font-size: 1.2rem;
    font-weight: bold;
}
.post-viewer .content table td{
    font-size: 1.1rem;
}
.post-viewer .content table td a{
    color: #3455c3;
    text-decoration: none;
}
.post-viewer .content table td a:hover{
    text-decoration: underline;
}
.post-viewer .content table td img{
    width: 100%;
    aspect-ratio: 16/9;
}
.post-viewer .content table td p{
    margin: 0;
}
.post-viewer .content table td ul{
    padding-left: 20px;
}
.post-viewer .content table td ol{
    padding-left: 20px;
}
.post-viewer .content table td ul li{
    list-style-type: disc;
}
.post-viewer .content table td ol li{
    list-style-type: decimal;
}
.post-viewer .content table td blockquote{
    border-left: 5px solid #3455c3;
    padding-left: 10px;
    margin: 10px 0;
}
/* Table on mobile device */
@media screen and (max-width: 600px){
    .post-viewer .content table{
        overflow-x: auto;
        display: block;
        white-space: nowrap;
        width: 100%;
    }
    .post-viewer .content table th, .post-viewer .content table td{
        max-width: 100%;
        width: 100%;
        white-space: nowrap;
        font-size: 16px;
    }
    .post-viewer .content table th{
        white-space: wrap;
    }
}
/* Post Footer, show catgaory & views in last */
.post-viewer .post-footer{
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 20px;
}
.post-viewer .post-footer .category{
    display: flex;
    align-items: center;
}
.post-viewer .post-footer .category span{
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Hind Siliguri', sans-serif;
}
.post-viewer .post-footer .category a{
    color: #3455c3;
    text-decoration: none;
}

/* Author Info */
.author-info .profile{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 20px;
}
.author-info .profile img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.author-info .profile h3{
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 1.5rem;
    margin: 0;
}
.author-info .bio{
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 1.2rem;
    text-align: justify;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 3;
    text-align: center;
}