<style>
        /* Головний контейнер банера */
        #hero-banner-root {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background-color: #000;
        }

        .banner {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            opacity: 1;
        }

        /* Фонове зображення */
        .banner-bg {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-size: cover;
            background-position: center;
        }

        /* Градієнтний оверлей */
        .banner-gradient {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

        /* Обгортка для контенту */
        .banner-content-wrapper {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        /* Контейнер */
        .container {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        /* Блок з контентом */
        .content-box {
            max-width: 42rem;
        }

        /* Хлібні крошки */
        .breadcrumbs {
            font-family: Avatr, Arial, sans-serif;
            font-size: 16px;
            font-weight: 300;
            color: #e5e7eb;
            margin-bottom: 1rem;
        }

        .breadcrumbs a {
            color: #e5e7eb;
            text-decoration: none;
            transition: color 300ms ease-in-out;
        }

        .breadcrumbs a:hover {
            color: #fff;
        }

        .breadcrumbs span {
            margin: 0 0.5rem;
        }

        .breadcrumbs a:last-child {
            color: rgba(255, 255, 255, 0.5) !important;
            pointer-events: none; /* необязательно — если не хочешь, чтобы была кликабельна */
        }

        /* Заголовок */
        .banner-title {
            font-family: Avatr, Arial, sans-serif;
            font-size: 32px;
            line-height: 1;
            font-weight: 600;
            color: #fff;
            letter-spacing: -0.025em;
        }

        /* Адаптивні стилі (медіа-запити) */

        /* sm: (min-width: 640px) */
        @media (min-width: 640px) {
            .container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
            .banner-title {
                font-size: 36px;
            }
        }

        /* md: (min-width: 768px) */
        @media (min-width: 768px) {
            .container {
                padding-left: 4rem;
                padding-right: 4rem;
            }
            .banner-title {
                font-size: 44px;
            }
        }

        /* lg: (min-width: 1024px) */
        @media (min-width: 1024px) {
            .container {
                padding-left: 6rem;
                padding-right: 6rem;
            }
            .banner-title {
                font-size: 44px;
            }
        }
    </style>
