     .blog-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            position: relative;
            overflow: hidden;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(234, 71, 35, 0.1) 0%, transparent 50%);
        }

        .blog-hero__content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .blog-hero__title {
            font-size: 56px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .blog-hero__subtitle {
            font-size: 20px;
            color: #cccccc;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .blog-listing {
            padding: 100px 0;
            background: #ffffff;
        }

        .blog-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(234, 71, 35, 0.15);
        }

        .blog-card__image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #ea4723 0%, #ff6b45 100%);
            position: relative;
            overflow: hidden;
        }

        .blog-card__image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        .blog-card__category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #ffffff;
            color: #ea4723;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .blog-card__content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-card__meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #666666;
        }

        .blog-card__meta i {
            color: #ea4723;
            margin-right: 5px;
        }

        .blog-card__title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-card__title {
            color: #ea4723;
        }

        .blog-card__excerpt {
            font-size: 15px;
            color: #666666;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .blog-card__link {
            display: inline-flex;
            align-items: center;
            color: #ea4723;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .blog-card__link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .blog-card__link:hover {
            color: #d63d1f;
        }

        .blog-card__link:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 991px) {
            .blog-hero__title {
                font-size: 42px;
            }

            .blog-hero__subtitle {
                font-size: 18px;
            }
        }

        @media (max-width: 767px) {
            .blog-hero {
                padding: 80px 0 60px;
            }

            .blog-hero__title {
                font-size: 32px;
            }

            .blog-hero__subtitle {
                font-size: 16px;
            }

            .blog-listing {
                padding: 60px 0;
            }

            .blog-card__title {
                font-size: 20px;
            }
        }