.landing-blogs-loading .blog_card_skeleton {
    height: 320px;
    border-radius: 8px;
    background: linear-gradient(90deg, #eef1f4 25%, #f8f9fb 50%, #eef1f4 75%);
    background-size: 200% 100%;
    animation: blogSkeletonPulse 1.4s ease-in-out infinite;
}

@keyframes blogSkeletonPulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.landing-blog-featured .blog_image img,
.landing-blog-side .blog_image img {
    width: 100%;
    object-fit: cover;
}

.landing-blog-featured .blog_image img {
    max-height: 280px;
}

.landing-blog-side .blog_image img {
    min-height: 120px;
}

.landing-blogs-empty {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 30px 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(173, 206, 243, 0.12);
}

.landing-blogs-empty h4 {
    font-size: 22px;
    font-weight: 600;
    color: #38424D;
    margin-bottom: 10px;
}

.landing-blogs-empty p {
    color: #747E88;
    margin-bottom: 0;
}
