/* 404.html — компонент сторінки помилки (bz-*) */

.bz-not-found {
    padding: 60px 0;
}

.bz-not-found__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bz-not-found__content .h1 span {
    color: var(--primary);
}

.bz-not-found__btns {
    display: flex;
    gap: 64px;
}

.bz-not-found__btns .btn--bordered {
    min-width: 300px;
}

.bz-not-found__img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bz-not-found__img-wrapper img {
    width: 100%;
    height: 100%;
    overflow: visible;
    object-fit: cover;
}

@media (max-width: 1569px) {
    .bz-not-found__img-wrapper img {
        height: auto;
    }
}

@media (max-width: 1365px) {
    .bz-not-found__btns .btn--bordered {
        min-width: 200px;
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .bz-not-found__btns {
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .bz-not-found__btns .btn--bordered {
        width: 100%;
        min-width: min-content;
    }
}

@media (max-width: 767px) {
    .bz-not-found__content {
        gap: 20px;
    }

    .bz-not-found__btns .btn--bordered {
        width: 100%;
    }
}

@media (max-width: 499px) {
    .bz-not-found__btns {
        gap: 8px;
    }
}
