.section-header {
    min-height: 394px;
    text-align: center;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("cabecera-pba.jpg");
    background-size: cover;
    background-position: bottom 125%;
    filter: blur(2px);
    z-index: -1;
}

.section-breadcrumb {
    background-color: rgba(0, 0, 0, .5);
    padding: 8px 12px;
    margin-bottom: 100px;
}

.section-header .section-breadcrumb p {
    font-size: 20px;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 600;
}

.section-header p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--color-text-inverse);
    padding-bottom: 5px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--color-text-inverse);
    margin-bottom: 12px;
    font-weight: 700;
}

@media (max-width: 960px) {
    .section-header {
        min-height: 185px;
        text-align: left;
    }

    .section-header .section-breadcrumb {
        margin-bottom: 25px;
    }

    .section-header .section-breadcrumb p {
        font-size: 15px;
        padding-left: 10px;
    }

    .section-header h2 {
        font-size: 26px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .section-header p {
        padding-right: 20px;
        padding-left: 20px;
    }
}