/* Shared inner-page hero — matches Contact & Blog */

.page-hero-layout .tm-breadcrumb li + li::before {
    content: '>';
}

/* Page hero — modern classic */
.page-hero {
    background: linear-gradient(135deg, var(--site-navy, #023B5E) 0%, var(--site-blue, #0570AE) 55%, var(--site-blue-light, #0570AE) 100%);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    overflow: hidden;
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center;
}

.page-hero-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--site-accent, #0570AE);
    margin-bottom: .75rem;
}

.page-hero-text h1 {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-hero-text p {
    color: rgba(255, 255, 255, .92);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.page-hero-text p:last-child {
    margin-bottom: 0;
}

.page-hero-text p + .btn-page-hero {
    margin-top: 1.5rem;
}

.btn-page-hero {
    background: #fff;
    color: #0570AE;
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .2s;
    border: none;
    cursor: pointer;
}

.btn-page-hero:hover {
    background: #C3C3C3;
    color: #023B5E;
    transform: translateY(-2px);
}

.page-hero-visual {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero-visual img,
.page-hero-img {
    display: block;
    width: auto;
    max-width: min(300px, 100%);
    max-height: 220px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    object-fit: cover;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .page-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero-visual img,
    .page-hero-img {
        max-width: min(260px, 90vw);
        max-height: 200px;
    }
}

@media (max-width: 575px) {
    .page-hero {
        padding: 2.5rem 0;
    }

    .page-hero-visual img,
    .page-hero-img {
        max-width: min(220px, 85vw);
        max-height: 170px;
    }
}
