.blog-hero {
            position: relative;
           
            min-height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(34, 34, 34, 0.5);
        }

        .blog-hero-content {
            position: relative;
            color: #fff;
            text-align: center;
            z-index: 2;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fff;
            margin-right: 12px;
        }

        .blog-card {
            transition: transform 0.2s, box-shadow 0.2s;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
        }

        .blog-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
        }

        .blog-card img {
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
        }

        .badge-category {
            background: linear-gradient(90deg, #ff8c42, #ff3c6f);
            color: #fff;
            font-size: 0.95rem;
            padding: 0.5em 1em;
            border-radius: 2em;
        }

        .social-icons a {
            color: #555;
            margin-left: 10px;
            transition: color 0.2s;
        }

        .social-icons a:hover {
            color: #ff3c6f;
        }