/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Open+Sans:wght@400;600&display=swap'); /* For Chinese & English readability */

:root {
    --primary-color: #6a00ff; /* Purple from your screenshot */
    --secondary-color: #5d00d2; /* Darker Purple */
    --accent-color: #00bcd4; /* Cyan */
    --text-color-dark: #333;
    --text-color-light: #666;
    --background-light: #f8f8f8;
    --border-color: #eee;
    --hover-color: #e0e0e0;
    --header-bg: #fff;
    --footer-bg: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: #fff;
    font-size: 15px; /* Base font size */
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.top-bar-wrapper {
    background-color: var(--header-bg);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 22px 66px;
}

.logo {
}

.logo img {
    height: 28px;
    margin-right: 0;
    display: block; 
}

.logo-text {
    font-size: 12px;
    color: var(--text-color-light);
    font-family: 'Montserrat', sans-serif;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 38px;
}

.main-nav ul li a {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 500;
    color: var(--text-color-dark);
    font-size: 16px;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    padding: 3px 10px;
    background-color: var(--background-light);
}

.search-box input {
    border: none;
    outline: none;
    padding: 5px;
    width: 180px;
    font-size: 14px;
    background-color: transparent;
}

.search-box button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-color-light);
    font-size: 14px;
    padding-left: 5px;
}

.search-box button:hover {
    color: var(--primary-color);
}

/* Hero Banner Area (Homepage) */
.hero-banner-area {
    padding: 30px 0;
}

.hero-banner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.main-banner-card {
    flex: 2;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #fff;
    /* Ensure height is consistent whether image or not */
    height: 350px; /* Fixed height for consistency */
}

.main-banner-card img {
    width: 100%;
    height: 100%; /* Fill the card height */
    object-fit: cover;
    display: block;
    position: absolute; /* Position the image for overlay */
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #fff;
    padding: 25px;
    text-align: left;
    z-index: 2; /* Ensure overlay is above image */
}

.banner-overlay-content h2 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.banner-overlay-content h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

.sub-banner-card {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* Remove background-color: #fff; if you want the gradient to be the primary background */
    height: 350px; /* Fixed height to match main banner */

    /* CSS Gradient Background - based on your screenshot's purple tones */
    background: linear-gradient(to bottom right, #9E15D7, #952AE1); /* Example: purple to darker purple */
    display: flex; /* To align content vertically */
    align-items: flex-end; /* Align content to bottom */
}

/* Remove img styles for sub-banner as it's now a gradient */
.sub-banner-card img {
    display: none; /* Hide image if present */
}

.sub-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* You can still have a subtle gradient for text readability if needed */
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    color: #fff;
    padding: 33px;
    text-align: center;
    z-index: 2; /* Ensure overlay is above gradient if any other elements were under it */
}

.sub-banner-overlay h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 18px;
    line-height: 26.4;
    font-weight: 500;
}


/* Main Content Layout */
.main-content-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 3px 15px;
    gap: 30px;
}

.left-column {
    flex: 2.3;
}

.right-column {
    flex: 1;
}

section {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

section h3 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.more-link {
    font-size: 14px;
    color: var(--text-color-light);
    font-weight: 400;
}

.more-link:hover {
    color: var(--primary-color);
}

/* News Section (Left Column, Top) */
.news-section {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 25px;
}

.news-item-lg {
    flex: 1.5;
}

.news-item-lg .news-img {
    display: block;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
}

.news-item-lg .news-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item-lg:hover .news-img img {
    transform: scale(1.05);
}

.news-item-lg .news-content h3 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
    height: 60px;
    overflow: hidden;
}

.news-item-lg .news-content h3 a {
    color: var(--text-color-dark);
}

.news-item-lg .news-content h3 a:hover {
    color: var(--primary-color);
}

.news-item-lg .news-meta {
    font-size: 13px;
    color: var(--text-color-light);
    margin-bottom: 15px;
}

.news-item-lg .news-meta span {
    margin-right: 15px;
}

.news-item-lg .news-meta i {
    margin-right: 5px;
}

.news-item-lg .news-description {
    font-size: 14px;
    color: var(--text-color-light);
    line-height: 1.6;
    height: 70px;
    overflow: hidden;
}

.news-list-sm {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

.news-item-sm {
    padding-bottom: 0px;
    margin-bottom: 15px;
}

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

.news-item-sm h3 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: hidden;
}

.news-item-sm h3 a {
    color: var(--text-color-dark);
}

.news-item-sm h3 a:hover {
    color: var(--primary-color);
}

.news-item-sm .news-meta {
    font-size: 12px;
    color: var(--text-color-light);
}

/* Hot Articles Section (Left Column, Bottom) */
.hot-articles-section h3 {
    border-bottom-color: var(--primary-color);
}

.article-grid-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.article-card-two-col {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.article-card-two-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.article-card-two-col .card-img {
    display: block;
    height: 150px;
    overflow: hidden;
}

.article-card-two-col .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.article-card-two-col:hover .card-img img {
    transform: scale(1.05);
}

.article-card-two-col .card-content {
    padding: 15px;
}

.article-card-two-col h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 17px;
    margin-bottom: 8px;
    height: 52px;
    overflow: hidden;
}

.article-card-two-col h4 a {
    color: var(--text-color-dark);
}

.article-card-two-col h4 a:hover {
    color: var(--primary-color);
}

.article-card-two-col .meta {
    font-size: 13px;
    color: var(--text-color-light);
}

.article-card-two-col .meta i {
    margin-right: 5px;
}

/* Right Column: Fast News & Top News Ranking */
.fast-news ul li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 22px;
}

.fast-news ul li:last-child {
    border-bottom: none;
}

.fast-news ul li .time {
    position: absolute;
    left: 0;
    top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
    text-align: right;
}

.fast-news ul li a {
    font-size: 15px;
    color: var(--text-color-dark);
    line-height: 1.4;
    flex-grow: 1;
    margin-right: 5px;
}

.fast-news ul li a:hover {
    color: var(--primary-color);
}

.fast-news ul li .source {
    font-size: 12px;
    color: var(--text-color-light);
    background-color: var(--background-light);
    padding: 2px 6px;
    border-radius: 3px;
    flex-shrink: 0;
    white-space: nowrap;
}


.top-news ol {
    list-style: none;
    padding-left: 0;
    counter-reset: item;
}

.top-news ol li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
}

.top-news ol li:last-child {
    border-bottom: none;
}

.top-news ol li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 10px;
    width: 18px;
    height: 18px;
    background-color: var(--border-color);
    color: var(--text-color-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-news ol li:nth-child(1)::before,
.top-news ol li:nth-child(2)::before,
.top-news ol li:nth-child(3)::before {
    background-color: var(--primary-color);
    color: #fff;
}

.top-news ol li a {
    font-size: 15px;
    color: var(--text-color-dark);
    flex-grow: 1;
    margin-right: 10px;
}

.top-news ol li a:hover {
    color: var(--primary-color);
}

.top-news ol li .rank-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    flex-shrink: 0;
}


/* List Page (General improvements) */
.list-page .page-header, .article-page .page-header {
    background-color: var(--background-light);
    padding: 25px 0;
    margin-bottom: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.list-page .page-header h2, .article-page .page-header h1 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-color-light);
}

.breadcrumb a {
    color: var(--text-color-light);
}

.breadcrumb span {
    color: var(--primary-color);
    font-weight: 600;
}

.article-list {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
}

.article-list .list-item {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.article-list .list-item:last-child {
    border-bottom: none;
}

.list-image {
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    margin-right: 20px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.list-item:hover .list-image img {
    transform: scale(1.05);
}

.list-content {
    flex-grow: 1;
}

.list-content h3 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.list-content h3 a {
    color: var(--text-color-dark);
}

.list-content h3 a:hover {
    color: var(--primary-color);
}

.list-meta {
    font-size: 13px;
    color: var(--text-color-light);
    margin-bottom: 12px;
}

.list-meta span {
    margin-right: 15px;
}

.list-meta i {
    margin-right: 5px;
}

.list-description {
    font-size: 14px;
    color: var(--text-color-light);
    margin-bottom: 12px;
    line-height: 1.6;
    height: 40px;
    overflow: hidden;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Pagination */
.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination ul {
    display: inline-flex;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.pagination ul li {
    margin: 0;
    border-right: 1px solid var(--border-color);
}

.pagination ul li:last-child {
    border-right: none;
}

.pagination ul li a,
.pagination ul li span {
    display: block;
    padding: 10px 15px;
    color: var(--text-color-dark);
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination ul li a:hover,
.pagination ul li .thisclass {
    background-color: var(--primary-color);
    color: #fff;
}

.pagination ul li .pageinfo {
    color: var(--text-color-light);
    background-color: var(--background-light);
}


/* Lives Page Styles */
.lives-page .container {
    padding: 40px 15px;
}

.lives-page .page-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lives-page .page-header h2 {
    font-size: 28px;
    color: var(--text-color-dark);
    margin: 0;
}

.lives-page .breadcrumb {
    font-size: 14px;
    color: var(--text-color-light);
}

.lives-page .breadcrumb a {
    color: var(--text-color-light);
}

.lives-page .breadcrumb a:hover {
    color: var(--primary-color);
}

/* 新增：主内容区布局 */
.lives-main-content {
    display: flex;
    gap: 30px; /* 左右列之间的间距 */
}

.lives-list-wrapper {
    flex: 3; /* 左侧快讯列表占据3份宽度 */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 15px), 1fr)); /* 一行2列，自动填充，减去gap */
    gap: 30px; /* 快讯项之间的间距 */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
}

.live-item {
    border: 1px solid var(--border-color); /* 添加边框 */
    border-radius: 8px;
    padding: 20px;
    background-color: var(--background-light); /* 浅色背景 */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 内容上下对齐 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.live-item:last-child {
    border-bottom: 1px solid var(--border-color); /* 移除单列时的最后一条底线，现在每项都有边框 */
}

.live-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-color-light);
}

.live-meta .live-time {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 15px;
}

.live-meta .live-source {
    background-color: var(--background-color); /* 调整背景色，与var(--background-light)区分 */
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 500;
}

.live-title {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 18px; /* 调整字体大小以适应两列布局 */
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1; /* 标题占据剩余空间 */
}

.live-title a {
    color: var(--text-color-dark);
    text-decoration: none; /* 移除下划线 */
}

.live-title a:hover {
    color: var(--primary-color);
}

.live-description {
    font-size: 14px; /* 调整字体大小 */
    color: var(--text-color-light);
    margin-bottom: 15px;
    line-height: 1.6;
    max-height: 60px; /* 适当减少高度以适应两列布局 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制描述显示3行 */
    -webkit-box-orient: vertical;
}

.live-readmore {
    font-size: 13px; /* 调整字体大小 */
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex; /* 使图标与文字对齐 */
    align-items: center;
    margin-top: 10px; /* 与描述保持一定距离 */
    text-decoration: none;
}

.live-readmore i {
    margin-left: 5px;
    font-size: 12px;
}

.live-readmore:hover {
    color: var(--secondary-color);
}


/* 新增：右侧边栏样式 */
.sidebar {
    flex: 1; /* 右侧边栏占据1份宽度 */
    min-width: 280px; /* 最小宽度，防止过窄 */
}

.hot-recommendations {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.hot-recommendations h3 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    text-align: center;
}

.hot-recommendations ul {
    list-style: none;
    padding: 0;
}

.hot-recommendations ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}

.hot-recommendations ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hot-recommendations ul li a {
    color: var(--text-color-dark);
    font-size: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block; /* 让链接占据整行 */
}

.hot-recommendations ul li a:hover {
    color: var(--primary-color);
}


/* 响应式调整 */
@media (max-width: 992px) {
    .lives-main-content {
        flex-direction: column; /* 小屏幕下左右列堆叠 */
        gap: 20px;
    }
    .lives-list-wrapper {
        grid-template-columns: 1fr; /* 小屏幕下一行一列 */
        padding: 20px;
    }
    .sidebar {
        min-width: unset; /* 移除最小宽度限制 */
        width: 100%;
    }
    .live-item {
        margin-bottom: 20px; /* 堆叠时增加底部间距 */
    }
    .live-item:last-child {
        margin-bottom: 0;
    }
    .live-title {
        font-size: 20px;
    }
    .live-description {
        max-height: 75px;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 768px) {
    .lives-page .page-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .lives-page .page-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .lives-list-wrapper {
        padding: 15px;
    }
    .live-item {
        padding: 15px;
    }
    .hot-recommendations {
        padding: 20px;
    }
    .hot-recommendations h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .lives-page .container {
        padding: 20px 10px;
    }
    .lives-page .page-header h2 {
        font-size: 20px;
    }
    .lives-list-wrapper {
        gap: 15px;
        padding: 10px;
    }
    .live-item {
        padding: 10px;
    }
    .live-title {
        font-size: 16px;
    }
    .live-description {
        font-size: 13px;
        max-height: unset;
        -webkit-line-clamp: unset;
    }
    .live-readmore {
        font-size: 12px;
    }
    .hot-recommendations h3 {
        font-size: 18px;
    }
    .hot-recommendations ul li a {
        font-size: 14px;
    }
}

/* Article Content Page Styles */
.article-page .left-column {
    flex: 3;
}

.article-page .right-column {
    flex: 1;
}

.article-content-wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.article-page .page-header {
    text-align: left;
    background-color: transparent;
    padding: 0;
    margin-bottom: 25px;
    box-shadow: none;
}

.article-title {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 36px;
    color: var(--text-color-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-meta {
    font-size: 14px;
    color: var(--text-color-light);
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.article-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color-dark);
    margin-bottom: 30px;
}

.article-body p {
    margin-bottom: 1em;
}

.article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.article-body h2, .article-body h3, .article-body h4 {
    font-family: 'Noto Sans SC', sans-serif;
    color: var(--primary-color);
    margin: 30px 0 15px;
    line-height: 1.4;
}

.article-body h2 { font-size: 28px; }
.article-body h3 { font-size: 24px; }
.article-body h4 { font-size: 20px; }

.article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-color-dark);
    font-weight: 600;
}

.article-tags a {
    display: inline-block;
    background-color: var(--background-light);
    padding: 5px 12px;
    border-radius: 20px;
    margin-left: 10px;
    color: var(--text-color-light);
    font-weight: 400;
}

.article-tags a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
}

.article-navigation div {
    flex: 1;
}

.article-navigation .prev-article {
    text-align: left;
    padding-right: 15px;
}

.article-navigation .next-article {
    text-align: right;
    padding-left: 15px;
}

.article-navigation a {
    color: var(--primary-color);
    font-weight: 600;
}

.article-navigation a:hover {
    color: var(--secondary-color);
}

.related-articles {
    margin-top: 30px;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.related-articles h3 {
    border-bottom-color: var(--primary-color);
}
.related-articles .article-card-two-col {
    border: none;
    box-shadow: none;
    background-color: transparent;
}
.related-articles .article-card-two-col:hover {
    transform: none;
    box-shadow: none;
}
.related-articles .article-card-two-col h4 {
    height: auto;
    font-size: 16px;
}
.related-articles .article-card-two-col p {
    height: auto;
}


/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 50px 0 20px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-right: 20px;
    margin-bottom: 30px;
}

.footer-col:last-child {
    margin-right: 0;
}

.footer-col h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 20px;
    position: relative;
    font-weight: 500;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: #666;
}

.footer-col p {
    line-height: 1.8;
    color: #ccc;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.social-icons a {
    display: inline-block;
    background-color: #555;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    color: #aaa;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-nav ul li {
        margin-left: 20px;
    }
    .hero-banner {
        flex-direction: column;
        gap: 20px;
    }
    .main-banner-card, .sub-banner-card {
        flex: none;
        width: 100%;
        height: 250px; /* Adjust height for smaller screens */
    }
    .main-content-wrapper, .list-page .container, .article-page .container {
        flex-direction: column;
        gap: 20px;
    }
    .left-column, .right-column {
        width: 100%;
    }
    .right-column section {
        margin-top: 0;
    }
    .news-section {
        flex-direction: column;
        gap: 20px;
    }
    .news-list-sm {
        padding-left: 0;
        border-left: none;
        border-top: 1px dashed var(--border-color);
        padding-top: 20px;
        margin-top: 20px;
    }
    .article-grid-two-col {
        grid-template-columns: 1fr;
    }
    .list-image {
        width: 180px;
        height: 120px;
    }
    .footer-content {
        justify-content: center;
    }
    .footer-col {
        text-align: center;
        margin-right: 0;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 20px;
    }
    .logo {
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
    }
    .main-nav {
        width: 100%;
        order: 2;
        margin-top: 20px;
        border-top: 1px solid var(--border-color);
        padding-top: 15px;
    }
    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    .main-nav ul li {
        margin: 0 15px 10px;
    }
    .search-box {
        order: 1;
        width: 80%;
        max-width: 350px;
        margin: 0 auto;
    }

    .main-banner-card, .sub-banner-card {
        height: 200px; /* Further adjust height for smaller screens */
    }
    .banner-overlay-content h2 {
        font-size: 24px;
    }
    .banner-overlay-content h3 {
        font-size: 14px;
    }
    .sub-banner-overlay h4 {
        font-size: 16px;
    }

    .news-item-lg .news-content h3 {
        font-size: 20px;
        height: auto;
    }
    .news-item-sm h3 {
        font-size: 16px;
        height: auto;
    }
    .article-card-two-col h4 {
        font-size: 16px;
        height: auto;
    }

    .article-title {
        font-size: 28px;
    }
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .list-item {
        flex-direction: column;
    }
    .list-image {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .main-nav ul li {
        margin: 0 10px 10px;
    }
    .search-box {
        width: 100%;
    }
    .search-box input {
        width: calc(100% - 40px);
    }
    .hero-banner-area {
        padding: 20px 0;
    }
    .main-banner-card, .sub-banner-card {
        height: 150px; /* Smallest height for mobile */
    }
    .banner-overlay-content {
        padding: 15px;
    }
    .banner-overlay-content h2 {
        font-size: 20px;
    }
    .banner-overlay-content h3 {
        font-size: 13px;
    }
    .sub-banner-overlay h4 {
        font-size: 14px;
    }
    section {
        padding: 15px;
    }
    section h3 {
        font-size: 18px;
    }
    .article-title {
        font-size: 24px;
    }
    .list-content h3 {
        font-size: 18px;
    }
    .list-description {
        height: auto;
    }
    .live-title {
        font-size: 18px;
    }
    .live-description {
        max-height: auto;
    }
}
        /* Article Page Specific Styles (can be moved to main.css if preferred) */
        .article-main-wrapper {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            padding: 40px 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .article-social-share {
            flex-shrink: 0; /* 不允许缩小 */
            width: 60px; /* 固定宽度 */
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 20px;
            position: sticky; /* 粘性定位 */
            top: 100px; /* 根据你的header高度调整 */
            height: fit-content; /* 高度自适应内容 */
        }

        .article-social-share .share-item {
            margin-bottom: 15px;
        }

        .article-social-share .share-item a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--background-light);
            color: var(--text-color-light);
            font-size: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .article-social-share .share-item a:hover {
            color: #fff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        /* Specific social colors */
        .article-social-share .share-item.telegram a:hover { background-color: #0A66C2; }
        .article-social-share .share-item.X a:hover { background-color: #000; }
        .article-social-share .share-item.facebook a:hover { background-color: #1877F2; }
        .article-social-share .share-item.linkedin a:hover { background-color: #0A66C2; }


        .article-detail-content {
            flex-grow: 1; /* 中间内容区域占据剩余空间 */
            max-width: 800px; /* 限制内容宽度 */
        }

        .article-right-sidebar {
            flex-shrink: 0; /* 不允许缩小 */
            width: 320px; /* 固定右侧边栏宽度 */
        }

        .article-content-wrapper {
            margin-bottom: 0; /* Remove bottom margin if main content wraps it */
            box-shadow: none; /* Remove shadow if outer wrapper has it */
        }

        .article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .article-main-wrapper {
                flex-direction: column; /* 小屏幕下堆叠 */
                gap: 20px;
            }
            .article-social-share {
                width: 100%; /* 社交分享占据全宽 */
                position: static; /* 取消粘性定位 */
                flex-direction: row; /* 水平排列 */
                justify-content: center;
                padding-top: 0;
                margin-bottom: 20px;
                border-bottom: 1px dashed var(--border-color);
                padding-bottom: 20px;
            }
            .article-social-share .share-item {
                margin: 0 10px 0 0; /* 调整间距 */
            }
            .article-social-share .share-item:last-child {
                margin-right: 0;
            }
            .article-detail-content, .article-right-sidebar {
                width: 100%; /* 占据全宽 */
                max-width: unset;
            }
        }

        @media (max-width: 768px) {
            .article-social-share .share-item a {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .article-page .page-header {
                padding: 0 15px; /* Add padding for title on small screens */
            }
        }
        @media (max-width: 480px) {
            .article-social-share .share-item a {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            .article-page .page-header {
                padding: 0 10px;
            }
        }