/* ============================================
   SEO HERO BANNER [seo_hero_banner]
   ============================================ */

.seo-hero-banner {
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto 24px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Left green section */
.seo-hero-banner__main {
    background-color: #62c608;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 28px 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative circles for depth */
.seo-hero-banner__main::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.seo-hero-banner__main::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 160px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

/* h1 title */
.seo-hero-banner__title {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Paw icons accent */
.seo-hero-banner__paws {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 20px;
    opacity: 0.75;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.seo-hero-banner__paws span {
    font-size: 18px;
    line-height: 1;
}

/* Right light section */
.seo-hero-banner__aside {
    background-color: #f4f9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

/* Subtle wave separator */
.seo-hero-banner__aside::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    bottom: 0;
    width: 24px;
    background: #62c608;
    clip-path: ellipse(12px 60% at 0% 50%);
}

/* Pet silhouette icon */
.seo-hero-banner__icon {
    font-size: 56px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    user-select: none;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .seo-hero-banner {
        flex-direction: column;
        border-radius: 12px;
    }

    .seo-hero-banner__main {
        padding: 24px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .seo-hero-banner__title {
        font-size: clamp(16px, 5vw, 22px);
    }

    .seo-hero-banner__paws {
        flex-direction: row;
        margin-left: 0;
    }

    .seo-hero-banner__aside {
        padding: 14px 24px;
        min-width: unset;
        justify-content: flex-start;
    }

    .seo-hero-banner__aside::before {
        display: none;
    }

    .seo-hero-banner__icon {
        font-size: 44px;
    }
}
