/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    color: #000;
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

.title-text {
    font-size: 3.5rem;
    font-weight: 700;
   /* color: #0071e3; */
    margin-bottom: 0.5rem;
    background-clip: text;
    position: relative;
}

.tagline {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #0088ff, #a056f7, #ff3b6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 auto;
}


/* Top Navigation Bar */
.top-nav {
    background: linear-gradient(90deg, #f5f5f7, #e0e0e0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: #0071e3;
    text-decoration: underline;
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f7;
    z-index: 201;
    padding: 20px;
}

.mobile-nav-panel.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 60px;
    padding: 0;
}

.mobile-nav-links li {
    margin: 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.mobile-nav-links a:hover {
    color: #0071e3;
}

.mobile-toggle, .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Main Content Sections */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.bg-light {
    background-color: #f8f9fa;
}

.main-content {
    padding-top: 60px;
}

#hero {
    padding-top: 120px;
    padding-bottom: 100px;
}

.profile-image {
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-block {
    padding: 20px 0;
}

.text-block h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-block h3 {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 10px;
}

.text-block h6 {
    font-size: 1.1rem;
    color: #666;
}

.social-icons a {
    margin-right: 15px;
    font-size: 24px;
    color: #000;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #0071e3;
    transform: translateY(-3px);
}

/* Timeline Styles */
.timeline-modern {
    position: relative;
    padding-left: 20px;
}

.timeline-modern-item {
    position: relative;
    padding-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.timeline-modern-item:before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    background: #0071e3;
    border-radius: 50%;
}

.timeline-modern-period {
    font-weight: 600;
    color: #0071e3;
    margin-bottom: 5px;
}

.timeline-modern-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-modern-description {
    color: #666;
}

/* Project Card Styles */
.projects-row {
    margin-top: 20px;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    border-color: #0071e3;
}

.project-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.project-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0071e3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.project-title-area h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Link Styling */
a {
    text-decoration: none; /* Remove underline by default */
    color: inherit; /* Inherit color from the parent element */
}

a:hover {
    color: rgb(0, 42, 168); /* Change to blue when hovering */
    text-decoration: underline; /* Underline on hover */
}


.project-period {
    color: #666;
    font-size: 0.9rem;
}

.project-body {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Blog Card Styles */
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Section Styles */
#blog {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Controls */
.blog-controls {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.blog-controls-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.blog-control-item {
    flex: 1;
    min-width: 200px;
}

.blog-control-item:last-child {
    display: flex;
    justify-content: flex-end;
}

.search-container {
    position: relative;
}

.search-container i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.search-input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.category-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background-color: #fff;
}

.view-toggle {
    display: inline-flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.view-toggle-btn {
    background: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 0.9rem;
}

.view-toggle-btn.active {
    background: #f0f0f0;
}

.view-toggle-btn:first-child {
    border-right: 1px solid #ddd;
}

/* Blog Grid View */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.blog-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9e9e9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(26, 26, 26, 0.85);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8rem;
}

.blog-card-excerpt {
    color: #555555;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #777777;
    border-top: 1px solid #eaeaea;
    padding-top: 15px;
    margin-top: auto;
}

.blog-date {
    display: flex;
    align-items: center;
}

.blog-date i {
    margin-right: 5px;
}

.blog-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0070c9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.blog-read-more i {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

.blog-read-time {
    margin-left: 10px;
    font-size: 0.8rem;
}

/* Blog List View */
.blog-container {
    display: flex;
    gap: 30px;
}

.blog-main {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
    position: sticky;
    top: 30px;
    align-self: flex-start;
}

.blog-list-item {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.blog-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.blog-list-img {
    flex: 0 0 200px;
    height: 180px;
}

.blog-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-list-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.blog-list-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.blog-list-excerpt {
    color: #555555;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Sidebar Styles */
.sidebar-section {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: 1px solid #eaeaea;
    margin-bottom: 20px;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    color: #1a1a1a;
}

.featured-post-item {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.featured-post-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.featured-post-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.featured-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-post-content h6 a {
    color: #1a1a1a;
    text-decoration: none;
}

.featured-post-content h6 a:hover {
    color: #555;
}

.featured-post-date {
    font-size: 0.8rem;
    color: #777777;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    background: #f0f0f0;
    color: #333333;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.category-tag:hover, .category-tag.active {
    background: #1a1a1a;
    color: #ffffff;
}

.archive-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-links li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #eaeaea;
    padding-bottom: 10px;
}

.archive-links li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.archive-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-links a:hover {
    color: #1a1a1a;
}

.archive-count {
    background: #f0f0f0;
    border-radius: 50px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555555;
}

/* Pagination Styles */
.blog-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.page-item.active .page-link {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
}

.page-link:hover:not(.active) {
    background-color: #f0f0f0;
    color: #1a1a1a;
    border-color: #d0d0d0;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.modal-meta {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}

.modal-category {
    background: #0071e3;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #777;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
    flex-grow: 1;
}

.modal-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
}

.modal-text h3 {
    font-size: 1.5rem;
    margin: 1.5em 0 0.5em;
    color: #1a1a1a;
}

.modal-text p {
    margin-bottom: 1em;
}

.modal-text ul, .modal-text ol {
    margin-bottom: 1em;
    padding-left: 2em;
}

.modal-text li {
    margin-bottom: 0.5em;
}

.modal-footer {
    border-top: 1px solid #eaeaea;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-share {
    display: flex;
    align-items: center;
}

.share-text {
    margin-right: 10px;
    font-size: 0.9rem;
    color: #555;
}

.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #1a1a1a;
    margin-right: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-link:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-3px);
}

.blog-navigation {
    display: flex;
    gap: 10px;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #f0f0f0;
    border-color: #d0d0d0;
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-button i {
    margin: 0 5px;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 40px 0;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.no-results h3 {
    color: #555555;
    font-weight: 600;
    margin-bottom: 10px;
}

.no-results p {
    color: #777777;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-container {
        flex-direction: column;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .blog-list-img {
        flex: 0 0 150px;
    }
}

@media (max-width: 768px) {
    .blog-controls-row {
        flex-direction: column;
    }
    
    .blog-control-item:last-child {
        justify-content: center;
        margin-top: 15px;
    }
    
    .blog-list-item {
        flex-direction: column;
    }
    
    .blog-list-img {
        height: 200px;
        width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
}




/* Research Metrics */
.metric-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: #0071e3;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1rem;
    color: #666;
}

.btn-custom {
    background-color: #0071e3;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 113, 227, 0.3);
}

.btn-custom:hover {
    background-color: #0071e3;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 113, 227, 0.4);
}

.citation-chart {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    height: 300px; /* Set a fixed height for consistency */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    #hero {
        padding-top: 80px;
    }
    
    .text-block {
        text-align: center;
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .profile-image {
        margin: 0 auto 30px;
        max-width: 200px;
    }

    .project-card, .blog-card {
        margin-bottom: 20px;
    }
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
}

/* News Section */
#news {
    padding: 60px 0;
    background-color: #ffffff;
}

.news-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background-color: #f9f9f9;
}

.news-filters {
    display: flex;
}

.filter-btn {
    padding: 8px 16px;
    margin-right: 5px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #e6e6e6;
}

.news-search {
    display: flex;
    align-items: center;
    position: relative;
}

#newsSearch {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 200px;
    font-size: 14px;
}

#searchBtn {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 14px;
}

.news-table {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.news-header {
    display: flex;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 500;
}

.news-date-header {
    width: 150px;
    font-weight: 600;
}

.news-description-header {
    flex: 1;
    font-weight: 600;
}

.news-items {
    background-color: white;
}

.news-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    width: 150px;
    font-weight: 500;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-description {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.news-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    background-color: #eef2ff;
    color: #4361ee;
    border: 1px solid #d1dafa;
}

.news-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #3b82f6;
    font-weight: 500;
    transition: color 0.3s;
}

.news-link:hover {
    color: #2563eb;
}

.news-link i {
    margin-left: 6px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .news-filter-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-date {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .news-header {
        display: none;
    }
}
