 
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            cursor: default;
        }
        
        body {
            background-color: #f5f3e9;
            color: #2d3e2d;
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(144, 164, 127, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(184, 207, 167, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(160, 184, 147, 0.05) 0%, transparent 50%);
            transition: all 0.5s ease;
        }
        
        /* Dark mode styles */
        body.dark-mode {
            background-color: #0a0e1a;
            color: #e0e0e0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
        }
        
        /* Header and Navigation */
        header {
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(107, 142, 91, 0.2);
            background-color: rgba(255, 253, 245, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 0.8rem 5%;
            background-color: rgba(255, 253, 245, 0.98);
        }
        
        header.scrolled .theme-toggle {
            width: 45px;
            height: 22px;
        }
        
        header.scrolled .toggle-icon {
            width: 18px;
            height: 18px;
            top: 2px;
            left: 2px;
        }
        
        body.dark-mode header.scrolled .toggle-icon {
            left: 25px;
        }
        
        body.dark-mode header {
            background-color: rgba(10, 14, 26, 0.95);
            border-bottom-color: rgba(79, 70, 229, 0.2);
        }
        
        body.dark-mode header.scrolled {
            background-color: rgba(10, 14, 26, 0.98);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
        }
        
        .logo {
            width: 45px;
            height: 45px;
            transition: all 0.3s ease;
        }
        
        header.scrolled .logo {
            width: 35px;
            height: 35px;
        }
        
        .brand {
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .brand-name {
            font-family: 'Times New Roman', Times, serif;
            font-size: 1.8rem;
            font-weight: 500;
            color: #2d3e2d;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        body.dark-mode .brand-name {
            color: #e0e0e0;
        }
        
        .brand-name::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #6b8e5b, transparent);
            bottom: 0;
            left: 0;
            transition: width 0.4s ease;
        }
        
        .logo-container:hover .brand-name::after {
            width: 100%;
        }
        
        header.scrolled .brand-name {
            font-size: 1.4rem;
        }
        
        .tagline {
            font-size: 0.8rem;
            font-weight: 300;
            color: #7a9c6a;
            font-style: italic;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        header.scrolled .tagline {
            font-size: 0.7rem;
        }
        
        nav {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        nav ul {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        
        nav ul li {
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #2d3e2d;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding-bottom: 5px;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: #6b8e5b;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after,
        nav ul li a.active:after {
            width: 100%;
        }
        
        nav ul li a:hover,
        nav ul li a.active {
            color: #6b8e5b;
        }
        
        /* Dark mode toggle button */
        .theme-toggle {
            width: 50px;
            height: 25px;
            background: linear-gradient(135deg, #6b8e5b 0%, #90a47f 100%);
            border-radius: 30px;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            overflow: hidden;
            margin-right: 2rem;
            flex-shrink: 0;
        }
        
        body.dark-mode .theme-toggle {
            background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
        }
        
        .theme-toggle-inner {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .toggle-icon {
            position: absolute;
            top: 2.5px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            left: 2.5px;
        }
        
        body.dark-mode .toggle-icon {
            left: 27.5px;
        }
        
        .sun-icon, .moon-icon {
            position: absolute;
            font-size: 12px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .sun-icon {
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        
        .moon-icon {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        body.dark-mode .sun-icon {
            opacity: 0;
        }
        
        body.dark-mode .moon-icon {
            opacity: 1;
        }
        
        /* News Hero Section */
        .news-hero {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5rem 5% 7rem;
            background: linear-gradient(135deg, #a0b893 0%, #b8cfa7 50%, #90a47f 100%);
            position: relative;
            overflow: hidden;
            min-height: 60vh;
            transition: all 0.5s ease;
        }

        body.dark-mode .news-hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
        }

        .news-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 30%, rgba(184, 207, 167, 0.3) 0%, transparent 40%),
                radial-gradient(circle at 30% 50%, rgba(184, 207, 167, 0.3) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(144, 164, 127, 0.3) 0%, transparent 40%);
            z-index: 1;
        }

        .news-hero::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 80px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 80" preserveAspectRatio="none"><path d="M0,40 Q300,0 600,40 T1200,40 L1200,80 L0,80 Z" fill="%23f5f3e9"/></svg>');
            z-index: 2;
            transition: all 0.5s ease;
        }

        body.dark-mode .news-hero::after {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 80" preserveAspectRatio="none"><path d="M0,40 Q300,0 600,40 T1200,40 L1200,80 L0,80 Z" fill="%230a0e1a"/></svg>');
        }
        
        .news-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-hero h1 {
            font-family: 'Times New Roman', Times, serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 0.8s forwards;
            letter-spacing: -0.5px;
            line-height: 1.2;
            text-align: center;
        }

        body.dark-mode .news-hero h1 {
            color: #fff;
        }

        .news-hero-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            color: #fff;
            line-height: 1.8;
            animation: fadeInUp 0.8s forwards 0.3s;
            opacity: 0;
            text-align: center;
            margin-bottom: 3rem;
        }

        body.dark-mode .news-hero-subtitle {
            color: #fff;
        }

        /* Particle Canvas */
        #particle-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.6;
        }

        /* Stars for dark mode */
        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        body.dark-mode .stars {
            opacity: 1;
        }

        .star {
            position: absolute;
            background: #fff;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        .star.bright-star {
            box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
        }

        /* Shooting stars */
        .shooting-star {
            position: absolute;
            top: 20%;
            width: 2px;
            height: 2px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 10px #fff;
            animation: shootingStar 3s infinite;
            opacity: 0;
        }

        body.dark-mode .shooting-star {
            opacity: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        @keyframes shootingStar {
            0% {
                opacity: 0;
                transform: translateX(-100px) translateY(0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateX(300px) translateY(200px);
            }
        }

        /* Search Section */
        .search-section {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-form {
            display: flex;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.9);
            padding: 0.5rem;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(107, 142, 91, 0.1);
            transition: all 0.3s ease;
        }
        
        body.dark-mode .search-form {
            background: rgba(30, 41, 59, 0.9);
            border-color: rgba(99, 102, 241, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .search-form:focus-within {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }
        
        body.dark-mode .search-form:focus-within {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            font-size: 1rem;
            color: #2d3e2d;
            outline: none;
        }
        
        body.dark-mode .search-input {
            color: #e0e0e0;
        }
        
        .search-input::placeholder {
            color: #8a9b8a;
            font-style: italic;
        }
        
        body.dark-mode .search-input::placeholder {
            color: #6b7280;
        }
        
        .search-btn {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, #6b8e5b 0%, #5a7a4a 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        
        body.dark-mode .search-btn {
            background: linear-gradient(135deg, #6366f1 0%, #4c1d95 100%);
        }
        
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(107, 142, 91, 0.3);
        }
        
        body.dark-mode .search-btn:hover {
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
        }
        
        /* Filter Tags */
        .filter-tags {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .filter-tag {
            padding: 0.5rem 1.5rem;
            background: rgba(107, 142, 91, 0.1);
            border: 1px solid rgba(107, 142, 91, 0.2);
            border-radius: 25px;
            font-size: 0.85rem;
            color: #5a7a4a;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        body.dark-mode .filter-tag {
            background: rgba(99, 102, 241, 0.1);
            border-color: rgba(99, 102, 241, 0.2);
            color: #a5b4fc;
        }
        
        .filter-tag:hover,
        .filter-tag.active {
            background: #6b8e5b;
            color: white;
            border-color: #6b8e5b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(107, 142, 91, 0.2);
        }
        
        body.dark-mode .filter-tag:hover,
        body.dark-mode .filter-tag.active {
            background: #6366f1;
            border-color: #6366f1;
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
        }
        
        /* Main News Content */
        .news-main {
            padding: 3rem 0 5rem;
            background: linear-gradient(to bottom, #f5f3e9, #fdfbf3);
            transition: background 0.5s ease;
            width: 100%;
        }

        body.dark-mode .news-main {
            background: linear-gradient(to bottom, #0a0e1a, #0f172a);
        }

        .news-main > * {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }
        
        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        /* Featured News (First Item - Larger) */
        .news-item.featured {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #fdfdf9 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(107, 142, 91, 0.1);
        }
        
        body.dark-mode .news-item.featured {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-color: rgba(99, 102, 241, 0.2);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .news-item.featured:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }
        
        body.dark-mode .news-item.featured:hover {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }
        
        .news-item.featured .news-image {
            height: 100%;
            min-height: 300px;
        }
        
        .news-item.featured .news-content {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        /* Regular News Items */
        .news-item {
            background: linear-gradient(135deg, #ffffff 0%, #fdfdf9 100%);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border: 1px solid rgba(107, 142, 91, 0.1);
            cursor: pointer;
        }
        
        body.dark-mode .news-item {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-color: rgba(99, 102, 241, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        body.dark-mode .news-item:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        
        .news-image {
            position: relative;
            height: 200px;
            background: linear-gradient(135deg, #b8cfa7 0%, #a0b893 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        body.dark-mode .news-image {
            background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
        }
        
        .news-category-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(107, 142, 91, 0.9);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        body.dark-mode .news-category-badge {
            background: rgba(99, 102, 241, 0.9);
        }
        
        .news-content {
            padding: 1.5rem;
        }
        
        .collection-news-date {
            font-size: 0.85rem;
            color: #7a9c6a;
            margin-bottom: 0.5rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: rgba(122, 156, 106, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            display: inline-block;
        }

        body.dark-mode .collection-news-date {
            color: #a5b4fc;
            background: rgba(165, 180, 252, 0.1);
        }
        
        .news-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d3e2d;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        body.dark-mode .news-title {
            color: #e0e0e0;
        }
        
        .news-item:hover .news-title {
            color: #5a7a4a;
        }
        
        body.dark-mode .news-item:hover .news-title {
            color: #a5b4fc;
        }
        
        .news-excerpt {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
        }
        
        body.dark-mode .news-excerpt {
            color: #cbd5e1;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .pagination-btn {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, #6b8e5b 0%, #5a7a4a 100%);
            border: none;
            border-radius: 30px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 5px 15px rgba(107, 142, 91, 0.2);
        }
        
        body.dark-mode .pagination-btn {
            background: linear-gradient(135deg, #6366f1 0%, #4c1d95 100%);
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
        }
        
        .pagination-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(107, 142, 91, 0.3);
        }
        
        body.dark-mode .pagination-btn:hover:not(:disabled) {
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
        }
        
        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: linear-gradient(135deg, #a0a0a0 0%, #808080 100%);
        }
        
        body.dark-mode .pagination-btn:disabled {
            background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
        }
        
        .page-info {
            font-size: 0.95rem;
            color: #5a6d5a;
            font-weight: 500;
        }
        
        body.dark-mode .page-info {
            color: #a0a0a0;
        }
        
        /* Footer */
        footer {
            padding: 2rem 5%;
            background: linear-gradient(135deg, #2d3e2d 0%, #3a4d3a 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,50 Q30,30 40,50 T60,50" fill="none" stroke="%236b8e5b" stroke-width="0.3" opacity="0.2"/></svg>');
            opacity: 0.3;
        }
        
        .footer-content {
            position: relative;
            z-index: 1;
        }
        
        .copyright {
            font-size: 0.8rem;
            opacity: 0.7;
        }
        
        body.dark-mode footer {
            background: linear-gradient(135deg, #0a0e1a 0%, #0f172a 100%);
        }
        
        body.dark-mode .copyright {
            opacity: 0.8;
        }
        
        /* Dark mode additional styles */
        body.dark-mode .tagline {
            color: #a5b4fc;
        }
        
        body.dark-mode nav ul li a {
            color: #e0e0e0;
        }
        
        body.dark-mode nav ul li a:hover,
        body.dark-mode nav ul li a.active {
            color: #a5b4fc;
        }
        
        body.dark-mode nav ul li a:after {
            background-color: #6366f1;
        }
        
        body.dark-mode .logo circle:first-child {
            fill: #4c1d95;
        }
        
        body.dark-mode .logo path {
            fill: #5b21b6;
            stroke: #6366f1;
        }
        
        body.dark-mode .logo line {
            stroke: #6366f1;
        }
        
        body.dark-mode .logo circle:not(:first-child) {
            fill: #a5b4fc;
        }
        
        /* Media Queries */
        @media (max-width: 1024px) {
            .news-item.featured {
                grid-column: span 1;
                grid-template-columns: 1fr;
            }
            
            .news-item.featured .news-image {
                min-height: 200px;
            }
            
            .news-item.featured .news-content {
                padding: 1.5rem;
            }
            
            nav {
                flex-direction: row;
            }
            
            .theme-toggle {
                margin-right: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            nav {
                flex-direction: column;
                gap: 1rem;
            }
            
            .theme-toggle {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            nav ul {
                gap: 1.5rem;
            }
            
            .news-hero {
                padding: 4rem 5% 5rem;
            }

            .news-hero h1 {
                font-size: 2.5rem;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .news-item.featured {
                grid-column: span 1;
            }
            
            .search-form {
                flex-direction: column;
                border-radius: 15px;
                padding: 1rem;
            }
            
            .search-btn {
                width: 100%;
                justify-content: center;
            }
            
            .pagination {
                gap: 1rem;
            }
            
            .pagination-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 480px) {
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem 1.5rem;
            }
            
            .news-hero {
                padding: 3rem 5% 4rem;
            }

            .news-hero h1 {
                font-size: 2rem;
            }
            
            .news-hero-subtitle {
                font-size: 1rem;
            }
            
            .filter-tags {
                gap: 0.5rem;
            }
            
            .filter-tag {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }
            
            .pagination {
                flex-direction: column;
            }
            
            .page-info {
                order: -1;
            }
        }
 