/* =========================================================
HERO LARGE
========================================================= */

.hero-large{
    margin:0 0 40px 0 !important;
    padding:0 !important;
    overflow:hidden;
}

.hero-large .portfolio-hero{
    position:relative;
    width:100%;
    min-height:clamp(260px,34vh,420px);
    margin:0;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px clamp(24px,5vw,80px);
    overflow:hidden;
    box-sizing:border-box;
}

.hero-large .portfolio-hero::before{
    content:"";
    position:absolute;
    inset:0;
    backdrop-filter:blur(2px);
}

.hero-large .portfolio-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.25) 0%,
        rgba(0,0,0,.55) 100%
    );
}

.hero-large .portfolio-hero-content{
    position:relative;
    z-index:2;
    max-width:1100px;
    width:100%;
    display:flex;
    align-items:center;
    gap:28px;
    color:#fff;
    box-sizing:border-box;
}

.hero-large .portfolio-avatar{
    width:110px;
    height:110px;
    flex:0 0 auto;
    border-radius:18px;
    overflow:hidden;
    border:3px solid rgba(255,255,255,.9);
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    background:#fff;
}

.hero-large .portfolio-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.hero-large .portfolio-hero-text{
    display:flex;
    flex-direction:column;
    gap:12px;
    min-width:0;
}

.hero-large .portfolio-hero h1{
    margin:0;
    font-size:clamp(1.9rem,3.4vw,2.8rem);
    font-weight:800;
    line-height:1.1;
    color:#fff;
}

.hero-large .portfolio-hero-lead{
    margin:0;
    font-size:1.1rem;
    opacity:.92;
    line-height:1.6;
    max-width:620px;
    color:#fff;
}

.hero-large .portfolio-hero-actions{
    margin-top:12px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

@media (max-width:1024px){
    .hero-large{
        margin-bottom:22px !important;
    }

    .hero-large .portfolio-hero{
        min-height:320px;
        padding:32px clamp(20px,5vw,60px);
    }
}

@media (max-width:768px){
    .hero-large{
        margin-bottom:20px !important;
    }

    .hero-large .portfolio-hero{
        min-height:280px;
        padding:28px 18px;
    }

    .hero-large .portfolio-hero-content{
        flex-direction:column;
        text-align:center;
        gap:18px;
    }

    .hero-large .portfolio-avatar{
        width:90px;
        height:90px;
    }

    .hero-large .portfolio-hero-text{
        align-items:center;
    }

    .hero-large .portfolio-hero-actions{
        width:100%;
        justify-content:center;
    }
}