@charset "utf-8";

.inner-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.inner-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.inner-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.inner-banner-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.inner-banner-content .en-subtitle {
    font-size: 16px;
    opacity: 0.7;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: "Rubik", sans-serif;
}

.inner-banner-decoration {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.inner-banner-decoration svg {
    display: block;
    width: 100%;
    height: 60px;
}

.breadcrumb-nav {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.breadcrumb-nav .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    display: flex;
    align-items: center;
    list-style: none;
}

.breadcrumb-nav .breadcrumb li {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.breadcrumb-nav .breadcrumb li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav .breadcrumb li a:hover {
    color: #004aa1;
}

.breadcrumb-nav .breadcrumb li.active {
    color: #004aa1;
    font-weight: 500;
}

.breadcrumb-nav .breadcrumb li + li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #999;
    border-bottom: 1.5px solid #999;
    transform: rotate(-45deg);
    margin: 0 12px;
}

.page-sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    position: sticky;
    top: 100px;
    margin-top: -180px;
}

.sidebar-header {
    background: linear-gradient(135deg, #004aa1 0%, #008fd5 100%);
    padding: 40px 25px;
    color: #fff;
    position: relative;
}

.sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #008fd5;
}

.sidebar-header h3 {
    font-size: 30px;
    margin: 0;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
}

.sidebar-header .en-title {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sidebar-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 14px 25px;
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    font-size: 20px;
}

.sidebar-menu li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sidebar-menu li a:hover,
.sidebar-menu li.active a {
    color: #004aa1;
    background: #fff;
    font-size: 20px;
}

.sidebar-menu li a:hover::before,
.sidebar-menu li.active a::before {
    background: #004aa1;
    box-shadow: 0 0 0 3px rgba(0,74,161,0.15);
}

.sidebar-menu li.active a {
    font-weight: 500;
    font-size: 20px;
}

.page-main-content {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 40px;
}

.page-content-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}

.page-content-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #004aa1, #008fd5);
    border-radius: 2px;
}

.page-content-header h2 {
    font-size: 28px;
    color: #0c2139;
    margin: 0;
    font-weight: bold;
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h3 {
    font-size: 22px;
    color: #004aa1;
    margin-bottom: 18px;
    padding-left: 16px;
    border-left: 4px solid #004aa1;
    line-height: 1.4;
}

.content-section p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 15px;
    color: #555;
    border-bottom: 1px dashed #e9ecef;
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: #004aa1;
    font-size: 14px;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    border-left: 4px solid #004aa1;
    padding: 25px 30px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.highlight-box p {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.8;
}

.number-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    counter-reset: numcounter;
}

.number-list li {
    padding: 14px 0 14px 50px;
    position: relative;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
    line-height: 1.7;
    counter-increment: numcounter;
}

.number-list li::before {
    content: counter(numcounter);
    position: absolute;
    left: 0;
    top: 14px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #004aa1, #008fd5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.news-list-wrapper {
    padding: 60px 0;
}

.news-filter-bar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 20px 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.news-filter-bar .filter-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.news-filter-bar .filter-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    color: #666;
    background: #fff;
    text-decoration: none;
}

.news-filter-bar .filter-tag:hover,
.news-filter-bar .filter-tag.active {
    background: #004aa1;
    color: #fff;
    border-color: #004aa1;
}

.news-filter-bar .filter-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-filter-bar .filter-search {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
}

.news-filter-bar .filter-search input {
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    width: 180px;
    outline: none;
    background: transparent;
}

.news-filter-bar .filter-search button {
    border: none;
    background: #004aa1;
    color: #fff;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.news-filter-bar .filter-search button:hover {
    background: #003d87;
}

.news-list-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 24px;
    display: flex;
}

.news-list-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.news-list-card__image {
    width: 280px;
    min-height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.news-list-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-list-card:hover .news-list-card__image img {
    transform: scale(1.08);
}

.news-list-card__image .card-tag {
    position: absolute;
    top: 15px;
    left: 0;
    background: #004aa1;
    color: #fff;
    padding: 5px 16px;
    font-size: 13px;
    border-radius: 0 25px 25px 0;
    z-index: 2;
}

.news-list-card__content {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-list-card__content h3 {
    font-size: 22px;
    color: #0c2139;
   
}

.news-list-card__content h3 a {
    color: #0c2139;
    text-decoration: none;
    transition: color 0.3s;
}

.news-list-card__content h3 a:hover {
    color: #004aa1;
}

.news-list-card__content .card-desc {
    font-size: 14px;
    color: #798490;
    line-height: 1.7;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-card__content .card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

.news-list-card__content .card-meta i {
    margin-right: 5px;
    color: #004aa1;
}

.news-grid-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 24px;
}

.news-grid-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.news-grid-card__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-grid-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-grid-card:hover .news-grid-card__image img {
    transform: scale(1.08);
}

.news-grid-card__image .card-tag {
    position: absolute;
    top: 15px;
    left: 0;
    background: #004aa1;
    color: #fff;
    padding: 5px 16px;
    font-size: 13px;
    border-radius: 0 25px 25px 0;
    z-index: 2;
}

.news-grid-card__content {
    padding: 20px 25px;
}

.news-grid-card__content h3 {
    font-size: 17px;
    color: #0c2139;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.5;
}

.news-grid-card__content h3 a {
    color: #0c2139;
    text-decoration: none;
    transition: color 0.3s;
}

.news-grid-card__content h3 a:hover {
    color: #004aa1;
}

.news-grid-card__content .card-meta {
    font-size: 13px;
    color: #999;
}

.news-grid-card__content .card-meta i {
    margin-right: 5px;
    color: #004aa1;
}

.pagination-wrapper {
    text-align: center;
    margin-top: 40px;
}

.pagination-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-custom li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    color: #666;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-custom li a:hover,
.pagination-custom li.active a {
    background: #004aa1;
    color: #fff;
    border-color: #004aa1;
}

.pagination-custom li.disabled a {
    color: #ccc;
    cursor: not-allowed;
}

.article-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 45px;
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.article-header .article-category {
    display: inline-flex;
    align-items: center;
    background: #004aa1;
    color: #fff;
    padding: 5px 18px;
    font-size: 13px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 28px;
    color: #0c2139;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.article-header .article-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}

.article-header .article-meta span i {
    margin-right: 6px;
    color: #004aa1;
}

.article-body {
    font-size: 16px;
    line-height: 2;
    color: #444;
}

.article-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-body h2 {
    font-size: 22px;
    color: #004aa1;
    margin: 30px 0 15px;
    padding-left: 16px;
    border-left: 4px solid #004aa1;
}

.article-body h3 {
    font-size: 18px;
    color: #0c2139;
    margin: 25px 0 12px;
    font-weight: 600;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.article-body blockquote {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
    border-left: 4px solid #004aa1;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.article-body ul,
.article-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.article-tags {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tags .tag-label {
    font-size: 14px;
    color: #999;
    font-weight: 600;
}

.article-tags .tag-item {
    display: inline-flex;
    padding: 5px 14px;
    background: #f5f5f5;
    color: #666;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.article-tags .tag-item:hover {
    background: #004aa1;
    color: #fff;
}

.article-nav {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.article-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    max-width: 48%;
}

.article-nav a:hover {
    background: #004aa1;
    color: #fff;
}

.article-nav a i {
    font-size: 16px;
}

.article-nav .nav-next {
    margin-left: auto;
    text-align: right;
}

.related-articles {
    margin-top: 40px;
}

.related-articles h3 {
    font-size: 20px;
    color: #0c2139;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.related-articles h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #004aa1;
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.related-list li:last-child {
    border-bottom: none;
}

.related-list li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6;
}

.related-list li a:hover {
    color: #004aa1;
}

.related-list li a::before {
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #004aa1;
    flex-shrink: 0;
    margin-top: 2px;
}

.related-list li a .date {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
}

.inner-page-wrapper {
    padding: 60px 0;
    background: #f7f9fc;
}

.section-decoration {
    position: relative;
    margin-bottom: 30px;
}

.section-decoration::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #004aa1, #008fd5);
    border-radius: 2px;
    margin-top: 12px;
}

.about-intro-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 10px;
    padding: 35px;
    margin-bottom: 30px;
    border-left: 4px solid #004aa1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.about-intro-card h4 {
    font-size: 18px;
    color: #004aa1;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-intro-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-stat-item {
    background: linear-gradient(135deg, #004aa1, #008fd5);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s;
}

.about-stat-item:hover {
    transform: translateY(-5px);
}

.about-stat-item .stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: "Rubik", sans-serif;
}

.about-stat-item .stat-label {
    font-size: 14px;
    opacity: 0.85;
}

.about-timeline {
    position: relative;
    padding: 20px 0;
    margin: 30px 0;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item .timeline-dot {
    position: absolute;
    left: 50%;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #004aa1;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #004aa1;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item .timeline-content {
    width: 45%;
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.timeline-item .timeline-content h4 {
    font-size: 16px;
    color: #004aa1;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-item .timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1199px) and (min-width: 769px) {
    .inner-banner {
        height: 320px;
    }

    .inner-banner-content h1 {
        font-size: 36px;
    }

    .inner-banner-content .en-subtitle {
        font-size: 14px;
    }

    .page-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .page-main-content {
        padding: 30px;
    }

    .article-content {
        padding: 30px;
    }

    .article-header h1 {
        font-size: 24px;
    }

    .news-list-card__image {
        width: 220px;
    }

    .news-list-card__content {
        padding: 20px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }

    .timeline-item .timeline-dot {
        left: 20px;
    }

    .timeline-item .timeline-content {
        width: 100%;
    }

    .inner-page-wrapper {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .inner-banner {
        height: 240px;
    }

    .inner-banner-content h1 {
        font-size: 28px;
    }

    .inner-banner-content .en-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .inner-banner-decoration svg {
        height: 30px;
    }

    .breadcrumb-nav {
        padding: 10px 0;
    }

    .breadcrumb-nav .breadcrumb li {
        font-size: 13px;
    }

    .page-sidebar {
        position: static;
        margin-bottom: 25px;
    }

    .sidebar-header {
        padding: 20px;
    }

    .page-main-content {
        padding: 20px;
        border-radius: 8px;
    }

    .page-content-header h2 {
        font-size: 22px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .content-section p {
        font-size: 14px;
    }

    .news-list-card {
        flex-direction: column;
    }

    .news-list-card__image {
        width: 100%;
        height: 200px;
    }

    .news-list-card__content {
        padding: 18px;
    }

    .news-list-card__content h3 {
        font-size: 16px;
    }

    .news-filter-bar {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .news-filter-bar .filter-search input {
        width: 120px;
    }

    .article-content {
        padding: 20px;
    }

    .article-header h1 {
        font-size: 20px;
    }

    .article-header .article-meta {
        gap: 15px;
        font-size: 13px;
    }

    .article-body {
        font-size: 15px;
        line-height: 1.8;
    }

    .article-nav {
        flex-direction: column;
    }

    .article-nav a {
        max-width: 100%;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-stat-item {
        padding: 18px 12px;
    }

    .about-stat-item .stat-number {
        font-size: 28px;
    }

    .about-stat-item .stat-label {
        font-size: 12px;
    }

    .about-timeline::before {
        left: 15px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 40px;
    }

    .timeline-item .timeline-dot {
        left: 15px;
        width: 12px;
        height: 12px;
    }

    .timeline-item .timeline-content {
        width: 100%;
        padding: 15px;
    }

    .inner-page-wrapper {
        padding: 30px 0;
    }

    .pagination-custom li a {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .news-grid-card__image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .inner-banner {
        height: 200px;
    }

    .inner-banner-content h1 {
        font-size: 24px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .news-list-card__image {
        height: 180px;
    }

    .news-filter-bar .filter-left {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .news-filter-bar .filter-tag {
        font-size: 13px;
        padding: 6px 14px;
    }
}