.sj-page-hero--blog {
    position: relative;
    overflow: hidden;
    padding: 64px 0 56px;
    background:
        radial-gradient(ellipse 80% 120% at 15% -20%, rgba(99, 208, 245, .35), transparent 55%),
        radial-gradient(ellipse 70% 90% at 95% 110%, rgba(0, 119, 200, .28), transparent 50%),
        linear-gradient(135deg, #021428 0%, #031b40 42%, #0e2f6e 100%);
}

.sj-page-hero--blog::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        115deg,
        rgba(255, 255, 255, .03) 0 14px,
        rgba(255, 255, 255, 0) 14px 28px
    );
    pointer-events: none;
}

.sj-page-hero--blog::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: -80px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 208, 245, .22), transparent 70%);
    animation: blogHeroOrb 6s ease-in-out infinite;
    pointer-events: none;
}

.sj-hero-blog-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    left: -60px;
    bottom: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 119, 200, .25), transparent 72%);
    animation: blogHeroOrb 7s ease-in-out infinite reverse;
    pointer-events: none;
}

.sj-hero-blog-inner {
    position: relative;
    z-index: 1;
    animation: blogHeroFadeUp .7s ease-out both;
}

.sj-page-hero--blog h1 {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    letter-spacing: .06em;
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.sj-hero-blog-accent {
    display: inline-block;
    background: linear-gradient(120deg, #63d0f5 0%, #ffffff 55%, #63d0f5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: blogHeroShine 4s ease-in-out infinite;
}

.sj-page-hero--blog p {
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

.sj-hero-blog-line {
    display: block;
    width: 90px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #63d0f5, #0077c8, #ffffff);
    transform-origin: center;
    animation: blogHeroLinePulse 3s ease-in-out infinite;
}

@keyframes blogHeroOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: .7; }
    50% { transform: translate(-12px, 10px) scale(1.08); opacity: 1; }
}

@keyframes blogHeroFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blogHeroShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

@keyframes blogHeroLinePulse {
    0%, 100% { transform: scaleX(.35); opacity: .75; }
    50% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 640px) {
    .sj-page-hero--blog {
        padding: 36px 0 28px;
    }

    .sj-hero-blog-inner p {
        font-size: 0.95rem;
        padding: 0 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sj-page-hero--blog::after,
    .sj-hero-blog-glow,
    .sj-hero-blog-inner,
    .sj-hero-blog-accent,
    .sj-hero-blog-line {
        animation: none !important;
    }
}
