@charset "UTF-8";

.single {
text-align: center;
padding-bottom: 100px;
.inner{
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
   
    .post-categories{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
        a{
        font-size: 14px;
        color: #5A7976;
        margin-bottom: 7px;
    }
    }
    .date{
        font-size: 14px;
        margin-bottom: 14px;
        text-align: right;
    }
    .title{
        margin: 0 auto 14px;
        font-size: 24px;
    }
    .sidebar{
        margin-top: 100px;
        .title-sidebar{
            font-weight: bold;
            margin-bottom: 15px;
        }
        .list{
            border-top: 1px solid #d8dee0;
            li{
              border-bottom: 1px solid #d8dee0;
                a{
                    font-size: 16px;
                    padding: 15px 0;
                    display: block;
                    width: 100%;
                    position: relative;
                    &::after{
                        content: '>';
                        position: absolute;
                        right: 0;
                        top: 50%;
                        transform: translateY(-50%);
                        font-size: 16px;
                        color: #5A7976;
                        font-weight: bold;
                        transition: all 0.3s ease;
                        &:hover{
                            transform: translateY(-50%) rotate(90deg);
                        }
                    }
                }
            }
        }
    }
}

}
@media screen and (max-width: 767px) {
    .inner{
        width: 90vw;
    }
}

