.pagePost {
    padding: 50px 0;
    background: #fff;
}
.detailPost {
}
.detailPost h1 {
    margin: 0 0 15px;
    color: #000;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
}
.detailPost .meta_detailPost {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
}
.detailPost .meta_detailPost span {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 0.8rem;
}
.detailPost .meta_detailPost span.cat {
    display: flex;
    align-items: center;
}
.detailPost .meta_detailPost span.cat img {
    margin-right: 5px;
    width: 18px;
}
.detailPost .meta_detailPost span.cat a {
    position: relative;
    display: block;
    font-size: 0.8rem;
    margin-right: 7px;
    padding-right: 7px;
}
.detailPost .meta_detailPost span.cat a::before {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}
.detailPost .meta_detailPost span.cat a:last-child {
    margin-right: 0px;
    padding-right: 0px;
}
.detailPost .meta_detailPost span.cat a:last-child::before {
    content: "";
}

.detailPost .meta_detailPost span img {
    margin-right: 5px;
    width: 18px;
}
.content_detailPost {
}
.content_detailPost p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 20px;
}
.content_detailPost img {
    display: block;
    height: auto;
    margin: 0 auto 20px;
    max-width: 90%;
}
.content_detailPost ol,
.content_detailPost ul {
    margin-bottom: 10px;
    padding-left: 30px;
}
.content_detailPost ol li,
.content_detailPost ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}
.content_detailPost ol li:before,
.content_detailPost ul li:before {
    background: #ff3d3d;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 7px;
    margin-right: 6px;
    position: relative;
    top: -2px;
    width: 7px;
}

/* ITEM POST */
.itemPost {
    background: #fff;
    border-radius: 8px;
    box-shadow:
        0 6px 8px 0 #11182714,
        0 0 0 1px #1118270a;
}
.itemPost .img_itemPost {
    width: 100%;
}
.itemPost .img_itemPost a {
    display: block;
    aspect-ratio: 5 / 3;
}
.itemPost .img_itemPost a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.itemPost .info_itemPost {
    padding: 15px;
}
.itemPost .info_itemPost h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;

    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.itemPost .info_itemPost h4 a {
    color: #000;
}
.itemPost .info_itemPost .cat_itemPost {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.itemPost .info_itemPost .cat_itemPost img {
    margin-right: 5px;
    width: 18px;
}
.itemPost .info_itemPost .cat_itemPost a {
    position: relative;
    display: block;
    font-size: 0.8rem;
    margin-right: 7px;
    padding-right: 7px;
}
.itemPost .info_itemPost .cat_itemPost a::before {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}
.itemPost .info_itemPost .cat_itemPost a:last-child {
    margin-right: 0;
    padding-right: 0;
}
.itemPost .info_itemPost .cat_itemPost a:last-child::before {
    content: "";
}

.itemPost .info_itemPost .descr_itemPost {
    font-size: 15px;
    color: #3c4858;
    margin-bottom: 10px;
}
.itemPost .meta_itemPost {
    display: flex;
    gap: 10px;
}
.itemPost .meta_itemPost span {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 0.8rem;
}
.itemPost .meta_itemPost span img {
    margin-right: 5px;
    width: 18px;
}
/* END ITEM POST */

.listRelated {
}
.itemRelated {
    display: grid;
    grid-template-columns: 35% 1fr;
    grid-gap: 15px;
    margin-bottom: 10px;
}
.itemRelated .img_itemRelated {
    aspect-ratio: 4 / 3;
}
.itemRelated .img_itemRelated a {
    display: block;
}
.itemRelated .img_itemRelated a img {
    width: 100%;
    border-radius: 7px;
}
.itemRelated .info_itemRelated {
}
.itemRelated .info_itemRelated h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.itemRelated .info_itemRelated h4 a {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #000;
}

.readBlogs {
    display: block;
    margin-top: 30px;
    padding: 10px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 7px;
    font-size: 1rem;
    color: #000;
    transition: all 0.3s ease;
}
.readBlogs:hover {
    background: #000;
    color: #fff;
}
