.content-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.header-post-meta {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.header-post-meta .category-name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    color: rgb(255 255 255);
    font-size: 0.75rem;
    line-height: 1rem;
    padding: 0.125rem 0.625rem;
    background-color: rgb(34 197 94);
    border-radius: 30px;
}

.header-post-meta .header-meta span {
    font-size: 0.75rem;
    line-height: 1rem;
}

.header-post-meta .header-meta span svg {
    width: 1rem;
    height: 1rem;
}

.content-single-post .thumbnail-post {
    margin-bottom: 1rem;
}
.content-single-post .thumbnail-post img {
    border-radius: .75rem;
}

.title-post {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.tag-post {
    border-top: 1px solid rgb(229 231 235);
    padding-top: 2rem;
}

.list-tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}

.list-tag li {
    list-style-type: none;
}

.list-tag li a {
    border-radius: 30px;
    border: 1px solid rgb(226 232 240);
    padding: 0.125rem .625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: fit-content;
    color: rgb(15 23 42);
}
.list-tag li a span {
    width: calc(100% - 1rem);
}
.list-tag li a:hover {
    background-color: rgb(239 246 255);
    border-color: rgb(147 197 253);
    color: rgb(15 23 42);
}
.list-tag li a svg {
    width: .75rem;
    height: .75rem;
}

.huadev-box-auth {
    border-radius: .5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    background-color: rgb(255 255 255);
}

.huadev-box-auth .box-auth {
    display: flex;
    gap: 1rem;
}

.huadev-box-auth .box-auth .box-image {
    width: 64px;
}
.huadev-box-auth .box-auth .box-image img {
    border-radius: 50%;
}
.huadev-box-auth .box-auth .box-content {
    width: calc(100% - 64px - 1rem);
}

.huadev-box-auth .box-auth .action {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.huadev-box-auth .box-auth .action a {
    color: rgb(15 23 42);
    border: 1px solid rgb(226 232 240);
    border-radius: 6px;
    padding: 0 .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.huadev-box-auth .box-auth .action a:hover {
    background-color: rgb(236 253 245);
}

.huadev-box-auth .box-auth .action a svg {
    width: 1rem;
    height: 1rem;
}

.huadev-box-nav-single-post {
    background-color: rgb(249 250 251);
    padding: 3rem 0;
}

.huadev-box-nav-single-post .box-nav {
    width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.huadev-box-nav-single-post .box-nav a {
    padding: .5rem 1rem;
    background-color: rgb(255 255 255);
    border-radius: 8px;
    border: 1px solid rgb(226 232 240);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.huadev-box-nav-single-post .box-nav a svg {
    width: 1rem;
    height: 1rem;
}

.huadev-box-nav-single-post .box-nav .next {
    background-color: rgb(44 182 112);
    color: #fff;
}

.blog-single #comments {
    display: block;
}

@media only screen and (max-width: 48em) {
    .content-header {
        padding: 1.5rem 0;
    }
   
    .huadev-box-nav-single-post .box-nav {
        width: 100%;

        padding: 0 15px;
    }

    .huadev-breadcrumb {
        display: none;
    }
}