/* Breadcrumb */
.breadcrumb {
    min-height: 340px;
    position: relative;
    display: flex;
    align-items: end;
    text-align: center;
    overflow: hidden;
}

.breadcrumb::before {
    content: '';
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb h1 {
    font-size: 40px;
    color: #FFF;
    margin-bottom: 8px;
}

.breadcrumb ul {
    display: block;
    white-space: normal;
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
}

.breadcrumb ul li {
    display: inline;
    color: rgba(255, 255, 255, .8);
}

.breadcrumb ul li a {
    color: rgba(255, 255, 255, .8);
}

.breadcrumb ul li a:hover {
    color: #FDA31B;
}

.breadcrumb ul li:not(:last-child) {
    position: relative;
    padding-right: 15px;
}

.breadcrumb ul li:not(:last-child)::before {
    content: '/';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    color: #FFF;
}

/* End breadcrumb  */



/* Content cho editor  */
.noi-dung,
.noi-dung-1 {
    font-size: 16px;
}

.noi-dung p,
.noi-dung-1 p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.5;
    font-size: 16px;
}

.noi-dung h2,
.noi-dung-1 h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.noi-dung h3,
.noi-dung-1 h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.noi-dung hr,
.noi-dung-1 hr {
    margin: 15px 0;
}

.noi-dung-1 table {
    margin-bottom: 10px;
    max-width: 100%;
    border-collapse: collapse;
    width: 100%;
}

.noi-dung table td img {
    border-radius: 20px;
}

.noi-dung table td {
    width: 50%;
}

.noi-dung blockquote,
.noi-dung-1 blockquote {
    border-left: 5px solid #FDA31B;
    padding: 8px 15px;
    background: #eee;
    border-radius: 10px;
    margin-bottom: 15px;
}

.noi-dung blockquote h3,
.noi-dung blockquote h2,
.noi-dung blockquote p {
    margin-bottom: 0;
}

.noi-dung-1 blockquote h3,
.noi-dung-1 blockquote h2,
.noi-dung-1 blockquote p {
    margin-bottom: 0;
}

.noi-dung ul,
.noi-dung ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.noi-dung-1 ul,
.noi-dung-1 ol {
    margin-left: 30px;
    margin-bottom: 10px;
}

.noi-dung ul li,
.noi-dung ol li {
    margin-bottom: 5px;
}

.noi-dung-1 ul li,
.noi-dung-1 ol li {
    margin-bottom: 5px;
}

.noi-dung table tr td,
.noi-dung-1 table tr td {
    padding: 10px;
}

.noi-dung-1 table tr th {
    padding: 10px;
}

.noi-dung table {
    margin: 0 -10px 10px;
}

.image-caption {
    margin-bottom: 10px;
}

/* end  */

/* pagination  */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    gap: 6px;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #FFF;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background: #FDA31B;
    color: #fff;
    border-color: #FDA31B;
}

.pagination .page-item.active .page-link {
    background: #FDA31B;
    color: #fff;
    border-color: #FDA31B;
    pointer-events: none;
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    color: #aaa;
    border-color: #ddd;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .noi-dung table tr td {
        width: 50%;
    }

    .noi-dung img,
    .noi-dung-1 img {
        max-width: 100%;
        height: auto !important;
    }
}

@media (max-width: 992px) {
    .noi-dung table tr td {
        width: 100% !important;
        display: block;
    }
}

@media (max-width: 768px) {
    .pagination .page-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .noi-dung table tr td,
    .noi-dung-1 table tr td {
        word-break: break-word;
    }

    .breadcrumb h1 {
        font-size: 18px;
    }

    .breadcrumb {
        min-height: 220px;
    }

    .breadcrumb ul {
        padding-bottom: 15px;
    }
}