/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-mid) 100%);
    color: var(--white);
    padding: 80px 24px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.page-hero .breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.page-hero .breadcrumb i {
    font-size: 10px;
}

.page-hero h1 {
    font-size: 35px;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width:480px){
    .page-hero h1{
        font-size: 32px;
    }

    .page-hero p {
        font-size: 14px;
    }
}