/* =========================================================
HERO FULL
========================================================= */

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

.hero-full .portfolio-hero{
    position:relative;
    width:100%;
    min-height:clamp(380px,55vh,560px);
    margin:0;
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:60px clamp(24px,5vw,80px);
    overflow:hidden;
    box-sizing:border-box;
}

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

.hero-full .portfolio-hero-content{
    position:relative;
    z-index:2;
    max-width:720px;
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    color:#fff;
    box-sizing:border-box;
}

.hero-full .portfolio-hero-kicker{
    text-transform:uppercase;
    font-size:.8rem;
    letter-spacing:.18em;
    margin-bottom:16px;
    color:rgba(255,255,255,.9);
    font-weight:600;
}

.hero-full .portfolio-hero h1{
    font-size:clamp(2.2rem,4vw,3.6rem);
    margin:0;
    color:#fff;
    line-height:1.02;
    font-weight:800;
}

.hero-full .portfolio-hero-lead{
    margin-top:20px;
    font-size:1.25rem;
    line-height:1.6;
    opacity:.9;
    max-width:650px;
    text-align:center;
    color:#fff;
}

.hero-full .portfolio-hero-actions{
    margin-top:28px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    justify-content:center;
}

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

    .hero-full .portfolio-hero{
        min-height:420px;
        padding:44px 24px;
    }

    .hero-full .portfolio-hero h1{
        font-size:clamp(2rem,4vw,3rem);
    }

    .hero-full .portfolio-hero-lead{
        font-size:1.1rem;
    }
}

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

    .hero-full .portfolio-hero{
        min-height:340px;
        padding:34px 18px;
    }

    .hero-full .portfolio-hero-content{
        max-width:100%;
    }

    .hero-full .portfolio-hero h1{
        font-size:2rem;
        line-height:1.1;
    }

    .hero-full .portfolio-hero-lead{
        font-size:1rem;
        margin-top:16px;
    }

    .hero-full .portfolio-hero-actions{
        margin-top:20px;
        flex-direction:column;
        width:100%;
    }

    .hero-full .portfolio-hero-actions .hero-btn{
        width:100%;
    }
}