﻿/* =========================================================
   COMMON INNER PAGE HERO
   Based on HUDCO Cares
========================================================= */

.inner-page-hero {
    position: relative;
    width: 100%;
    min-height: 335px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 60px clamp(40px, 8vw, 125px);
    background: linear-gradient( 110deg, #0b1b2d 0%, #142338 48%, #38202e 72%, #800008 100% );
    color: #ffffff;
}



/* =========================================================
   LEFT CONTENT
========================================================= */

.inner-page-hero-content {
    position: relative;
    z-index: 3;
    width: min(650px, 60%);
}



/* Eyebrow */

.inner-page-hero-eyebrow {
    display: block;
    margin-bottom: 23px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}



/* Main title */

.inner-page-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
}



/* Supporting copy */

.inner-page-hero-content > p {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.82);
    font-size: clamp(16px, 1.4vw, 21px);
    font-weight: 400;
    line-height: 1.6;
}



/* =========================================================
   RIGHT DECORATIVE SHAPE
========================================================= */

/* =========================================================
   HERO CIRCLES — closer to HUDCO Cares
========================================================= */

.inner-page-hero-shape {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    pointer-events: none;
}

    .inner-page-hero-shape::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 50%;
    }

.inner-page-hero-circle {
    position: relative;
    z-index: 2;
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 50%;
}

    .inner-page-hero-circle span {
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 6px;
        text-transform: uppercase;
    }
/* =========================================================
   BACK BUTTON
========================================================= */

.inner-hero-back {
    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 25px;
    background: rgba(255,255,255,.04);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}


    .inner-hero-back:hover {
        background: rgba(255,255,255,.12);
        border-color: rgba(255,255,255,.5);
        transform: translateX(-2px);
    }


.inner-hero-back-arrow {
    font-size: 17px;
    line-height: 1;
}

@media (max-width: 992px) {

    .inner-page-hero-shape {
        right: 4%;
        width: 300px;
        height: 300px;
    }

        .inner-page-hero-shape::before {
            width: 430px;
            height: 430px;
        }

    .inner-page-hero-circle {
        width: 170px;
        height: 170px;
    }

        .inner-page-hero-circle span {
            font-size: 15px;
            letter-spacing: 4px;
        }
}

@media (max-width: 700px) {

    .inner-page-hero-shape {
        top: 42%;
        right: -70px;
        width: 220px;
        height: 220px;
        opacity: .9;
    }

        .inner-page-hero-shape::before {
            width: 340px;
            height: 340px;
        }

    .inner-page-hero-circle {
        width: 120px;
        height: 120px;
    }

        .inner-page-hero-circle span {
            font-size: 11px;
            letter-spacing: 3px;
        }
}