@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=ZCOOL+XiaoWei&display=swap');

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

:root {
    --primary: #e53935;
    --primary-dark: #c62828;
    --secondary: #43a047;
    --secondary-dark: #2e7d32;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-dark: #212121;
    --text-gray: #616161;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
    --radius: 6px;
}

body {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.top-bar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-gray);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}

.top-bar a {
    margin-left: 15px;
    color: var(--text-gray);
}

.top-bar a:hover {
    color: var(--primary);
}

.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 22px;
    font-weight: bold;
}

.logo-text {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 26px;
    color: var(--text-dark);
}

.logo-text span {
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
}

.search-box input {
    border: none;
    outline: none;
    padding: 8px 14px;
    font-size: 14px;
    width: 220px;
    font-family: inherit;
}

.search-box button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: background-color 0.2s;
}

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

.user-actions {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: var(--radius);
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav {
    background-color: var(--primary);
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.2);
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav li a {
    display: block;
    padding: 0 28px;
    line-height: 46px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.nav li a:hover,
.nav li a.active {
    background-color: var(--primary-dark);
}

.breadcrumb {
    background-color: var(--bg-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-gray);
}

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

.breadcrumb .separator {
    margin: 0 8px;
    color: var(--border-color);
}

.banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #b71c1c 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
}

.banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner-content {
    flex: 1;
}

.banner h1 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.banner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.banner-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.banner-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    backdrop-filter: blur(4px);
}

.banner-image {
    flex: 0 0 380px;
    height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.section-title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 22px;
    color: var(--text-dark);
    position: relative;
    padding-left: 16px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 22px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-more {
    font-size: 13px;
    color: var(--text-gray);
}

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

.channel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.channel-card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.channel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.channel-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.channel-icon.news { background: linear-gradient(135deg, #e53935, #c62828); }
.channel-icon.entertainment { background: linear-gradient(135deg, #ab47bc, #7b1fa2); }
.channel-icon.sports { background: linear-gradient(135deg, #43a047, #2e7d32); }
.channel-icon.tech { background: linear-gradient(135deg, #1e88e5, #1565c0); }
.channel-icon.finance { background: linear-gradient(135deg, #fb8c00, #ef6c00); }
.channel-icon.life { background: linear-gradient(135deg, #8e24aa, #6a1b9a); }
.channel-icon.world { background: linear-gradient(135deg, #00897b, #00695c); }
.channel-icon.opinion { background: linear-gradient(135deg, #546e7a, #37474f); }

.channel-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.channel-count {
    font-size: 12px;
    color: var(--text-gray);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.card-body {
    padding: 16px;
}

.card-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.card-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-gray);
}

.card-meta .source {
    color: var(--secondary);
}

.card-excerpt {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.headline-list {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.headline-list .section-title {
    margin-bottom: 16px;
}

.headline-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
    gap: 12px;
}

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

.headline-rank {
    flex: 0 0 24px;
    height: 24px;
    background-color: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.headline-item:nth-child(2) .headline-rank {
    background-color: #ff7043;
}

.headline-item:nth-child(3) .headline-rank {
    background-color: #ffca28;
}

.headline-info {
    flex: 1;
    min-width: 0;
}

.headline-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

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

.headline-meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--text-gray);
}

.headline-thumb {
    flex: 0 0 100px;
    height: 64px;
    border-radius: 4px;
    overflow: hidden;
}

.headline-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.widget {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.widget-header {
    padding: 14px 18px;
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    font-size: 15px;
}

.widget-body {
    padding: 16px 18px;
}

.hot-list {
    list-style: none;
}

.hot-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    gap: 10px;
}

.hot-list li:last-child {
    border-bottom: none;
}

.hot-rank {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    background-color: #bdbdbd;
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.hot-list li:nth-child(1) .hot-rank { background-color: #d32f2f; }
.hot-list li:nth-child(2) .hot-rank { background-color: #f57c00; }
.hot-list li:nth-child(3) .hot-rank { background-color: #fbc02d; color: #212121; }

.hot-title {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.hot-count {
    font-size: 12px;
    color: var(--text-gray);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--bg-light);
    border-radius: 14px;
    font-size: 12px;
    color: var(--text-gray);
    transition: all 0.2s;
}

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

.tabs {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
    gap: 0;
}

.tab {
    padding: 12px 24px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    font-family: inherit;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

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

.tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 500;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.news-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}

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

.news-item-thumb {
    flex: 0 0 220px;
    height: 140px;
    border-radius: var(--radius);
    overflow: hidden;
}

.news-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-body {
    flex: 1;
    min-width: 0;
}

.news-item-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

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

.news-item-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-gray);
}

.news-item-meta .category {
    color: var(--primary);
    font-weight: 500;
}

.news-item-meta .source {
    color: var(--secondary);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .current {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.content-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.content-title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-meta {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-gray);
}

.content-meta .source {
    color: var(--secondary);
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-text p {
    margin-bottom: 18px;
}

.content-text h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 22px;
    margin: 28px 0 16px;
    color: var(--primary);
}

.content-text h3 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.content-text ul,
.content-text ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.content-text li {
    margin-bottom: 8px;
}

.info-card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.info-card h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.info-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin: 20px 0 12px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 14px;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li strong {
    color: var(--primary);
    margin-right: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group label .required {
    color: var(--primary);
    margin-left: 4px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    background-color: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background-color: var(--primary);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

.form-submit:hover {
    background-color: var(--primary-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.team-member {
    background-color: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.team-member:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.team-name {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.team-role {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 8px;
}

.team-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    background-color: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.contact-item:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

.contact-icon.phone { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.contact-icon.email { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.contact-icon.address { background: linear-gradient(135deg, #1e88e5, #1565c0); }

.contact-label {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-value a:hover {
    color: var(--primary);
}

.footer {
    background-color: #212121;
    color: #bdbdbd;
    margin-top: 40px;
}

.footer-main {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 18px;
    font-family: 'ZCOOL XiaoWei', serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    font-size: 13px;
    color: #bdbdbd;
    transition: color 0.2s;
}

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

.social-list {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-list a {
    width: 36px;
    height: 36px;
    background-color: #424242;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdbdbd;
    font-size: 14px;
    transition: all 0.2s;
}

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

.footer-bottom {
    background-color: #1a1a1a;
    padding: 18px 0;
    font-size: 13px;
    text-align: center;
    color: #9e9e9e;
}

.footer-bottom a {
    color: #bdbdbd;
    margin: 0 6px;
}

.footer-bottom a:hover {
    color: var(--primary);
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 3px;
    color: white;
    margin-right: 6px;
}

.badge-hot { background-color: var(--primary); }
.badge-new { background-color: var(--secondary); }
.badge-top { background-color: #fb8c00; }

.list-compact {
    list-style: none;
}

.list-compact li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.list-compact li:last-child {
    border-bottom: none;
}

.list-compact a {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

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

.list-compact .date {
    font-size: 12px;
    color: var(--text-gray);
    flex-shrink: 0;
}

.category-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.category-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background-color: var(--bg-white);
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .channel-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner .container {
        flex-direction: column;
        text-align: center;
    }

    .banner-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav ul {
        flex-wrap: wrap;
    }

    .nav li a {
        padding: 0 16px;
        font-size: 14px;
        line-height: 42px;
    }

    .header .container {
        flex-direction: column;
        gap: 16px;
    }

    .search-box input {
        width: 150px;
    }

    .banner h1 {
        font-size: 26px;
    }

    .channel-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .three-col {
        grid-template-columns: 1fr;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item-thumb {
        flex: none;
        width: 100%;
        height: 200px;
    }

    .content-wrapper {
        padding: 24px 20px;
    }

    .content-title {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 calc(50% - 10px);
    }

    .two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        flex: 1 1 100%;
    }

    .banner h1 {
        font-size: 22px;
    }

    .banner p {
        font-size: 14px;
    }

    .logo-text {
        font-size: 22px;
    }

    .section-title {
        font-size: 18px;
    }
}