/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
	background: #d7d7d7;
}

.breadcrumb ul {
    display: block;
    white-space: normal;
}

.breadcrumb ul li{
    display: inline;
}

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

.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;
}

/* End breadcrumb  */

/* Content cho editor  */
.noi_dung_in{
    font-size: 16px;
    text-align: justify;
}

.noi_dung_in p{
    margin-bottom: 10px;
}

.noi_dung_in h2{
    font-size: 22px;
    margin-bottom: 15px;
}

.noi_dung_in h3{
    font-size: 18px;
    margin-bottom: 15px;
}

.noi_dung_in hr{
    margin: 15px 0;
}

.noi_dung_in img{
    border-radius: 20px;
}

.noi_dung_in blockquote{
    border-left: 5px solid var(--color-4);
    padding: 8px 0 8px 15px;
	background: #f6f6f6;
    border-radius: 10px;
    margin-bottom: 15px;
}

.noi_dung_in blockquote h3,
.noi_dung_in blockquote h2{
    margin-bottom: 0;
}

.noi_dung_in ul,
.noi_dung_in ol {
    margin-left: 30px;
	margin-bottom: 10px;
}

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

.noi_dung_in table tr td {
    padding: 10px;
}

.noi_dung_in table {
	margin: 0 -10px;
}
/* end  */

.section-about {
	padding: 15px 0;
}

/* pagination  */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    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 #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background: var(--color-4);
    color: #fff;
    border-color: var(--color-4);
}

.pagination .page-item.active .page-link {
    background: var(--color-4);
    color: #fff;
    border-color: var(--color-4);
    pointer-events: none;
}

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

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