.container-subheader {
    position: relative;
    width: 100%;
    background: linear-gradient(148.677deg, #ED6E04 12.804%, #B5211D 87.616%);
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    text-align: center;
}

.container-subheader .subheader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.container-subheader .rank-math-breadcrumb {
    background: rgba(0, 0, 0, 0.1);
    padding: 6px 20px;
    border-radius: 100px;
    display: inline-block;
}

.container-subheader .rank-math-breadcrumb p {
    margin: 0;
    font-family: Quicksand, sans-serif;
    font-size: 14px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.container-subheader .rank-math-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
}

.container-subheader .rank-math-breadcrumb .separator {
    color: #ffffff;
    font-size: 12px;
}

.container-subheader .rank-math-breadcrumb .last,
.container-subheader .rank-math-breadcrumb p > span:last-child {
    font-weight: 700;
}

.container-subheader .subheader-title {
    font-family: Quicksand, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

/* 4-color stripe */
.container-subheader .subheader-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    display: flex;
}

.container-subheader .stripe-item {
    flex: 1;
    height: 100%;
}

.container-subheader .stripe-blue { background-color: #0E519F; }
.container-subheader .stripe-yellow { background-color: #EAAA00; }
.container-subheader .stripe-orange { background-color: #ED6E04; }
.container-subheader .stripe-red { background-color: #B5211D; }

/* Desktop */
@media (min-width: 768px) {
    .container-subheader {
        height: 280px;
    }

    .container-subheader .subheader-title {
        font-size: 48px;
    }

    .container-subheader .subheader-stripe {
        height: 20px;
    }
}
