        :root {
            --bg: #eef2f7;
            --card: #ffffff;
            --text: #12213a;
            --muted: #5f718f;
            --accent: #1f78ff;
            --accent-hover: #1665db;
            --shadow: 0 16px 36px rgba(18, 33, 58, 0.14);
        }

        * {
            box-sizing: border-box;
        }

        .map-frame {
            display: none;
            margin-top: 16px;
            position: relative;
            border: 1px solid #cad5e5;
            border-radius: 12px;
            overflow: hidden;
            min-height: 620px;
            background: #dde4ef;
        }

        #map {
            height: 620px;
            width: 100%;
        }

        .map-close {
            position: absolute;
            right: 12px;
            top: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #b7c3d4;
            background: rgba(255, 255, 255, 0.94);
            color: #3a4d6d;
            font-size: 20px;
            line-height: 28px;
            cursor: pointer;
            z-index: 3;
        }

        .hover-card {
            width: 170px;
            margin: 0;
            padding: 0;
            line-height: 1.2;
        }

        .hover-card__title {
            margin: 0 0 4px;
            font-size: 14px;
            font-weight: 800;
            color: #12213a;
        }

        .hover-card__image {
            display: block;
            width: 100%;
            height: 92px;
            object-fit: cover;
            border-radius: 6px;
        }

        .adv-marker {
            position: relative;
            display: inline-flex;
            align-items: flex-end;
            justify-content: center;
            pointer-events: auto;
        }

        .adv-marker__pin {
            display: block;
        }

        .adv-marker__card {
            position: absolute;
            left: 50%;
            bottom: calc(100% + 6px);
            transform: translateX(-50%);
            background: #ffffff;
            border: 1px solid #d8e1ee;
            border-radius: 8px;
            box-shadow: 0 10px 22px rgba(18, 33, 58, 0.18);
            padding: 6px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.12s ease;
            z-index: 2;
        }

        .adv-marker--hover .adv-marker__card {
            opacity: 1;
            visibility: visible;
        }

        .dev5-feature-pill,
        .dev5-feature-row {
            min-width: 0;
            padding-right: 0;
        }

        .dev5-feature-label {
            min-width: 0;
            overflow-wrap: anywhere;
        }

        .dev5-info-action {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 2.75rem;
            min-height: 2.75rem;
            position: relative;
            z-index: 1;
        }

        .dev5-info-tooltip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 2.75rem;
            min-height: 2.75rem;
            padding: 0;
        }

        .dev5-unit-feature {
            min-width: 0;
        }

        .dev5-unit-feature > span[data-tooltip] {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 767px) {
            .dev5-feature-pill {
                display: grid;
                grid-template-columns: auto minmax(0, 1fr) 2.75rem;
                column-gap: 0.5rem;
                height: auto;
                min-height: 2.75rem;
                padding: 0.375rem 0 0.375rem 0.5rem;
                width: 100%;
            }

            .dev5-feature-row {
                display: grid;
                grid-template-columns: 1.25rem minmax(0, 1fr) 2.75rem;
                column-gap: 0.3125rem;
                flex: 1 1 100%;
                padding-right: 0;
                width: 100%;
            }

            .dev5-feature-row > svg,
            .dev5-feature-pill > img,
            .dev5-feature-pill > svg {
                grid-column: 1;
            }

            .dev5-feature-row > .dev5-feature-label,
            .dev5-feature-pill > .dev5-feature-label {
                grid-column: 2;
            }

            .dev5-feature-row > .dev5-info-action,
            .dev5-feature-pill > .dev5-info-action {
                grid-column: 3;
            }

            .dev5-feature-row > svg,
            .dev5-feature-pill > img,
            .dev5-feature-pill > svg {
                align-self: start;
                margin-top: 0.125rem;
            }

            .dev5-feature-row .dev5-feature-label,
            .dev5-feature-pill .dev5-feature-label {
                line-height: 1.35;
                align-self: center;
            }

            .dev5-feature-row .dev5-info-action,
            .dev5-feature-pill .dev5-info-action {
                align-self: center;
                justify-self: end;
            }

            .dev5-feature-row .dev5-info-tooltip::after,
            .dev5-feature-pill .dev5-info-tooltip::after {
                max-width: min(15rem, calc(100vw - 2rem));
                white-space: normal;
            }

            .dev5-unit-feature {
                display: grid;
                grid-template-columns: 1.25rem minmax(0, 1fr) 2.75rem;
                column-gap: 0.3125rem;
                flex: 1 1 100%;
                max-width: 100%;
                width: 100%;
            }

            .dev5-unit-feature > svg {
                grid-column: 1;
            }

            .dev5-unit-feature > .dev5-feature-label {
                grid-column: 2;
                min-width: 0;
            }

            .dev5-unit-feature > span[data-tooltip] {
                grid-column: 3;
                align-self: center;
                justify-self: end;
                min-width: 2.75rem;
                min-height: 2.75rem;
            }
        }

        @media (max-width: 900px) {
            .panel {
                padding: 16px;
            }

            .map-frame,
            #map {
                min-height: 500px;
                height: 500px;
            }
        }
