        /* Full-width hero section styling */
        .hero-section {
            position: relative;
            width: 100%; /* Use viewport width for truly full width */
            left: 0;
            right: 0;
            margin-left: -50vw;
            margin-right: -50vw;
            left: 50%;
            right: 50%;
            margin-top: 6rem;
            margin-bottom: 2rem;
        }

        /* Additional styles for full-width hero image section */
        .hero-container {
            position: relative;
            width: 100%;
            height: 87vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/cover.jpg');
            background-size: cover;
            background-position: center;
            margin-bottom: 0;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Dark mode */
        .dark-mode .hero-container {
                background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/cover_night.jpg');
            }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            max-width: 1000px;
            color: rgb(255, 255, 255);
            padding: 2rem;
            animation: fadeIn 1.5s ease-in-out;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            line-height: 1.6;
        }
        
        .hero-btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .hero-btn:hover {
            background-color: transparent;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Add a fade-in animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translate(-50%, -40%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }
        
        @media (max-width: 768px) {
            .hero-container {
                height: 70vh;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-container {
                height: 80vh;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .hero-btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }


        /* Featured Media Section Styles */
        .featured-coverage.home-section {
            margin-top: 2rem;
            margin-bottom: 3rem;
        }

        .home-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .home-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .media-item {
            background-color: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .media-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .media-item.featured {
            border-left: 4px solid var(--accent-color);
        }

        .publication-name {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .publication-name i {
            margin-right: 0.8rem;
            font-size: 1.5rem;
            opacity: 0.8;
        }

        .publication-name {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .media-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .publication-info {
            font-style: italic;
            margin-bottom: 0.5rem;
            color: var(--text-color);
            opacity: 0.8;
        }

        .excerpt {
            margin-bottom: 1rem;
            line-height: 1.5;
            flex-grow: 1;
        }

        .read-more {
            display: inline-block;
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
            margin-top: auto;
        }

        .read-more:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .view-all-link {
            text-align: center;
            margin-top: 1rem;
        }

        .loading-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            text-align: center;
            color: var(--text-color);
            opacity: 0.7;
            grid-column: 1 / -1;
        }

        .loader-circle {
            width: 40px;
            height: 40px;
            border: 4px solid var(--secondary-color);
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

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