/* ─── BLOG HERO ───────────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero {
    background: #F4F7FE;
    color: var(--white);
    padding: 80px 80px 120px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

:is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

:is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__label {
    font-family: 'Ubuntu Sans', sans-serif;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 0px;
    color: #1E2941;
    margin: 0;
}

:is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.15;
    color: #1E2941;
    margin: 0;
}

:is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__excerpt {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #5C646F;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

:is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

:is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__placeholder {
    width: 100%;
    height: 420px;
    background: #e2e8f4;
    border-radius: 16px;
    border: 1px solid #d0d6e8;
}

/* ─── NAVBAR COLOR MATCH ─────────────────────────────────────── */
body:has(.blog-hero) .nav {
    background: #F4F7FE !important;
}

/* ─── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    :is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero {
        padding: 48px 0;
    }

    :is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 24px;
    }

    :is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__image {
        order: -1;
    }

    :is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__image img,
    :is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__placeholder {
        height: 220px;
    }

    :is(#kipo-landing, .wp-block-kipo-kipo-blog-hero) .blog-hero__title {
        font-size: 30px;
    }
}
