.blog-detail-container {
    width: 100%;
    margin-top: 40px;
}
.wp-blog-detail {
    width: 90%;
    margin: 0 auto;
    
}
.blog-detail-inside {
    width: 100%;
    display: flex;
}
/* LEFT */
.wp-blog-left {
    width: 70%;
    /* background-color: lightblue; */
}
.blog-left-inside {
    width: 95%;
    
}
.left-img-top {
    width: 100%;
}
.left-img-top img {
    width: 100%;
}
.blog-left-contain {
    width: 100%;
}
.blog-left-title {
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    padding: 10px 0px;
}
.blog-left-date {
    width: 100%;
    padding: 7px 0px;
    font-size: 14px;
    color: #c2c2c2;
    border-bottom: 1px solid lightgray;
}
.blog-left-content {
    width: 100%;
    margin-top: 20px;
    text-align: justify;
}
.blog-left-content img {
    max-width: 100%;
    height: auto;

    /* max-width: none; */
    
}
.blog-left-content a {
  /* text-decoration: underline; */
  color: blue;
}
.blog-left-content ul, .blog-left-content ol {
    margin-left: 40px;
}

.blog-left-content p:empty {
  min-height: 1em; /* tạo khoảng trống cho đoạn rỗng */
}


.wp-blog-tags {
    width: 100%;
    margin: 25px 0px;
}
.blog-tags {
    width: 100%;
    display: flex;
}
.tags-title {
    margin-right: 10px;
}
.tags-list {
    color: #c2c2c2;
}

/* RIGHT */
.wp-blog-right {
    width: 30%;
    
}
.blog-right-inside {
    width: 100%;
}
.wp-blog-newest {
    width: 100%;
    
    
}
.blog-title-top {
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    padding: 10px 0px;
}
.blog-newest-list {
    width: 100%;
}
.blog-newest-item {
    width: 100%;
    margin: 10px 0px;
    padding: 15px 0px;
    border-top: 1px solid lightgray;
}
.blog-item-title {
    width: 100%;
    font-weight: bold;
}
.blog-item-date {
    width: 100%;
    color: #c2c2c2;
    font-size: 14px;
}

.wp-blog-product {
    width: 100%;
    
    padding-top: 30px;
    border-top: 2px solid gray;
}
.blog-prod-list {
    width: 100%;
}
.blog-prod-item {
    float: left;
    width: 44%;
    margin: 3%;
    cursor: pointer;
}
.blog-prod-item:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.prod-item-img {
    width: 100%;
}
.prod-item-img img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .blog-detail-inside {
        display: block;
    }
    /* LEFT */
    .wp-blog-left {
        width: 100%;
    }
    .blog-left-inside {
        width: 100%;
    }
    .blog-left-content img {
        width: 100%;
        height: auto;
    }
    .wp-blog-right {
        width: 100%;
    }
}