





/* Disable pointer events on parent links that have submenus */
.mrp-menu-level-0 > li.has-submenu > a {
    pointer-events: none;
    cursor: default;
}

/* 1) Hide the "North West Calgary" label */
#bid_2095520 .mrp-listing-areas-section > h3 {
    display: none;
}

/* 2) Turn the list into a flexible, mobile friendly layout */
#bid_2095520 .mrp-listing-areas-section ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Mobile first: each item full width */
#bid_2095520 .mrp-listing-areas-section ul li {
    flex: 1 1 100%;
}

/* On larger screens, two per row */
@media (min-width: 768px) {
    #bid_2095520 .mrp-listing-areas-section ul li {
        flex: 1 1 calc(50% - 10px);
    }
}

/* 3) Link styling: Lato, 20px, arrow, chip-style card */
#bid_2095520 .mrp-listing-areas-section ul li a {
    font-family: 'Lato', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400;
    color: #2b2b2b;

    display: block;
    position: relative;
    padding: 10px 16px 10px 28px; /* room for arrow on the left */

    background: #f7f7f7;
    border-radius: 999px; /* pill look */
    text-decoration: none;
    line-height: 1.4;

    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: background .2s ease, box-shadow .2s ease, transform .1s ease;
}

/* Small arrow on the left */
#bid_2095520 .mrp-listing-areas-section ul li a::before {
    content: "›";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-55%);
    font-size: 16px;
    color: #999;
}

/* Hover effect for desktop */
#bid_2095520 .mrp-listing-areas-section ul li a:hover {
    background: #ececec;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

/* Active/tap feedback (helps on mobile) */
#bid_2095520 .mrp-listing-areas-section ul li a:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}