/* obladnannya.html — компонент секції (bz-*) */

.bz-equipment-hero {
    min-height: 720px;
    padding: 145px 0 90px;
    display: flex;
    align-items: center;
}

.bz-breadcrumbs {
    margin-bottom: 56px;
}

.bz-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bz-breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.48);
    font-size: 13px;
    line-height: 1.2;
}

.bz-breadcrumbs li:not(:last-child):after {
    content: "/";
    color: rgba(224,0,31,0.8);
}

.bz-breadcrumbs a {
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    transition: color 0.25s ease;
}

.bz-breadcrumbs a:hover {
    color: #e0001f;
}

.bz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.bz-btn-main,
.bz-btn-outline {
    min-height: 48px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.bz-btn-main {
    border: 1px solid #e0001f;
    background: #e0001f;
}

.bz-btn-outline {
    border: 1px solid rgba(255,255,255,0.32);
    background: transparent;
}

.bz-btn-main:hover,
.bz-btn-outline:hover {
    transform: translateY(-2px);
    color: #fff;
}

.bz-btn-main:hover {
    background: #ff0024;
    border-color: #ff0024;
}

.bz-btn-outline:hover {
    border-color: #e0001f;
    background: rgba(224,0,31,0.12);
}

.bz-hero-panel {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(255,255,255,0.13);
    background:
            linear-gradient(145deg, rgba(224,0,31,0.1), rgba(255,255,255,0.016)),
            rgba(0,0,0,0.5);
}

.bz-hero-panel:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #e0001f;
}

.bz-hero-panel__label {
    margin-bottom: 16px;
    color: #e0001f;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bz-hero-panel__title {
    margin-bottom: 14px;
    color: #fff;
    font-size: 30px;
    line-height: 1.16;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bz-hero-panel__text {
    margin-bottom: 34px;
    color: rgba(255,255,255,0.64);
    font-size: 15px;
    line-height: 1.65;
}

.bz-hero-panel__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.bz-hero-panel__stats div {
    padding: 16px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.54);
    font-size: 13px;
    line-height: 1.35;
}

.bz-hero-panel__stats span {
    display: block;
    margin-bottom: 7px;
    color: #e0001f;
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .bz-equipment-hero {min-height: auto;
        padding: 125px 0 74px;}
    .bz-hero-panel__stats {grid-template-columns: 1fr;}
}

@media (max-width: 767.98px) {
    .bz-equipment-hero {padding: 110px 0 62px;}
    .bz-breadcrumbs {margin-bottom: 38px;}
    .bz-hero-actions {display: grid;
        grid-template-columns: 1fr;}
    .bz-btn-main,
    .bz-btn-outline {width: 100%;}
    .bz-hero-panel {padding: 26px;}
}
