/* =========================================
   SINGLE POST
========================================= */

.single-post__content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 45px 0 70px;
    color: #222;
}

/* =========================================
   TIÊU ĐỀ BÀI VIẾT
========================================= */

.single-post__content-title {
    margin-bottom: 35px;

    font-size: 40px;
    line-height: 1.25;
    font-weight: 500;
    text-align: center;

    color: #fe9900;
}

/* =========================================
   NỘI DUNG BÀI VIẾT
========================================= */

.single-post__post-content {
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
}

/* Paragraph */
.single-post__post-content p {
    margin: 0 0 18px;
    padding: 0;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: #222;
}

/* Không cho paragraph bị in đậm toàn bộ */
.single-post__post-content p {
    font-weight: 400;
}

/* Chỉ phần <strong> được nhấn mạnh */
.single-post__post-content strong {
    font-weight: normal;
}

/* =========================================
   CÁC TIÊU ĐỀ TRONG BÀI
========================================= */

.single-post__post-content h2,
.single-post__post-content h3,
.single-post__post-content h4,
.single-post__post-content h5,
.single-post__post-content h6 {
    margin: 30px 0 12px;

    color: #222;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
}

/* H2 */
.single-post__post-content h2 {
    font-size: 28px;
}

/* H3 */
.single-post__post-content h3 {
    font-size: 24px;
}

/* H4 */
.single-post__post-content h4 {
    font-size: 21px;
}

/* H5 */
.single-post__post-content h5 {
    font-size: 19px;
}

/* H6 */
.single-post__post-content h6 {
    font-size: 17px;
}

/* =========================================
   HÌNH ẢNH
========================================= */

.single-post__post-content img {
    display: block;
    margin: 25px auto;

    /* Không thay đổi kích thước ảnh */
    max-width: none;
    width: auto;
    height: auto;
}

/* Nếu ảnh lớn hơn màn hình thì vẫn không làm vỡ layout */
.single-post__post-content figure {
    margin: 25px 0;
    text-align: center;
}

.single-post__post-content figure img {
    margin: 0 auto;
}

/* Chú thích ảnh */
.single-post__post-content figcaption {
    margin-top: 8px;

    font-size: 14px;
    line-height: 1.5;
    color: #777;
    text-align: center;
}

/* =========================================
   BLOCKQUOTE
========================================= */

.single-post__post-content blockquote {
    margin: 25px 0;
    padding: 15px 20px;

    border-left: 4px solid #fe9900;
    background: #fafafa;

    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
   DANH SÁCH
========================================= */

.single-post__post-content ul,
.single-post__post-content ol {
    margin: 0 0 20px;
    padding-left: 30px;
}

.single-post__post-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* =========================================
   LINK
========================================= */

.single-post__post-content a {
    color: #fe9900;
    text-decoration: none;
}

.single-post__post-content a:hover {
    text-decoration: underline;
}

/* =========================================
   TABLE
========================================= */

.single-post__post-content table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.single-post__post-content th,
.single-post__post-content td {
    padding: 10px 12px;
    border: 1px solid #ddd;
    line-height: 1.6;
}

.single-post__post-content th {
    font-weight: 700;
    background: #f7f7f7;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .single-post__content {
        padding: 30px 18px 50px;
    }

    .single-post__content-title {
        margin-bottom: 25px;

        font-size: 28px;
        line-height: 1.3;
    }

    .single-post__post-content {
        font-size: 16px;
        line-height: 1.75;
        text-align: left;
    }

    .single-post__post-content p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .single-post__post-content h2 {
        font-size: 24px;
    }

    .single-post__post-content h3 {
        font-size: 21px;
    }

    .single-post__post-content h4 {
        font-size: 19px;
    }

    .single-post__post-content figure {
        overflow-x: auto;
    }

    .single-post__post-content img {
        margin: 20px auto;
    }
}