/* ===== FEATURED NEWS SECTION ===== */
.featured-news-section {
    padding: 60px 0;
    background: #ffffff;
}

.section-title-with-icon {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-with-icon i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.featured-news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.featured-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 137, 208, 0.2);
}

.featured-large {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.featured-news-card:hover .featured-image {
    transform: scale(1.1);
}

.featured-badge {
    display: none;
}

.featured-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.featured-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.featured-category i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.featured-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.featured-date i {
    color: var(--primary-color);
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 16px;
}

.featured-news-card:hover .featured-title {
    color: var(--primary-color);
}

.featured-excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Featured Small Cards */
.featured-small-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.featured-small {
    display: flex;
    flex-direction: row;
    height: auto;
    align-items: flex-start;
}

.featured-small a {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.featured-small-image {
    width: 160px;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.featured-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-small:hover .featured-small-image img {
    transform: scale(1.1);
}

.featured-small-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
}

.featured-meta-small {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.featured-category-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.featured-category-small i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.featured-title-small {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.2em;
}

.featured-small:hover .featured-title-small {
    color: var(--primary-color);
}

.featured-date-small {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.featured-date-small i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* ===== NEWS TABS SECTION ===== */
.news-tabs-section {
    padding: 40px 0 80px;
    background: #f8f9fa;
    min-height: 60vh;
}

.news-tabs-wrapper {
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.news-tabs-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    min-width: max-content;
}

.news-tab-item {
    flex-shrink: 0;
}

.news-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    border: none;
    border-radius: 99px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.news-tab-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.news-tab-btn:hover {
    background: rgba(0, 137, 208, 0.1);
    color: var(--primary-color);
}

.news-tab-btn:hover i {
    transform: scale(1.1);
}

.news-tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 137, 208, 0.3);
}

.news-tab-btn.active i {
    color: white;
}

.news-tabs-content {
    position: relative;
}

.news-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.news-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NEWS LISTING PAGE ===== */
.news-listing-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
    min-height: 60vh;
}

.news-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.news-pagination {
    margin-top: 60px;
}

.news-pagination .pagination {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.news-pagination .page-item {
    margin: 0;
}

.news-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    color: var(--primary-color);
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 50% !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 137, 208, 0.2);
}

.news-pagination .page-item.active .page-link,
.news-pagination .page-item.active span.page-link {
    background: var(--gradient-primary, var(--primary-color));
    color: white;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(0, 137, 208, 0.3);
}

.news-pagination .page-item.disabled .page-link,
.news-pagination .page-item.disabled span.page-link {
    color: #aeaeae;
    background: #f8f9fa;
    border-color: #eaeaea;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

/* Fix Laravel Bootstrap 5 Pagination Icons */
.news-pagination .page-link svg.w-5.h-5 {
    width: 1.25rem;
    height: 1.25rem;
}
.news-pagination .pagination p {
    margin-bottom: 0;
}
.news-pagination .pagination + div,
.news-pagination > nav > div:first-child {
    display: none !important;
}

.news-pagination > nav > div:last-child > div:first-child {
    display: none !important;
}

@media (max-width: 576px) {
    .news-pagination {
        margin-top: 40px;
    }
    .news-pagination .pagination {
        gap: 6px;
    }
    .news-pagination .page-link {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
}

/* ===== NEWS DETAIL PAGE ===== */
.news-detail-section {
    padding: 120px 0 80px;
    background: #ffffff;
    margin-top: 0;
}

/* ---- Full-width header (breadcrumb + title + meta) ---- */
.news-detail-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #eef0f3;
}

/* breadcrumb inside standalone header — no extra padding-top */
.breadcrumb-detail {
    padding-top: 0 !important;
    margin-bottom: 14px;
    background: transparent;
}

.news-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 16px;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.95rem;
}

.news-detail-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-detail-meta i {
    color: var(--primary-color);
}

/* ---- Article card (content only, no header inside) ---- */

.news-detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content p:last-child {
    margin-bottom: 0;
}

/* Inline images in article body */
.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}


/* ── Float image: text tràn cạnh ảnh ── */
/*
 * Vấn đề: <p> là block element, khi img bên trong được float thì <p> vẫn chiếm
 * toàn bộ chiều ngang → text không thể tràn vào khoảng trống cạnh ảnh.
 * Giải pháp: display:contents "xóa" box của <p> khỏi flow, cho img float
 * trực tiếp trong BFC của .news-detail-content, text tràn xung quanh bình thường.
 */

/* Float trái: p dùng làm marker text-align: justify */
.news-detail-content p[style*="text-align: justify"]:has(> img:only-child) {
    display: contents; /* <p> mất box, img nằm trực tiếp trong BFC của article */
}
.news-detail-content p[style*="text-align: justify"] > img:only-child {
    float: left;
    margin: 1.25rem 1.5rem 1rem 0;
}

/* Float phải: p có text-align: end */
.news-detail-content p[style*="text-align: end"]:has(> img:only-child) {
    display: contents;
}
.news-detail-content p[style*="text-align: end"] > img:only-child {
    float: right;
    margin: 0.25rem 0 1rem 1.5rem;
}

/* Căn giữa: text-align: center — không float, giữ block bình thường */
.news-detail-content p[style*="text-align: center"] > img:only-child {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Clearfix: đảm bảo floats không tràn ra ngoài vùng nội dung */
.news-detail-content::after {
    content: '';
    display: block;
    clear: both;
}

/* ---- Full-width related posts section ---- */
.related-posts-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eef0f3;
}

.related-posts-section .related-posts-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 28px;
    padding-left: 0.85rem;
    border-left: 4px solid var(--primary-color);
    line-height: 1.3;
}

/* ===== RICH CONTENT TYPOGRAPHY ===== */

/* Headings — always left-aligned inside justified text */
.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4,
.news-detail-content h5,
.news-detail-content h6 {
    text-align: left;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

/* h1 inside article body: underline accent */
.news-detail-content h1 {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

/* h2: bold left-border accent */
.news-detail-content h2 {
    font-size: 1.5rem;
    padding-left: 0.85rem;
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(90deg, rgba(0,137,208,0.06) 0%, transparent 100%);
    border-radius: 0 4px 4px 0;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

/* h3: subtle dot marker */
.news-detail-content h3 {
    font-size: 1.25rem;
    color: #222;
    padding-left: 1.1rem;
    position: relative;
}

.news-detail-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* h4: plain with slightly lighter colour */
.news-detail-content h4 {
    font-size: 1.1rem;
    color: #333;
}

.news-detail-content h5,
.news-detail-content h6 {
    font-size: 1rem;
    color: #444;
}

/* ===== BLOCKQUOTE ===== */
.news-detail-content blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 1.5rem 2rem 1.5rem 3rem;
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    font-style: italic;
    color: #3a3a3a;
    font-size: 1.1rem;
    line-height: 1.85;
    overflow: hidden;
}

/* Large decorative opening quotation mark */
.news-detail-content blockquote::before {
    content: '\201C';
    position: absolute;
    top: -0.6rem;
    left: 0.8rem;
    font-size: 5.5rem;
    color: var(--primary-color);
    font-style: normal;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1;
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

.news-detail-content blockquote p {
    margin-bottom: 0.5rem;
}

.news-detail-content blockquote p:last-child {
    margin-bottom: 0;
}

/* cite inside blockquote */
.news-detail-content blockquote cite,
.news-detail-content blockquote footer {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.news-detail-content blockquote cite::before {
    content: '— ';
}

/* ===== CODE — INLINE ===== */
.news-detail-content code {
    background: #eef3f8;
    color: var(--primary-dark);
    padding: 0.18em 0.5em;
    border-radius: 4px;
    font-size: 0.88em;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #c4d8e8;
    white-space: nowrap;
}

/* ===== CODE — BLOCK (pre > code) ===== */
.news-detail-content pre {
    margin: 2rem 0;
    padding: 0;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #c4d8e8;
}

/* Coloured header bar — matches image 2 panel style */
.news-detail-content pre::before {
    content: 'Đoạn mã';
    display: block;
    background: var(--primary-dark, #1B3A70);
    color: #fff;
    font-size: 0.78rem;
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
}

.news-detail-content pre code {
    display: block;
    background: #f4f7fa;
    color: #2d3a4a;
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: auto;
    border: none;
    border-radius: 0;
    white-space: pre;
}

/* News Detail Images */
.news-detail-images {
    margin: 40px 0;
}

.news-detail-image-wrapper {
    margin-bottom: 20px;
}

.news-detail-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.news-image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 0;
    padding: 0 10px;
}

/* News Detail Footer */
.news-detail-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.news-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-label {
    font-weight: 600;
    color: #333;
}

.news-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-tag:hover {
    background: var(--primary-color);
    color: white;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-weight: 600;
    color: #333;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    color: #666;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Related News */
.related-news {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.related-news-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.related-news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.related-news-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.related-news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-news-card:hover .related-news-image {
    transform: scale(1.1);
}

.related-news-content {
    padding: 20px;
}

.related-news-title-small {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.related-news-card:hover .related-news-title-small {
    color: var(--primary-color);
}

.related-news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
}

.related-news-date i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* ===== NEWS SIDEBAR ===== */
.news-sidebar {
    padding-left: 30px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

/* Sidebar News List */
.sidebar-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-news-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-news-link:hover {
    transform: translateX(4px);
}

.sidebar-news-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-news-content {
    flex: 1;
}

.sidebar-news-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-news-link:hover .sidebar-news-title {
    color: var(--primary-color);
}

.sidebar-news-date {
    font-size: 0.85rem;
    color: #666;
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 12px;
}

.sidebar-categories li:last-child {
    margin-bottom: 0;
}

.sidebar-categories a {
    display: block;
    padding: 10px 14px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.sidebar-categories a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .news-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }

    .news-detail-article {
        padding: 30px 20px;
    }

    .news-detail-title {
        font-size: 1.75rem;
    }

    .news-detail-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-posts-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .featured-content {
        padding: 24px;
    }
    
    .featured-small-image {
        width: 120px;
    }
    
    .news-tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .news-listing-section {
        padding: 40px 0 60px;
    }
    
    .news-detail-section {
        padding: 20px 0 60px;
    }

    .news-detail-title {
        font-size: 1.4rem;
    }

    .news-detail-article {
        padding: 20px 15px;
    }

    .news-detail-content {
        font-size: 1rem;
    }

    .related-posts-section {
        margin-top: 32px;
        padding-top: 24px;
    }

    .related-posts-section .related-posts-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .news-detail-images .row {
        margin: 0;
    }
    
    .news-detail-images .col-12 {
        padding: 0;
        margin-bottom: 20px;
    }
    
    .featured-news-section {
        padding: 40px 0;
    }
    
    .section-title-with-icon {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .featured-title {
        font-size: 1.25rem;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-excerpt {
        font-size: 0.95rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .featured-small {
        flex-direction: column;
    }
    
    .featured-small-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 12px 12px 0 0;
    }
    
    .featured-small-content {
        padding: 16px;
    }
    
    .featured-title-small {
        font-size: 0.95rem;
        min-height: auto;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .news-tabs-section {
        padding: 30px 0 60px;
    }
    
    .news-tabs-wrapper {
        margin-bottom: 30px;
        padding: 6px;
    }
    
    .news-tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .news-tab-btn span {
        display: none;
    }
    
    .news-tab-btn i {
        font-size: 1.1rem;
    }
    
    .news-tabs-nav {
        gap: 4px;
    }
}

