.page_tag {
    padding-bottom: 50px;
}

.tag-header {
    background: linear-gradient(135deg, #0b5a7b 0%, #052d5a 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
}

.tag-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-header .tag-count {
    font-size: 16px;
    opacity: 0.8;
}

.news_list {
    margin-top: 20px;
}

.news_item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.news_item:hover {
    transform: translateY(-5px);
}

.news_item .image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16/10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.news_item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news_item:hover .image img {
    transform: scale(1.1);
}

.news_item .news_infor h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 700;
}

.news_item .news_infor h3 a {
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.news_item .news_infor h3 a:hover {
    color: #0b5a7b;
}

.news_item .news_infor .desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    line-height: 1.6;
}

.news_item .see-more {
    font-weight: 600;
    color: #0b5a7b;
    font-size: 14px;
    gap: 8px;
}

.news_item .see-more svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.news_item:hover .see-more svg {
    transform: translateX(5px);
}

/* Breadcrumbs refinement */
.breadcrumbs {
    padding: 15px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs-item {
    font-size: 14px;
    color: #666;
}

.breadcrumbs-item a {
    color: #333;
}

.breadcrumbs-item:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #ccc;
}

.breadcrumbs-item:last-child {
    color: #0b5a7b;
    font-weight: 600;
}

.pagination-wrapper {
    margin-top: 40px;
}

.no-data {
    padding: 100px 0;
    font-size: 18px;
    color: #999;
}

@media (max-width: 768px) {
    .tag-header {
        padding: 40px 0;
    }
    .tag-header h1 {
        font-size: 28px;
    }
}
