:root {
    /*
     * Shared LostInManila Compass Point palette.
     * These values match static/css/site.css.
     */
    --brand-forest: #1F5C42;
    --brand-moss: #4A6B3A;
    --brand-orange: #F28C28;
    --brand-sand: #F6F2E8;
    --brand-charcoal: #2C2C2C;
    --brand-white: #FFFFFF;

    --brand-forest-dark: #174632;
    --brand-forest-soft: #E8F0EB;
    --brand-orange-soft: #FFF1E3;
    --brand-border: #D9E1DC;
    --brand-muted: #66736B;

    --lim-header-green: var(--brand-forest);
    --lim-header-green-hover: var(--brand-forest-dark);
    --lim-header-text: var(--brand-white);
    --lim-header-muted: rgba(255, 255, 255, 0.78);
    --lim-panel-text: var(--brand-charcoal);
    --lim-panel-muted: var(--brand-muted);
    --lim-panel-border: var(--brand-border);
    --lim-panel-background: var(--brand-white);
    --lim-panel-soft: var(--brand-sand);
}

.lim-site-header,
.lim-site-header * {
    box-sizing: border-box;
}

.lim-site-header {
    background: var(--lim-header-green);
    color: var(--lim-header-text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.lim-header-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1220px;
    min-height: 72px;
    padding: 0 1.5rem;
}

.lim-brand {
    color: #ffffff;
    flex: 0 0 auto;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.055em;
    text-decoration: none;
}

.lim-brand:hover {
    color: #ffffff;
}

.lim-brand span {
    color: #a8ceb5;
}

.lim-main-navigation {
    align-items: center;
    display: flex;
    gap: 0.2rem;
    margin-left: auto;
}

.lim-main-link,
.lim-nav-dropdown > summary {
    align-items: center;
    border-radius: 0.45rem;
    color: var(--lim-header-muted);
    cursor: pointer;
    display: flex;
    font-size: 0.91rem;
    font-weight: 750;
    gap: 0.35rem;
    list-style: none;
    padding: 0.72rem 0.78rem;
    text-decoration: none;
    white-space: nowrap;
}

.lim-nav-dropdown > summary::-webkit-details-marker,
.lim-account-dropdown > summary::-webkit-details-marker {
    display: none;
}

.lim-main-link:hover,
.lim-main-link.active,
.lim-nav-dropdown > summary:hover,
.lim-nav-dropdown > summary.active,
.lim-nav-dropdown[open] > summary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.lim-nav-dropdown {
    position: relative;
}

.lim-nav-dropdown > summary > span {
    font-size: 0.8rem;
    transition: transform 0.18s ease;
}

.lim-nav-dropdown[open] > summary > span {
    transform: rotate(180deg);
}

.lim-dropdown-panel {
    background: var(--lim-panel-background);
    border: 1px solid rgba(15, 52, 34, 0.08);
    border-radius: 0.85rem;
    box-shadow:
        0 22px 70px
        rgba(7, 32, 20, 0.24);
    color: var(--lim-panel-text);
    padding: 0.75rem;
    position: absolute;
    right: 0;
    top: calc(100% + 0.65rem);
    width: 290px;
    z-index: 10010;
}

.lim-dropdown-panel a {
    text-decoration: none;
}

.lim-routes-panel > a,
.lim-coming-soon {
    align-items: center;
    border-radius: 0.5rem;
    color: var(--lim-panel-text);
    display: flex;
    font-size: 0.8rem;
    justify-content: space-between;
    padding: 0.7rem 0.75rem;
}

.lim-routes-panel > a:hover {
    background: var(--brand-orange-soft);
    color: var(--brand-forest);
}

.lim-dropdown-featured {
    align-items: flex-start !important;
    display: grid !important;
    gap: 0.15rem !important;
}

.lim-dropdown-featured strong {
    color: var(--brand-forest);
    font-size: 0.88rem;
}

.lim-dropdown-featured small {
    color: var(--lim-panel-muted);
    font-size: 0.69rem;
    font-weight: 500;
}

.lim-dropdown-separator {
    background: var(--lim-panel-border);
    height: 1px;
    margin: 0.4rem 0;
}

.lim-coming-soon {
    color: #768179;
}

.lim-coming-soon small {
    background: #e9eeeb;
    border-radius: 999px;
    color: #7e8982;
    font-size: 0.57rem;
    font-weight: 850;
    padding: 0.22rem 0.42rem;
    text-transform: uppercase;
}

.lim-mega-panel {
    max-height: calc(100vh - 95px);
    overflow-y: auto;
    width: min(880px, calc(100vw - 2rem));
}

.lim-destinations-panel {
    width: min(640px, calc(100vw - 2rem));
}

.lim-mega-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.lim-category-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.lim-mega-section {
    background: var(--lim-panel-soft);
    border-radius: 0.7rem;
    padding: 0.85rem;
}

.lim-mega-section h3 {
    color: var(--brand-forest);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.055em;
    margin: 0 0 0.55rem;
    text-transform: uppercase;
}

.lim-mega-section p {
    color: var(--lim-panel-muted);
    font-size: 0.68rem;
    line-height: 1.4;
    margin: -0.25rem 0 0.55rem;
}

.lim-mega-section > a {
    align-items: center;
    border-radius: 0.4rem;
    color: #354239;
    display: flex;
    font-size: 0.78rem;
    justify-content: space-between;
    padding: 0.38rem 0.45rem;
}

.lim-mega-section > a:hover {
    background: #e4eee7;
    color: var(--brand-forest);
}

.lim-mega-section > a small {
    color: #89938d;
    font-size: 0.65rem;
}

.lim-mega-section .lim-more-link {
    color: #25734c;
    font-size: 0.7rem;
    font-weight: 850;
    justify-content: flex-start;
    margin-top: 0.2rem;
}

.lim-view-all {
    align-items: center;
    border-top: 1px solid var(--lim-panel-border);
    color: #1d6a45;
    display: flex;
    font-size: 0.82rem;
    font-weight: 850;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding: 0.85rem 0.6rem 0.25rem;
}

.lim-account-dropdown {
    margin-left: 0.45rem;
    position: relative;
}

.lim-account-dropdown > summary {
    align-items: center;
    background: rgba(255, 255, 255, 0.11);
    border:
        1px solid
        rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    list-style: none;
    overflow: hidden;
    width: 40px;
}

.lim-account-dropdown > summary:hover,
.lim-account-dropdown[open] > summary {
    background: rgba(255, 255, 255, 0.2);
}

.lim-account-dropdown > summary img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lim-account-initial {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-size: 0.87rem;
    font-weight: 900;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.lim-account-guest-icon {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.lim-account-guest-icon svg {
    fill: none;
    height: 20px;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-width: 1.8;
    width: 20px;
}

.lim-mobile-account-label {
    display: none;
}

.lim-account-panel {
    background: #ffffff;
    border-radius: 0.8rem;
    box-shadow:
        0 20px 65px
        rgba(7, 32, 20, 0.24);
    color: var(--lim-panel-text);
    padding: 0.75rem;
    position: absolute;
    right: 0;
    top: calc(100% + 0.65rem);
    width: 295px;
    z-index: 10010;
}

.lim-account-user {
    align-items: center;
    border-bottom: 1px solid var(--lim-panel-border);
    display: flex;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.25rem 0.75rem;
}

.lim-account-user > img,
.lim-account-user > span {
    align-items: center;
    background: #1c6743;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    flex: 0 0 auto;
    font-size: 0.82rem;
    font-weight: 900;
    height: 39px;
    justify-content: center;
    object-fit: cover;
    width: 39px;
}

.lim-account-user > div {
    display: grid;
    gap: 0.1rem;
}

.lim-account-user strong {
    font-size: 0.82rem;
}

.lim-account-user small {
    color: var(--lim-panel-muted);
    font-size: 0.67rem;
}

.lim-account-links {
    display: grid;
    gap: 0.15rem;
}

.lim-account-links a,
.lim-account-logout button {
    background: transparent;
    border: 0;
    border-radius: 0.45rem;
    color: #435148;
    cursor: pointer;
    display: block;
    font: inherit;
    font-size: 0.77rem;
    font-weight: 750;
    padding: 0.58rem 0.62rem;
    text-align: left;
    text-decoration: none;
    width: 100%;
}

.lim-account-links a:hover,
.lim-account-logout button:hover {
    background: var(--brand-orange-soft);
    color: var(--brand-forest);
}

.lim-account-logout {
    border-top: 1px solid var(--lim-panel-border);
    margin: 0.5rem 0 0;
    padding-top: 0.5rem;
}

.lim-account-intro {
    padding: 0.25rem 0.3rem 0.7rem;
}

.lim-account-intro strong {
    color: #173f2d;
    display: block;
    font-size: 0.92rem;
}

.lim-account-intro p {
    color: var(--lim-panel-muted);
    font-size: 0.71rem;
    line-height: 1.45;
    margin: 0.25rem 0 0;
}

.lim-google-login {
    align-items: center;
    border: 1px solid #d3dcd6;
    border-radius: 0.55rem;
    color: var(--brand-charcoal);
    display: flex;
    font-size: 0.81rem;
    font-weight: 850;
    gap: 0.65rem;
    justify-content: center;
    padding: 0.72rem;
    text-decoration: none;
}

.lim-google-login:hover {
    background: var(--brand-sand);
    color: #173f2d;
}

.lim-google-login span {
    color: #4285f4;
    font-size: 1rem;
    font-weight: 900;
}

.lim-account-divider {
    align-items: center;
    color: #929d96;
    display: flex;
    font-size: 0.61rem;
    gap: 0.5rem;
    margin: 0.65rem 0;
    text-transform: uppercase;
}

.lim-account-divider::before,
.lim-account-divider::after {
    background: var(--lim-panel-border);
    content: "";
    flex: 1;
    height: 1px;
}

.lim-mobile-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    gap: 4px;
    padding: 0.6rem;
}

.lim-mobile-toggle span {
    background: #ffffff;
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 23px;
}

@media (max-width: 991px) {
    .lim-header-inner {
        flex-wrap: wrap;
        min-height: 66px;
        padding:
            0.75rem
            1rem;
    }

    .lim-brand {
        font-size: 1.3rem;
    }

    .lim-mobile-toggle {
        display: grid;
    }

    .lim-main-navigation {
        align-items: stretch;
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        gap: 0.1rem;
        margin: 0;
        padding: 0.7rem 0 0.15rem;
    }

    .lim-main-navigation.open {
        display: flex;
    }

    .lim-main-link,
    .lim-nav-dropdown > summary {
        justify-content: space-between;
        padding: 0.72rem;
        width: 100%;
    }

    .lim-nav-dropdown {
        width: 100%;
    }

    .lim-dropdown-panel,
    .lim-mega-panel,
    .lim-destinations-panel {
        box-shadow: none;
        margin-top: 0.3rem;
        max-height: none;
        overflow: visible;
        position: static;
        width: 100%;
    }

    .lim-mega-grid,
    .lim-category-grid {
        grid-template-columns: 1fr;
    }

    .lim-account-dropdown {
        margin:
            0.25rem
            0
            0;
        width: 100%;
    }

    .lim-account-dropdown > summary {
        border-radius: 0.55rem;
        gap: 0.65rem;
        height: auto;
        justify-content: flex-start;
        overflow: visible;
        padding: 0.55rem 0.7rem;
        width: 100%;
    }

    .lim-account-dropdown > summary img,
    .lim-account-dropdown > summary
    .lim-account-initial,
    .lim-account-dropdown > summary
    .lim-account-guest-icon {
        border-radius: 50%;
        height: 31px;
        width: 31px;
    }

    .lim-mobile-account-label {
        display: inline;
        font-size: 0.82rem;
        font-weight: 800;
    }

    .lim-account-panel {
        box-shadow: none;
        margin-top: 0.3rem;
        position: static;
        width: 100%;
    }
}


/* CONTRIBUTOR_HEADER_CSS_START */

.lim-account-contributor {
    align-items: center;
    background: #edf5f0;
    border-radius: 0.5rem;
    color: #256a47;
    display: flex;
    font-size: 0.68rem;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.55rem 0.6rem;
    text-decoration: none;
}

.lim-account-contributor span {
    font-weight: 800;
}

.lim-account-contributor strong {
    font-size: 0.7rem;
}

/* CONTRIBUTOR_HEADER_CSS_END */

/* EXPLORE_DIRECTORY_HEADER_START */

.lim-explore-nav-panel {
    width: min(
        920px,
        calc(100vw - 32px)
    );
    padding: 18px;
}

.lim-explore-nav-search {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.lim-explore-nav-search input {
    flex: 1;
    min-height: 42px;
    border: 1px solid #ccd8d0;
    border-radius: 10px;
    padding: 0 12px;
    font: inherit;
}

.lim-explore-nav-search button {
    border: 0;
    border-radius: 10px;
    padding: 0 18px;
    background: #145d3b;
    color: #fff;
    font-weight: 800;
}

.lim-explore-nav-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lim-explore-nav-grid section {
    background: #f4f7f5;
    border-radius: 12px;
    padding: 13px;
}

.lim-explore-nav-grid h3 {
    margin: 0 0 8px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--brand-moss);
}

.lim-explore-nav-grid a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 2px;
    color: #283b31;
    text-decoration: none;
    font-size: .88rem;
}

.lim-explore-nav-grid a:hover {
    color: #0c6b3d;
}

.lim-explore-nav-grid small {
    color: #79847d;
}

.lim-explore-nav-all {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid #d8e1db;
    color: #125d3b !important;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 760px) {
    .lim-explore-nav-grid {
        grid-template-columns: 1fr;
    }

    .lim-explore-nav-panel {
        max-height: 75vh;
        overflow: auto;
    }
}

/* EXPLORE_DIRECTORY_HEADER_END */

/* ==================================================================
   LOSTINMANILA COMPASS POINT HEADER — PHASE 1
   Desktop and mobile navigation.
   ================================================================== */

.lim-site-header {
    background: var(--brand-forest);
}

.lim-brand,
.lim-brand:hover,
.lim-brand:focus-visible {
    color: var(--brand-white);
}

.lim-brand span {
    color: #FFD4A8;
}

.lim-main-link:hover,
.lim-main-link.active,
.lim-nav-dropdown > summary:hover,
.lim-nav-dropdown > summary.active,
.lim-nav-dropdown[open] > summary {
    color: var(--brand-white);
    background: rgba(242, 140, 40, 0.2);
}

.lim-main-link.active,
.lim-nav-dropdown > summary.active {
    box-shadow: inset 0 -3px 0 var(--brand-orange);
}

.lim-dropdown-panel {
    color: var(--brand-charcoal);
    background: var(--brand-white);
    border-color: var(--brand-border);
}

.lim-routes-panel > a:hover,
.lim-dropdown-panel a:hover,
.lim-dropdown-panel a:focus-visible {
    color: var(--brand-forest);
    background: var(--brand-orange-soft);
}

.lim-dropdown-featured strong {
    color: var(--brand-forest);
}

.lim-account-button,
.lim-login-link,
.lim-register-link {
    border-color: rgba(255, 255, 255, 0.26);
}

.lim-register-link {
    color: var(--brand-white);
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

.lim-register-link:hover,
.lim-register-link:focus-visible {
    color: var(--brand-white);
    background: var(--brand-orange-dark);
    border-color: var(--brand-orange-dark);
}

/*
 * Mobile menu receives the same brand hierarchy as desktop.
 */
.lim-mobile-navigation,
.lim-mobile-panel,
.lim-mobile-drawer {
    color: var(--brand-charcoal);
}

.lim-mobile-navigation a:hover,
.lim-mobile-navigation a:focus-visible,
.lim-mobile-navigation a.active,
.lim-mobile-panel a:hover,
.lim-mobile-panel a:focus-visible,
.lim-mobile-panel a.active {
    color: var(--brand-forest);
    background: var(--brand-orange-soft);
}

.lim-mobile-navigation a.active,
.lim-mobile-panel a.active {
    border-left-color: var(--brand-orange);
}

.lim-menu-toggle:hover,
.lim-menu-toggle:focus-visible {
    color: var(--brand-white);
    background: rgba(242, 140, 40, 0.2);
}

.lim-site-header a:focus-visible,
.lim-site-header summary:focus-visible,
.lim-site-header button:focus-visible {
    outline: 3px solid rgba(242, 140, 40, 0.65);
    outline-offset: 2px;
}


/* PLACES_DISCOVERY_NAVIGATION_V1_START */

.lim-discovery-panel {
    width: min(
        980px,
        calc(100vw - 2rem)
    );
    max-height:
        calc(100vh - 95px);
    padding: 1.15rem;
    overflow-y: auto;
    color: #24352b;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfcfa 55%,
            #f5f1e7 100%
        );
}

.lim-destinations-panel {
    width: min(
        980px,
        calc(100vw - 2rem)
    );
}

.lim-categories-panel {
    width: min(
        980px,
        calc(100vw - 2rem)
    );
}

.lim-discovery-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding:
        .3rem
        .35rem
        .1rem;
}

.lim-discovery-eyebrow {
    display: block;
    margin-bottom: .35rem;
    color: #31704f;
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.lim-discovery-heading h2 {
    margin: 0;
    color: #173525;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.lim-discovery-heading p {
    max-width: 610px;
    margin: .45rem 0 0;
    color: #718077;
    font-size: .76rem;
    line-height: 1.5;
}

.lim-discovery-heading-mark {
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    place-items: center;
    border:
        1px solid
        rgba(31, 92, 66, .15);
    border-radius: 50%;
    background: #edf4ef;
    color: #286949;
    font-size: 1.15rem;
}

.lim-discovery-search {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1rem;
    padding: .42rem;
    border:
        1px solid
        #d4ded7;
    border-radius: .85rem;
    background: #ffffff;
    box-shadow:
        0 .5rem 1.6rem
        rgba(20, 51, 34, .06);
}

.lim-discovery-search > span {
    padding-left: .55rem;
    color: #5f7769;
    font-size: 1.05rem;
}

.lim-discovery-search input {
    width: 100%;
    min-height: 2.7rem;
    border: 0;
    outline: 0;
    background: transparent;
    color: #20372a;
    font: inherit;
    font-size: .83rem;
}

.lim-discovery-search button {
    display: inline-flex;
    min-height: 2.7rem;
    align-items: center;
    gap: .45rem;
    padding: .6rem 1rem;
    border: 0;
    border-radius: .65rem;
    background: #1f6a47;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: .75rem;
    font-weight: 850;
}

.lim-discovery-search button:hover {
    background: #174f37;
}

.lim-destination-feature-grid,
.lim-experience-feature-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin-bottom: .8rem;
}

.lim-destination-feature,
.lim-experience-feature {
    position: relative;
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;
    gap: .75rem;
    min-height: 145px;
    align-items: center;
    overflow: hidden;
    padding: 1rem;
    border-radius: .85rem;
    color: #ffffff !important;
    text-decoration: none;
    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.lim-destination-feature::before,
.lim-experience-feature::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .9;
    pointer-events: none;
}

.lim-destination-feature > *,
.lim-experience-feature > * {
    position: relative;
    z-index: 1;
}

.lim-destination-feature:hover,
.lim-experience-feature:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow:
        0 .85rem 2rem
        rgba(20, 51, 34, .16);
}

.lim-destination-feature-manila {
    background:
        linear-gradient(
            135deg,
            #1d5e43,
            #3f8060
        );
}

.lim-destination-feature-manila::before {
    background:
        radial-gradient(
            circle at 84% 12%,
            rgba(255, 199, 118, .5),
            transparent 42%
        );
}

.lim-destination-feature-baguio {
    background:
        linear-gradient(
            135deg,
            #384f43,
            #72856d
        );
}

.lim-destination-feature-baguio::before {
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(223, 238, 220, .33),
            transparent 45%
        );
}

.lim-experience-food {
    background:
        linear-gradient(
            135deg,
            #85452f,
            #c46e42
        );
}

.lim-experience-food::before {
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(255, 208, 145, .35),
            transparent 43%
        );
}

.lim-experience-nature {
    background:
        linear-gradient(
            135deg,
            #245b42,
            #58936b
        );
}

.lim-experience-nature::before {
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(190, 231, 191, .28),
            transparent 43%
        );
}

.lim-destination-icon,
.lim-experience-symbol {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    border:
        1px solid
        rgba(255, 255, 255, .32);
    border-radius: 50%;
    background:
        rgba(255, 255, 255, .13);
    font-size: 1rem;
}

.lim-destination-feature small,
.lim-experience-feature small {
    display: block;
    margin-bottom: .2rem;
    color:
        rgba(255, 255, 255, .72);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.lim-destination-feature strong,
.lim-experience-feature strong {
    display: block;
    color: #ffffff;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.05;
}

.lim-destination-feature p,
.lim-experience-feature p {
    margin: .38rem 0 0;
    color:
        rgba(255, 255, 255, .78);
    font-size: .67rem;
    line-height: 1.45;
}

.lim-destination-arrow,
.lim-experience-arrow {
    font-size: 1.1rem;
}

.lim-destination-groups {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.lim-destination-groups > section {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);
    gap: .65rem;
    padding: .85rem;
    border:
        1px solid
        #e0e5df;
    border-radius: .8rem;
    background:
        rgba(255, 255, 255, .78);
}

.lim-destination-group-icon,
.lim-experience-group-symbol {
    display: grid;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: .55rem;
    background: #e8f1eb;
    color: #226544;
    font-size: .85rem;
}

.lim-destination-groups h3,
.lim-experience-group h3 {
    margin: 0;
    color: #22583e;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.lim-destination-groups p,
.lim-experience-group p {
    margin: .25rem 0 .55rem;
    color: #78847d;
    font-size: .62rem;
    line-height: 1.4;
}

.lim-destination-links,
.lim-experience-links {
    display: grid;
    gap: .08rem;
}

.lim-destination-links a,
.lim-experience-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding: .38rem .4rem;
    border-radius: .4rem;
    color: #34463c;
    font-size: .7rem;
    font-weight: 720;
    text-decoration: none;
}

.lim-destination-links a:hover,
.lim-experience-links a:hover {
    background: #edf4ef !important;
    color: #195f3e !important;
}

.lim-destination-links a span,
.lim-experience-links a span:last-child {
    color: #38805b;
}

.lim-experience-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.lim-experience-group {
    min-width: 0;
    padding: .85rem;
    border:
        1px solid
        #e0e5df;
    border-radius: .8rem;
    background:
        rgba(255, 255, 255, .8);
}

.lim-experience-group-heading {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);
    gap: .6rem;
    align-items: flex-start;
}

.lim-experience-group-heading p {
    margin-bottom: .35rem;
}

.lim-experience-links a > span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lim-experience-quick-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: .8rem;
    padding: .7rem .8rem;
    border-radius: .7rem;
    background: #f2f5f1;
}

.lim-experience-quick-row > span {
    flex: 0 0 auto;
    color: #5f6f65;
    font-size: .66rem;
    font-weight: 800;
}

.lim-experience-quick-row > div {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

.lim-experience-quick-row a {
    padding: .3rem .5rem;
    border:
        1px solid
        #d6e0d9;
    border-radius: 999px;
    background: #ffffff;
    color: #256445;
    font-size: .62rem;
    font-weight: 800;
    text-decoration: none;
}

.lim-experience-quick-row a:hover {
    border-color: #88aa95;
    background: #e9f2ec !important;
}

.lim-discovery-footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .85rem;
    padding: .85rem .7rem .1rem;
    border-top:
        1px solid
        #d8e1db;
    color: #1b6141 !important;
    text-decoration: none;
}

.lim-discovery-footer-link > span:first-child {
    display: grid;
    gap: .1rem;
}

.lim-discovery-footer-link strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: .85rem;
}

.lim-discovery-footer-link small {
    color: #7a867e;
    font-size: .61rem;
}

.lim-discovery-footer-link > span:last-child {
    font-size: 1rem;
}

@media (max-width: 991px) {
    .lim-discovery-panel,
    .lim-destinations-panel,
    .lim-categories-panel {
        width: 100%;
        max-height: 72vh;
        padding: .85rem;
        overflow-y: auto;
    }

    .lim-discovery-heading {
        padding:
            .15rem
            .1rem;
    }

    .lim-discovery-heading h2 {
        font-size: 1.4rem;
    }

    .lim-destination-feature-grid,
    .lim-experience-feature-grid,
    .lim-destination-groups,
    .lim-experience-grid {
        grid-template-columns: 1fr;
    }

    .lim-destination-feature,
    .lim-experience-feature {
        min-height: 125px;
    }

    .lim-experience-quick-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .lim-discovery-search {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .lim-discovery-search button {
        grid-column:
            1 / -1;
        justify-content: center;
    }

    .lim-discovery-heading-mark {
        display: none;
    }

    .lim-destination-feature,
    .lim-experience-feature {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .lim-destination-arrow,
    .lim-experience-arrow {
        display: none;
    }
}

/* PLACES_DISCOVERY_NAVIGATION_V1_END */

