html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    padding-bottom: 24px;
    border-bottom: 0.5px solid #919191 !important;
}

section {
    flex-grow: 1;
}
.pagination .page-item:first-child,
.pagination .page-item:last-child {
    padding: 0;
}

.pagination .page-item:first-child {
    padding-right: 10px;
}

.pagination .page-item:last-child {
    padding-left: 10px;
}

.page-item {
    padding: 0 5px;
}

.page-item .page-link {
    border: none;
    padding: 0.5rem 1rem;
}

.page-item.active .page-link,
a.page-link:hover {
    background-color: #1A6373;
    color: white !important;

}

.page-link.page-previous {
    background-image: url("../img/arrow-left.png");
}

.page-link.page-next {
    background-image: url("../img/arrow-right.png");
}

.page-link.page-next,
.page-link.page-previous {
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 22px;
    padding: 0;
}

.page-link.page-previous:hover, .page-link.page-next:hover {
    background-blend-mode: screen;
}

.page-total {
    font-size: 18px;
    font-weight: 700;
    color: #585757;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span,
.pagination > li > a,
.pagination > li > span {
    border-radius: 100px !important;
    margin: 0 2px;
    color: #777;
    border-color: #ddd;
}
/* style.css */

/* Lớp cho container chính */
.container-custom {
    margin-top: 20px;
    max-width: 80%;
    color: #40414E !important;
}

/* Lớp cho tiêu đề tin tức */
.news-title {
    font-size: 48px !important;
    font-weight: 700 !important;
}

/* Lớp cho đoạn mô tả tin tức */
.news-description {
    margin-bottom: 20px;
    font-size: 28px !important;
    font-weight: 400;
    color: #1A6373;
}

.faq-container {
    text-align: center;
}

.news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.news-item img {
    max-width: 192px;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.news-item .news-title-text {
    font-size: 20px;
    font-weight: 500;
}

.news-item .news-description-text {
    font-size: 16px;
    font-weight: 400;
}

.news-item .news-date {
    font-size: 12px;
    font-weight: 400;
}

.footer-custom {
    background-color: #A2627D;
    height: 4px;
    width: 100%;
}

@media (max-width: 768px) {
    .container-custom, .news-item img {
        max-width: fit-content;
    }
}