.page-banner {
    position: relative;
    width: 100%;
    min-height: 550px;
    overflow: hidden;
    color: #fff;
    background: #1d140f;
    margin-top: -75px; /*поднимает баннер выше под верхнее меню*/
   z-index: 1;
}

.page-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: brightness(0.55);
}

.page-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        70deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.18) 20%,
        rgba(0, 0, 0, 0.01) 50%
    );
}

.page-banner__content {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    padding: 85px 20px 15px;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: center; /*уточнить как лучше, чтобы весь контент был всегда по центру или ближе к верхнему краю*/
    gap: 18px;
    transform: scaleY(1.18);
}

.page-banner__crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.page-banner__crumb {
    color: #ede5d3;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.page-banner__crumb:hover {
    opacity: 0.75;
}

.page-banner__crumb_current {
    opacity: 0.75;
    pointer-events: none;
}

.page-banner__crumb-sep {
    opacity: 0.55;
}

.page-banner__title {
    margin: 0;
    max-width: 1500px;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    color: #ede5d3;
}

.page-banner__meta {
    font-size: 17px;
    line-height: 1.4;
    opacity: 0.9;
}

.page-banner__date-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-banner__date-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 16px;
    display: block;
    object-fit: contain;
}

.page-banner__text {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}