 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(to bottom right, #f9fafb, #ffffff);
            color: #1f2937;
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(to bottom right, #000000, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.3));
            padding: 5rem 0;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
        }

        .gradient-text {
            background: linear-gradient(to right, #fbbf24, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 48rem;
            margin: 0 auto;
            line-height: 1.75;
        }

        /* Category Filter */
        .category-filter {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            padding: 5rem 0 0;
        }

        .category-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid #e5e7eb;
            background: white;
            color: #4b5563;
            transition: all 0.3s;
        }

        .category-btn:hover {
            background: #fbbf24;
            color: black;
            border-color: #fbbf24;
        }

        .category-btn.active {
            background: #f97316;
            color: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border-color: #f97316;
        }

        /* Featured Section */
        .featured-section {
            margin-bottom: 4rem;
        }

        .featured-title {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2rem;
        }

        .featured-container {
            max-width: 64rem;
            margin: 0 auto;
        }

        /* News Card */
        .news-card {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.5s;
            background: white;
            border: 1px solid #f3f4f6;
            cursor: pointer;
        }

        .news-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: rgba(249, 115, 22, 0.3);
            transform: translateY(-4px);
        }

        .news-card-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom right, rgba(251, 191, 36, 0.05), rgba(249, 115, 22, 0.05));
            opacity: 0;
            transition: opacity 0.5s;
        }

        .news-card:hover .news-card-gradient {
            opacity: 1;
        }

        .news-image {
            position: relative;
            height: 12rem;
            overflow: hidden;
        }

        .news-card.featured .news-image {
            height: 16rem;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .news-card:hover .news-image img {
            transform: scale(1.1);
        }

        .news-image-fallback {
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom right, #f97316, #fbbf24);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        }

        .category-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 10;
        }

        .badge-ministry {
            background: #f97316;
            color: white;
        }

        .badge-event {
            background: #fbbf24;
            color: black;
        }

        .badge-community {
            background: #10b981;
            color: white;
        }

        .featured-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            background: #ef4444;
            color: white;
            z-index: 10;
        }

        .news-content {
            padding: 1.5rem;
            position: relative;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 0.75rem;
        }

        .news-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            transition: color 0.3s;
        }

        .news-card.featured .news-title {
            font-size: 1.25rem;
        }

        .news-card:hover .news-title {
            color: #f97316;
        }

        .news-excerpt {
            color: #4b5563;
            margin-bottom: 1rem;
            line-height: 1.75;
        }

        .news-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .author-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            background: linear-gradient(to bottom right, #f97316, #fbbf24);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 700;
            color: black;
        }

        .author-name {
            font-size: 0.875rem;
            color: #4b5563;
        }

        .read-more {
            color: #f97316;
            font-weight: 600;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            text-decoration: none;
            transition: color 0.3s;
        }

        .read-more:hover {
            color: #fbbf24;
        }

        .read-more-arrow {
            transition: transform 0.3s;
        }

        .read-more:hover .read-more-arrow {
            transform: translateX(0.25rem);
        }

        /* News Grid */
        .news-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 640px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .news-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Load More Button */
        .load-more {
            text-align: center;
            margin-top: 3rem;
        }

        .load-more-btn {
            padding: 1rem 2rem;
            background: #f97316;
            color: white;
            font-weight: 700;
            border-radius: 0.75rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .load-more-btn:hover {
            background: #ea580c;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        /* Newsletter Section */
        .newsletter {
            padding: 5rem 0;
            background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
            text-align: center;
        }

        .newsletter h3 {
            font-size: 1.875rem;
            font-weight: 700;
            background: linear-gradient(to right, #f97316, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .newsletter p {
            color: rgba(0, 0, 0, 0.8);
            font-size: 1.125rem;
            max-width: 48rem;
            margin: 0 auto 2rem;
            line-height: 1.75;
        }

        .newsletter-form {
            max-width: 28rem;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .newsletter-input {
            flex: 1;
            min-width: 200px;
            padding: 1rem 1.5rem;
            border-radius: 0.75rem;
            border: 2px solid #e5e7eb;
            outline: none;
            transition: border-color 0.3s;
        }

        .newsletter-input:focus {
            border-color: #f97316;
        }

        .newsletter-btn {
            padding: 1rem 2rem;
            background: #f97316;
            color: white;
            font-weight: 700;
            border-radius: 0.75rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: #ea580c;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .hidden {
            display: none;
        }

        @media (max-width: 640px) {
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                width: 100%;
            }
        }