/* ==========================================================================
   Layout: Hero Regular  (.pb-hr)
   Centered page hero — breadcrumbs + heading + description + CTA + media.
   Light background. Media: image or lazy-loaded video.
   ========================================================================== */

.pb-hr {
    padding: 24px 0 80px;
}
.page-id-203 .pb-hr{
    padding-bottom: 0;
}
/* ── Breadcrumbs ─────────────────────────────────────────────────────────── */

.pb-hr__breadcrumbs {
    margin-bottom: 80px;
}
.page-id-203 .pb-hr__content .gfBtn.gfBtn--ctaBlue{
    margin-bottom: 26px;
}
.pb-hr__breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
}

.pb-hr__crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    letter-spacing: 0.01em;
    color: var(--gray-500);
}

.pb-hr__crumb a {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    letter-spacing: 0.01em;
    color: var(--base-black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pb-hr__crumb a:hover {
    color: var(--brand-blue-500);
}

.pb-hr__crumb-sep {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    color: var(--gray-300);
}

.pb-hr__crumb--current span {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    letter-spacing: 0.01em;
    color: var(--gray-500);
}

/* ── Content (centered) ──────────────────────────────────────────────────── */

.pb-hr__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
}

/* ── Heading ─────────────────────────────────────────────────────────────── */

.pb-hr__heading {
    font-family: var(--second-family);
    font-weight: 550;
    font-size: 74px;
    line-height: 110%;
    letter-spacing: -0.03em;
    text-align: center;
    background: linear-gradient(169deg, rgba(0, 5, 25, 0.9) 0%, #000519 50%, rgba(0, 5, 25, 0.9) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.05em 0.02em 0.1em;
    margin: 0 0 24px;
}

/* ── Description ─────────────────────────────────────────────────────────── */

.pb-hr__desc {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: var(--gray-700);
    margin: 0 0 60px;
    max-width: 900px;
}

/* ── Media block ─────────────────────────────────────────────────────────── */

.pb-hr__media {
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    /* removes inline gap under media */
}
.pb-hr__image.-mob{
    display: none;
}
/* Image */
.pb-hr__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Video */
.pb-hr__video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: var(--gray-100, #f5f5f5);
    /* placeholder bg while loading */
}

/* fade-in once video src is set */
.pb-hr__video.is-loaded {
    animation: hrVideoFadeIn 0.5s ease forwards;
}

@keyframes hrVideoFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .pb-hr {
        padding: 24px 0 48px;
    }

    .pb-hr__breadcrumbs {
        margin-bottom: 24px;
    }

    .pb-hr__heading {
        font-size: 40px;
        line-height: 110%;
        letter-spacing: -0.03em;
        margin-bottom: 16px;
    }

    .pb-hr__desc {
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 8px;
    }

    .pb-hr__media {
        margin-top: 32px;
        border-radius: 10px;
    }

    .pb-hr__image,
    .pb-hr__video {
        border-radius: 10px;
    }
    .pb-hr__image.-mob{
    display: block;
}
    .pb-hr__image.-desk{
    display: none;
}
.page-id-203 .pb-hr__content .gfBtn.gfBtn--ctaBlue{
    margin-bottom: 20px;
}
}

/* Container override */
.pb-hr .container {
    max-width: 1280px;
    padding-left: 0;
    padding-right: 0;
}
@media(max-width:1340px){
   .pb-hr .container{

  padding-left: 16px;
    padding-right: 16px;

}