/* ==========================================================================
   HERO STATIC GRAPHIC BANNER STYLING
   ========================================================================== */

.hero-graphic-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35),
        0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

/* Premium Hover Micro-interactions */
.hero-graphic-wrapper:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 35px 80px rgba(59, 130, 246, 0.35),
        0 15px 30px rgba(0, 0, 0, 0.25);
}

.hero-graphic-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-graphic-wrapper:hover .hero-graphic-img {
    transform: scale(1.02);
}

/* Subtle background glowing effect behind the card */
.hero-graphic-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hero-graphic-wrapper:hover::before {
    opacity: 1;
}

/* Responsive Scaling Adjustments */
@media (max-width: 991.98px) {
    .hero-graphic-wrapper {
        max-width: 450px;
        margin: 30px auto 0;
    }
}

@media (max-width: 575.98px) {
    .hero-graphic-wrapper {
        max-width: 100%;
        border-radius: 16px;
        border-width: 3px;
    }
}