        :root {
            --transition: all 0.3s ease;
        }
body::-webkit-scrollbar {
    display: none;
  }
        /* 主题变量 - 浅色主题 */
        .theme-blue {
            --primary-color: #1a365d;
            --secondary-color: #3182ce;
            --accent-color: #ed8936;
            --text-color: #fff;
            --light-text: #718096;
            --background-color: #f7fafc;
            --card-bg: #ffffff;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        /* 主题变量 - 黄色主题 */
        .theme-yellow {
            --primary-color: #333;
            --secondary-color: #fbbf24;
            --accent-color: #fbbf24;
            --text-color: #262626;
            --light-text: #737373;
            --background-color: #ffffff;
            --card-bg: #fff;
            --border-color: #fde047;
            --shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .container {
            max-width: 1140px !important;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            line-height: 1.6;
        }

        .theme-light {
            background-color: var(--background-color);
            color: var(--text-color);
        }

        .theme-yellow {
            background-color: var(--background-color);
            color: var(--text-color);
        }

        a {
            text-decoration: none;
        }

        .search {
            display: flex;
            align-items: center;
            margin: 0 auto 20px;
            justify-content: space-between;
            max-width: 600px;
            border-radius: 60px;
            background: #fff;
            border: 1px solid #1E1E1E;
        }

        .search input {
            border-radius: 0;
            border: none !important;
            margin-bottom: 0;
            padding: 8px 12px;
            width: 100%;
            height: auto;
            border-radius: 60px 0 0 60px;
            outline: none !important;
        }

        input:focus {
            border: none !important;
            /* 确保聚焦时也没有边框 */
            outline: none !important;
            /* 确保聚焦时没有轮廓 */
        }

        .search_btn a {
            padding: 8px 20px !important;
            color: #1E1E1E;
            border-radius: 60px;
        }

        /* 导航栏 */
        header {
            background-color: var(--primary-color);
            box-shadow: var(--shadow);
            /* position: sticky; */
            position: relative;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo a {
            color: white;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin-bottom: 0;
        }

        .nav-links li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-links li a:hover {
            color: white;
            transform: translateY(-2px);
        }

        .burger {
            display: none;
            cursor: pointer;
            color: white;
            font-size: 1.5rem;
        }

        .burger .line1,
        .burger .line2,
        .burger .line3 {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px 0;
            transition: var(--transition);
        }

        /* 响应式导航栏 */
        @media (max-width: 768px) {
         
            .nav-links {
                position: fixed;
                right: 0;
                top: 0;
                background-color: var(--primary-color);
                flex-direction: column;
                width: 100%;
                height: 100vh;
                align-items: center;
                justify-content: flex-start;
                padding: 1rem 0;
                gap: 2rem;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                pointer-events: none;
                transition: var(--transition);
                padding-top: 100px;

            }

            .nav-links.nav-active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .burger {
                display: block;
                position: relative;
                z-index: 1001;
            }

            .burger.toggle {
                        position: fixed;
        right: 17px;
        top: 7px;
            }

            .burger.toggle .line1,
            .burger.toggle .line2,
            .burger.toggle .line3 {
                display: none;
            }
        }


        .dt-content table {
            width: 100% !important;
            overflow: auto !important;
            display: block !important;
        }

        .dt-content table tr {
            background-color: transparent !important;
        }

        .dt-content a {
            display: inline-block;
        }

        .dt-content h1,
        .dt-content h2,
        .dt-content h3,
        .dt-content h4,
        .dt-content h1 span,
        .dt-content h2 span,
        .dt-content h3 span,
        .dt-content h4 span {
            font-size: 16px !important;
            line-height: 1.5 !important;
            text-indent: 0 !important;
            margin-top: 0 !important;
            margin-bottom: 15px !important;
            font-style: normal !important;
            font-weight: 600 !important;
            color: #333 !important;
            font-family: 'Noto Sans SC', sans-serif !important;
        }

        .dt-content .dt-title {
            font-size: 20px !important;
            line-height: 1.5 !important;
            color: #333 !important;
            margin-bottom: 15px !important;
            font-style: normal;
            font-weight: 600 !important;
            font-family: 'Noto Sans SC', sans-serif !important;
        }


        .dt-content p,
        .dt-content span,
        .dt-content ul li,
        .dt-content ol li {
            color: #333 !important;
            font-size: 16px !important;
            line-height: 1.5 !important;
            text-indent: 0 !important;
            margin-top: 0 !important;
            margin-bottom: 15px !important;
            font-style: normal !important;
            font-family: 'Noto Sans SC', sans-serif !important;
            font-weight: 400 !important;
            text-align: left !important;
            margin-left: 0 !important;
        }

        .dt-content ul,
        .dt-content ol {
            margin-bottom: 15px;
            margin-left: 0px !important;
            padding-left: 30px !important;
            font-family: 'Noto Sans SC', sans-serif !important;
        }

        .dt-content ul,
        .dt-content ul li {
            list-style: disc;
        }

        .dt-content ol,
        .dt-content ol li {
            list-style: decimal;
        }

        .dt-content img {
            display: block;
            cursor: auto;
            width: 100% !important;
            max-width: 400px !important;
            height: auto !important;
            margin: auto;
            margin-bottom: 15px;
        }

        .dt-content strong,
        .dt-content strong span {
            font-weight: 600 !important;
        }

        /* 英雄区域 */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .category-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .category-btn {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
        }

        .category-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .category-btn.active {
            background-color: var(--accent-color);
        }

        /* 主要内容区域 */
        .main-content {
            padding: 1.5rem 0;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--primary-color);
            position: relative;
            padding-left: 1rem;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--accent-color);
        }

        /* 头条新闻 */
        .headline-news {
            margin-bottom: 3rem;
        }

        .headline-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .headline-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .headline-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .headline-content {
            padding: 1.5rem;
        }

        .headline-category {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .headline-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .headline-excerpt {
            color: var(--light-text);
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.875rem;
            color: var(--light-text);
        }

        .news-meta i {
            margin-right: 0.25rem;
        }

        /* 新闻网格 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .news-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .news-content {
            padding: 1.25rem;
        }

        .news-category {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .news-title {
            font-size: 1.125rem;
            line-height: 1.5;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-excerpt {
            color: var(--light-text);
            font-size: 0.875rem;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            margin: 0;
        }

        /* 特色新闻区域 */
        .featured-news {
            margin-bottom: 3rem;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: stretch;
        }

        .featured-main {
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .featured-main:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .featured-main-image {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
        }

        .featured-main-content {
            padding: 1.5rem;
        }

        .featured-secondary {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1.5rem;
            height: 100%;
        }

        .featured-secondary-item {
            display: flex;
            gap: 1rem;
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .featured-secondary-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .featured-secondary-image {
            width: 120px;
            height: 100%;
            object-fit: cover;
        }

        .featured-secondary-content {
            padding: 1rem;
            flex: 1;
        }

        .featured-secondary-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* 横向滚动新闻 */
        .horizontal-news {
            /* margin-bottom: 3rem; */
        }

        .horizontal-scroll {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            padding-bottom: 1rem;
            scrollbar-width: thin;
            scrollbar-color: var(--secondary-color) var(--border-color);
        }

        .horizontal-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .horizontal-scroll::-webkit-scrollbar-track {
            background: var(--border-color);
            border-radius: 3px;
        }

        .horizontal-scroll::-webkit-scrollbar-thumb {
            background-color: var(--secondary-color);
            border-radius: 3px;
        }

        .horizontal-card {
            min-width: 330px;
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .horizontal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .horizontal-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .horizontal-content {
            padding: 1rem;
        }

        /* 新闻列表样式 */
        .news-list {
            /* margin-bottom: 3rem; */
        }

        .news-section {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .list-item {
            display: flex;
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            /* margin-bottom: 1.5rem; */
            transition: var(--transition);
            width: calc(50% - 0.75rem);
        }

        .list-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .list-image {
            width: 45%;
            height: 100%;
            object-fit: cover;
        }

        .list-content {
            padding: 1.5rem;
            width: 55%;
        }

        .list-title {
            font-size: 1.125rem;
            line-height: 1.5;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .list-excerpt {
            color: var(--light-text);
            margin-bottom: 0rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 0.875rem;
        }

        /* 主内容区域等高布局 */
        .main-content .row {
            display: flex;
            align-items: stretch;
        }

        .main-content .col-lg-8,
        .main-content .col-lg-4 {
            display: flex;
            flex-direction: column;
        }

        .main-content .sidebar {
            height: 100%;
        }

        .main-content .sidebar-section {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* 图片轮播 */
        .carousel-section {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .carousel {
            position: relative;
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .carousel-inner {
            position: relative;
            width: 100%;
            flex: 1;
        }

        .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            flex-direction: column;
        }

        .carousel-item.active {
            opacity: 1;
        }

        .carousel-image {
            width: 100%;
            flex: 1;
            height: 100%;
            object-fit: cover;
            min-height: 0;
        }

        .carousel-content {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 2rem 5rem;
            flex-shrink: 0;
            position: absolute;
            z-index: 99;
            bottom: 0;
        }

        .carousel-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .carousel-excerpt {
            margin-bottom: 1rem;
            opacity: 0.9;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .carousel-controls {
            position: absolute;
                bottom: 0;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 1rem;
            z-index: 99;
        }

        .carousel-control {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-control:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }

        .carousel-indicators {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .carousel-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-indicator.active {
            background-color: white;
        }

        /* 侧边栏 */
        .sidebar {
            padding-left: 1rem;
        }

        .sidebar-section {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            /* margin-bottom: 2rem; */
        }

        .sidebar-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 0.5rem;
        }

        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

        /* 热门新闻 */
        .trending-news {
            list-style: none;
            counter-reset: trending-counter;
            margin-bottom: 0;
            padding: 0;
        }

        .trending-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
            counter-increment: trending-counter;
            text-decoration: none;
        }

        .trending-news li:last-child .trending-item {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .trending-number {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--accent-color);
            opacity: 0.5;
            line-height: 1;
        }

        .trending-number::before {
            content: counter(trending-counter);
        }

        .trending-content {
            flex: 1;
        }

        .trending-title {
            font-size: 0.875rem;
            line-height: 1.5;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .trending-time {
            font-size: 0.75rem;
            color: var(--light-text);
        }

        /* 订阅区域 */
        .subscribe-section {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .subscribe-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .subscribe-subtitle {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .subscribe-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .subscribe-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }

        .subscribe-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 4px 4px 0;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
        }

        .subscribe-btn:hover {
            background-color: #dd6b20;
        }

        /* 页脚 */
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 1.5rem 0;
        }

        .footer-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .footer-bottom p {
            margin: 0;
        }

        /* 页脚版权菜单 */
        .footer-copyright-menu {
            text-align: center;
        }

        .footer-copyright-menu ul {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
            padding: 0;
        }

        .footer-copyright-menu ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.875rem;
        }

        .footer-copyright-menu ul li a:hover {
            color: white;
            transform: translateY(-2px);
        }

        /* 响应式设计 */
        @media (max-width: 991px) {
            .sidebar {
                padding-left: calc(var(--bs-gutter-x) * .5);
                margin-top: 1rem;
            }

            .hero-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.75rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .headline-image {
                height: 300px;
            }


            .subscribe-form {
                flex-direction: column;
            }

            .subscribe-input {
                border-radius: 4px;
                margin-bottom: 1rem;
            }

            .subscribe-btn {
                border-radius: 4px;
            }

            .list-content {
                padding: 1rem;
            }

            .carousel-section {
                height: auto;
            }

            .carousel {
                min-height: 300px;
                flex: none;
            }

            .list-item {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .news-grid {
                grid-template-columns: 1fr;
            }

            .navbar {
                padding: 0.5rem 0;
            }

            .main-content {
                padding: .6rem 0;
            }

            .section-title {
                font-size: 1.25rem;
                margin-bottom: 1rem;
            }

            .carousel-content {
                padding: 2rem 4rem;
            }

            .carousel-title {
                font-size: 1.125rem;
            }

            .carousel-excerpt {
                font-size: 0.875rem;
                margin: 0;
            }

            .sidebar-section {
                padding: 1rem
            }

            .trending-title,
            .news-excerpt {
                margin-bottom: 0;
            }

            .trending-item {
                margin-bottom: 0.75rem;
                padding-bottom: 0.75rem;
            }

            .horizontal-card {
                min-width: 260px;
            }

            .news-title {
                font-size: 1.125rem;
            }

            .horizontal-content,
            .list-content,
            .news-content {
                padding: 0.75rem;
            }

            .news-title,
            .list-title {
                font-size: 1rem;
            }

            .news-category,
            .list-title,
            .news-title {
                margin-bottom: 0.5rem;
            }

            .list-excerpt {
                font-size: 0.75rem;
            }

            .footer-copyright-menu ul {
                gap: 1rem;
            }

            .footer-copyright-menu ul li {
                width: 40%;
            }

            .carousel {
                min-height: 250px;
                flex: none;
            }

            .carousel-controls {
                padding: 0 0.5rem;
            }

            .carousel-control {
                width: 30px;
                height: 30px;
            }
        }