

.site-main--map-first {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
}

.home-app {
    position: relative;
    height: calc(100dvh - var(--header-height));
    overflow: hidden;
    border-top: 1px solid rgba(3, 63, 136, 0.12);
}

.home-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(3, 63, 136, 0.12), rgba(3, 63, 136, 0));
}

.home-app--list-mode {
    height: auto;
    min-height: calc(100dvh - var(--header-height));
    overflow: visible;
}

.home-search {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    z-index: var(--z-dropdown);
}

.home-search__form {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-white-pure);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 6px 12px;
}

.home-search__icon {
    flex-shrink: 0;
    color: var(--color-gray-400);
}

.home-search__input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: var(--font-size-sm);
    padding: 7px 0;
    outline: none;
    color: var(--color-gray-900);
}

@media (max-width: 767px) {
    .home-search__form {
        overflow: hidden;
    }
    .home-search__input {
        font-size: max(16px, var(--font-size-base));
        min-width: 0;
        width: 0;
    }
}

.home-search__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--color-white-pure);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: var(--z-dropdown);
    max-height: 320px;
    overflow-y: auto;
}

.home-search__result {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    color: inherit;
    transition: background var(--transition-fast);
    border-bottom: 1px solid var(--color-gray-100);
}

.home-search__result:last-child {
    border-bottom: none;
}

.home-search__result:hover {
    background: var(--color-sand-light);
}

.home-search__result-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--color-sand-light);
}

.home-search__result-name {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-900);
}

.home-search__result-meta {
    font-size: var(--font-size-xs);
    color: var(--color-gray-500);
}

.home-search__empty {
    padding: var(--space-md);
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.home-search__cat-shortcut {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-sand-light);
    border: none;
    border-bottom: 1px solid var(--color-gray-100);
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition-fast);
}

.home-search__cat-shortcut:hover {
    background: var(--color-gray-100);
}

.home-search__cat-shortcut strong {
    font-weight: var(--font-weight-semibold);
}

.home-search__cat-count {
    margin-left: auto;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    background: var(--color-primary);
    color: var(--color-white-pure);
    border-radius: var(--radius-full);
    padding: 1px 7px;
}

.home-search__view-all {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--color-gray-100);
    font-size: var(--font-size-xs);
    color: var(--color-accent);
    text-align: center;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.home-search__view-all:hover {
    background: var(--color-gray-50);
    color: var(--color-accent);
}

.home-open-toggle {
    padding: 0 var(--space-md) var(--space-sm);
}

.home-open-toggle__btn {
    min-height: 32px;
    gap: 7px;
    padding: 0;
}

.home-open-toggle__track {
    width: 30px;
    height: 17px;
}

.home-open-toggle__knob {
    width: 13px;
    height: 13px;
}

.home-open-toggle__btn[aria-pressed="true"] .home-open-toggle__knob {
    transform: translateX(13px);
}

.home-open-toggle__label {
    font-size: var(--font-size-xs);
}

@media (min-width: 768px) {
    .home-open-toggle {
        padding: 0 var(--space-md) var(--space-sm);
    }
}

.drawer-open-notice {
    font-size: var(--font-size-xs);
    color: var(--color-gray-500);
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--color-gray-100);
    margin-top: var(--space-sm);
}

.drawer-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-800);
}
.drawer-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.drawer-status--open::before { background: var(--color-open); }
.drawer-status--closed::before { background: var(--color-closed); }

.home-chips-wrap {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    z-index: var(--z-dropdown);
}

.home-chips {
    display: flex;
    gap: var(--space-sm);
    padding: 0 var(--space-md);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    
    mask-image: linear-gradient(to right, black calc(100% - 32px), transparent);
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 32px), transparent);
}

.home-chips.is-scrolled {
    mask-image: linear-gradient(to right, transparent, black 32px, black calc(100% - 32px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 32px, black calc(100% - 32px), transparent);
}

.home-chips::-webkit-scrollbar { display: none; }

.home-chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 4px 10px 4px 8px;
    border-radius: var(--radius-full);
    background: var(--color-white-pure);
    color: var(--color-gray-700);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1.5px solid var(--color-gray-200);
}

.home-chip:hover {
    border-color: var(--chip-color, var(--color-primary));
    color: var(--chip-color, var(--color-primary));
}

.home-chip--active:hover,
.home-chip--active:focus-visible {
    border-color: var(--chip-color, var(--color-secondary));
    color: var(--color-white-pure);
}

.home-chip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--chip-color, #6c757d);
    flex-shrink: 0;
    transition: background-color var(--transition-fast);
}

.home-chip--active {
    background: var(--chip-color, var(--color-secondary));
    border-color: var(--chip-color, var(--color-secondary));
    color: var(--color-white-pure);
}

.home-chip--active:hover {
    background: var(--chip-color, var(--color-secondary));
    border-color: var(--chip-color, var(--color-secondary));
    color: var(--color-white-pure);
}

.home-chip--active .home-chip__dot {
    background-color: rgba(255, 255, 255, 0.7);
}

.home-chip__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 15px;
    padding: 0 4px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.08);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
}

.home-chip--active .home-chip__count {
    background: rgba(255, 255, 255, 0.25);
}

.home-map {
    width: 100%;
    height: calc(100dvh - var(--header-height));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

@media (min-width: 768px) {
    .home-map {
        position: relative;
        flex: 1;
        height: 100%;
        z-index: 1;
    }
}

:root {
    --drawer-collapsed-height: 148px;
    
    --mobile-topbar-height: 108px;
}

.home-locate {
    position: absolute;
    bottom: calc(var(--drawer-collapsed-height) + var(--space-md));
    right: var(--space-md);
    z-index: var(--z-dropdown);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    background: var(--color-white-pure);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-700);
    cursor: pointer;
    transition: bottom var(--transition-base), opacity var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.home-locate:hover {
    color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

@media (prefers-reduced-motion: no-preference) {
    .home-locate--loading {
        animation: pulse 1s infinite;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-locate--loading {
        opacity: 0.6;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.home-drawer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-dropdown);
    background: var(--color-white-pure);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -4px 20px rgba(43, 33, 24, 0.12);
    max-height: 174px;
    transition: max-height 0.35s ease;
    overflow: hidden;
}

.home-drawer--expanded {
    max-height: 70vh;
    overflow-y: auto;
}

@media (max-width: 767px) {
    .home-drawer--expanded ~ .home-locate,
    .home-drawer--expanded ~ .home-cta-fab,
    .home-sidebar--expanded ~ .home-locate,
    .home-sidebar--expanded ~ .home-cta-fab {
        opacity: 0;
        pointer-events: none;
    }
}

.home-drawer__handle {
    display: flex;
    justify-content: center;
    align-items: center; 
    min-height: 44px;
    padding: var(--space-sm) 0;
    cursor: pointer;
    touch-action: manipulation;
}

.home-drawer__handle span {
    display: block;
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: var(--color-gray-300);
}

.home-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-md) var(--space-sm);
}

.home-drawer__title {
    font-family: var(--font-family-base);
    font-size: var(--font-size-sm);
    color: var(--color-gray-800);
    font-weight: var(--font-weight-semibold);
    line-height: 1.25;
    margin: 0;
}

.home-drawer__toggle {
    display: flex;
    gap: 2px;
    background: var(--color-gray-50);
    border-radius: var(--radius-sm);
    padding: 2px;
}

.home-drawer__toggle-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--color-gray-500);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.home-drawer__toggle-btn--active {
    background: var(--color-white-pure);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.home-drawer__list {
    padding: 0 var(--space-sm) var(--space-lg);
}

.drawer-card {
    display: flex;
    gap: var(--space-sm);
    padding: 7px 8px;
    margin: 3px 0;
    border-radius: var(--radius-md);
    background: var(--color-white-pure);
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    overflow: hidden;
    position: relative;
}

.drawer-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-gray-200);
    transition: background var(--transition-fast);
}

.drawer-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.drawer-card:hover::before {
    background: var(--color-secondary);
}

.drawer-card__media {
    align-self: flex-start;  
    flex-shrink: 0;
}

.drawer-card__img {
    display: block;
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: var(--color-gray-50);
    flex-shrink: 0;
}

.drawer-card__img--placeholder {
    background: var(--color-sand-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23adb5bd' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l1-6h16l1 6'/%3E%3Cpath d='M3 9v11a1 1 0 001 1h16a1 1 0 001-1V9'/%3E%3Cline x1='3' y1='9' x2='21' y2='9'/%3E%3Cpath d='M9 21V13h6v8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}

.drawer-card__badge {
    position: static;
    z-index: auto;
    align-self: flex-start;
    max-width: 100%;
    margin-top: 4px;
    padding: 2px 7px;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: var(--badge-bg, var(--color-gray-100));
    color: var(--badge-fg, var(--color-gray-700));
    border: 1px solid var(--badge-border, var(--color-gray-300));
    filter: saturate(0.72);
    box-shadow: none;
    opacity: 1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.drawer-card__badge:hover {
    color: var(--badge-fg, var(--color-gray-700));
    transform: none;
    filter: saturate(0.72);
}

.drawer-card__body {
    flex: 1;
    min-width: 0;
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.drawer-card__title {
    font-family: var(--font-family-heading);
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-900);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    line-height: 1.15;
    margin: 0;
}

.drawer-card__body .badge {
    display: inline-flex;
    align-self: flex-start;
    font-size: var(--font-size-xs);
    padding: 3px 7px;
    opacity: 1;
    margin-top: auto;
    padding-top: 4px;
}

.drawer-card__meta {
    font-size: var(--font-size-xs);
    color: var(--color-gray-500);
    margin-top: 2px;
    overflow-wrap: anywhere;
    word-break: break-word;
    min-width: 0;
    line-height: 1.4;
}

.drawer-card__meta svg {
    display: inline;
    vertical-align: middle;
    margin-right: 3px;
    flex-shrink: 0;
}

.drawer-card__loading {
    text-align: center;
    padding: var(--space-lg);
    color: var(--color-gray-600);
}

.home-cta-fab {
    position: absolute;
    bottom: calc(var(--drawer-collapsed-height) + var(--space-md));
    left: var(--space-md);
    z-index: var(--z-dropdown);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--color-secondary);
    color: var(--color-white-pure);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: bottom var(--transition-base), opacity var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.home-cta-fab:hover {
    background: var(--color-secondary-dark);
    transform: scale(1.05);
    color: var(--color-white-pure);
}

.home-sidebar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-dropdown);
    
}

.home-sidebar__inner {
    background: var(--color-white-pure);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -4px 20px rgba(3, 63, 136, 0.1);
    max-height: 174px;
    transition: max-height 0.35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    overscroll-behavior: auto;
}

.home-sidebar--expanded .home-sidebar__inner {
    max-height: 70vh;
    overflow-y: auto;
}

@media (max-width: 767px) {

    
    .home-sidebar .home-search {
        position: fixed;
        top: calc(var(--header-height) + var(--space-sm));
        left: var(--space-md);
        right: var(--space-md);
        z-index: calc(var(--z-dropdown) + 6);
    }

    
    .home-sidebar .home-chips-wrap {
        position: fixed;
        top: calc(var(--header-height) + var(--space-sm) + 48px + var(--space-xs));
        left: 0;
        right: 0;
        z-index: calc(var(--z-dropdown) + 5);
        padding: 0;
    }

    .home-sidebar .home-chips {
        position: static;
        padding: 0 var(--space-md);
        display: flex;
        gap: var(--space-sm);
        overflow-x: auto;
        scrollbar-width: none;
    }
    .home-sidebar .home-chips::-webkit-scrollbar { display: none; }

    
    .home-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: var(--z-dropdown);
    }

    
    :root {
        --drawer-collapsed-height: calc(148px + env(safe-area-inset-bottom, 0px));
    }

    
    .home-sidebar__inner {
        max-height: var(--drawer-collapsed-height);
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        box-shadow: 0 -4px 24px rgba(3, 63, 136, 0.13);
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .home-sidebar--expanded .home-sidebar__inner {
        max-height: calc(100dvh - var(--header-height) - var(--mobile-topbar-height) - env(safe-area-inset-bottom, 0px));
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    
    .home-drawer__handle {
        display: flex;
    }

    
    .home-locate {
        bottom: calc(var(--drawer-collapsed-height) + var(--space-md));
        right: var(--space-md);
    }
    .home-cta-fab {
        bottom: calc(var(--drawer-collapsed-height) + var(--space-md) + 44px + var(--space-sm));
        left: auto;
        right: var(--space-md);
    }
}

@media (min-width: 768px) {
    .home-app {
        display: flex;
        height: calc(100dvh - var(--header-height));
        overflow: hidden;
    }

    
    .home-sidebar {
        position: static;
        width: 330px;
        min-width: 330px;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: none;
    }

    
    .home-sidebar__inner {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        max-height: none;
        border-radius: 0;
        box-shadow: var(--shadow-lg);
        border-right: 1px solid var(--color-gray-100);
        background: var(--color-gray-50);
        transition: none;
    }

    .home-sidebar--expanded .home-sidebar__inner {
        max-height: none;
        overflow-y: auto;
    }

    
    .home-sidebar .home-search {
        position: relative; 
        top: auto;
        left: auto;
        right: auto;
        padding: var(--space-md) var(--space-md) 0;
        z-index: auto;
    }

    .home-sidebar .home-search__form {
        box-shadow: none;
        border: 1.5px solid var(--color-gray-200);
    }

    .home-sidebar .home-chips-wrap {
        position: relative; 
        top: auto;
        left: auto;
        right: auto;
        z-index: auto;
        flex-shrink: 0;
        padding: 10px 0;
    }

    .home-sidebar .home-chips {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        padding: 0 var(--space-md);
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .home-sidebar .home-chips::-webkit-scrollbar { display: none; }

    .home-drawer__handle { display: none; }

    .home-drawer__header {
        padding: var(--space-sm) var(--space-md);
    }

    .home-drawer__list {
        flex: 1;
        overflow-y: auto;
        padding: 0 8px var(--space-md);
    }

    .home-map {
        flex: 1;
        height: 100%;
    }

    
    .home-app--list-mode .home-map {
        display: none;
    }

    .home-app--list-mode .home-sidebar {
        position: relative;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        bottom: auto;
        left: auto;
        right: auto;
        overflow-y: visible;
        z-index: 1;
        background: var(--color-white-pure);
    }

    .home-app--list-mode .home-drawer__list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--space-md);
        padding: var(--space-lg) var(--space-xl);
        max-width: 1100px;
        margin: 0 auto;
        flex: none;        
        overflow-y: visible;
    }

    .home-app--list-mode .drawer-card {
        margin: 0;
    }

    .home-app--list-mode .drawer-card::before {
        display: none;
    }

    .home-locate {
        bottom: calc(var(--space-xl) + 56px + var(--space-sm));
        right: var(--space-xl);
    }

    .home-cta-fab {
        bottom: var(--space-xl);
        left: auto;
        right: var(--space-xl);
    }
}

.map-popup {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.map-popup__img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    margin-bottom: var(--space-sm);
}

.map-popup__img--placeholder {
    background: var(--color-sand-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23adb5bd' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l1-6h16l1 6'/%3E%3Cpath d='M3 9v11a1 1 0 001 1h16a1 1 0 001-1V9'/%3E%3Cline x1='3' y1='9' x2='21' y2='9'/%3E%3Cpath d='M9 21V13h6v8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
}

.map-popup__title,
.leaflet-popup-content .map-popup__title,
.leaflet-popup-content .map-popup__title:visited {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-900);
    text-decoration: none;
    
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    line-height: var(--line-height-tight);
}

.map-popup__title:hover,
.leaflet-popup-content .map-popup__title:hover,
.leaflet-popup-content .map-popup__title:focus-visible {
    color: var(--color-primary);
}

.map-popup__address {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.map-popup__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.map-popup__badge {
    display: inline-flex;
    align-items: center;
    max-width: 128px;
    padding: 2px 7px;
    border-radius: var(--radius-sm);
    background: var(--badge-bg, var(--color-gray-100));
    color: var(--badge-fg, var(--color-gray-700));
    border: 1px solid var(--badge-border, var(--color-gray-300));
    filter: saturate(0.72);
    font-size: 9px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.map-popup__cta {
    margin-left: auto;
    font-size: var(--font-size-xs);
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    white-space: nowrap;
}

.map-popup__cta:hover {
    text-decoration: underline;
}

.home-open-toggle__btn:focus-visible,
.home-chip:focus-visible,
.home-drawer__toggle-btn:focus-visible,
.home-drawer__handle:focus-visible,
.home-locate:focus-visible,
.home-cta-fab:focus-visible,
.home-search__cat-shortcut:focus-visible,
.home-search__result:focus-visible,
.home-search__view-all:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}
