
.inner-page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 0 20px;
}
@media (min-width: 768px) {
    .inner-page-header {
        padding-top: 50px;
    }
}
@media (min-width: 992px) {
    .inner-page-header {
        height: 300px;
    }
}
@media (min-width: 1260px) {
    .inner-page-header {
        height: 350px;
    }
}
.page-title{
    font-size: clamp(30px, 5vw, 60px);
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 15px;
}
@media (min-width: 768px) {
    .page-title {
        letter-spacing: -2px;
        margin-bottom: 24px;
    }
}
@media (min-width: 992px) {
    .page-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
}
@media (min-width: 1260px) {
    .page-title {
        font-size: 50px;
        margin-bottom: 24px;
    }
}
.page-title span {
    display: inline-block;
    opacity: 0;
}
.page-subtitle{
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    color: var(--gray-color);
}
{
    display: flex;
}
.page-header__footer {
    margin-top: 30px;
}
@media (min-width: 992px) {
    .page-header__footer {
        margin-top: 70px;
    }
}
@media (max-width: 768px) {
    .page-header__footer .inner-page-header__footer{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
.breadcrumbs span {
    display: inline-block;
    margin: 0 5px;
}
.breadcrumbs {
     font-size: 16px;
     font-weight: 500;
     line-height: 1.8;
     letter-spacing: 0.8px;
     color: #b6b6b6;
}
.breadcrumbs {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.8px;
    color: var(--gray-color);
}
.breadcrumbs-item a:hover{
    color: var(--primary-color);
}

.post-share__list {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-share__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-color);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.post-share__link:hover {
    background: #333;
}
.post-item .thumb{
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.post-item .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
/* tuỳ chỉnh riêng từng social nếu muốn */
.post-share__link--facebook:hover { background: #3b5998; }
.post-share__link--twitter:hover  { background: #1da1f2; }
.post-share__link--pinterest:hover { background: #bd081c; }

.pagination{
    display: flex;
    gap: 15px;
}
.pagination .page-numbers{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background-color: #d6d6d6;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--primary-color);
}
