/* City page header & hero — matches Figma city layout */

:root {
    --city-peach: #ffc2a8;
    --city-orange: #fa611e;
    --city-text: #1a1a1a;
    --city-muted: #6b7280;
    --city-border: #e5e7eb;
    --city-bg: #f5f5f5;
}

/* ── City breadcrumb (Figma: under page title) ── */

.city-page-header-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.city-page-header-block .city-hero-title {
    margin: 0 0 12px;
}

.city-page-header-block .city-breadcrumb {
    margin: 0;
}

.city-breadcrumb-bar {
    background: #fff;
    padding: 10px 0 14px;
}

.city-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--city-muted);
}

.city-breadcrumb a {
    color: var(--city-orange);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.city-breadcrumb a:hover {
    color: #e0521a;
}

.city-breadcrumb .sep {
    color: #9ca3af;
    margin: 0 2px;
    user-select: none;
}

.city-breadcrumb .sep--dark {
    color: var(--city-text);
}

.city-breadcrumb .current {
    color: var(--city-muted);
    font-size: 14px;
    font-weight: 500;
}

.city-breadcrumb__muted {
    color: var(--city-muted);
    font-size: 14px;
    font-weight: 500;
}

/* ── Two-tier city header ── */

.city-page-header .city-top-bar {
    background-color: var(--city-peach);
    padding: 10px 0;
}

.city-page-header .city-top-bar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.city-page-header .city-top-bar__home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    flex-shrink: 0;
    text-decoration: none;
    margin-right: 4px;
    white-space: nowrap;
}

.city-page-header .city-top-bar__home i {
    color: #000;
    font-size: 19px;
}

.city-page-header .city-top-bar__home:hover,
.city-page-header .city-top-bar__home:hover i {
    color: var(--city-orange);
}

.city-page-header .city-top-bar__search {
    width: 100%;
    max-width: 520px;
    position: relative;
    flex-shrink: 0;
}

.city-page-header .city-top-bar__search .form-control {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    border: none;
    border-radius: 0;
    padding: 10px 8px 10px 18px;
    font-size: 16px;
    height: auto;
    background: transparent;
    box-shadow: none;
}

.city-page-header .city-top-bar__search .form-control::placeholder {
    color: #9ca3af;
}

.city-page-header .community-search-input-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.city-page-header .community-search-clear-btn {
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;

    /* Blue gradient text color */
    background: linear-gradient(135deg, #4a7bb0 0%, #1c3b68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: filter 0.2s ease, transform 0.1s ease;
}

.city-page-header .community-search-clear-btn:hover,
.city-page-header .community-search-clear-btn:focus {
    /* Slightly brighter hover state using brightness filter */
    filter: brightness(1.25);
    outline: none;
}
.city-page-header .community-search-input-wrap.has-value .community-search-clear-btn {
    display: flex;
}

.city-page-header .city-top-bar__search .search-icon {
    flex-shrink: 0;
    padding: 0 14px 0 2px;
    color: #9ca3af;
    font-size: 15px;
    pointer-events: none;
}

.city-page-header .city-top-bar__right {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    flex-shrink: 0;
}

.city-page-header .city-top-bar__right > a,
.city-page-header .city-top-bar__right #city-header-auth-guest a,
.city-page-header .city-top-bar__right #city-header-auth-user a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}

.city-page-header .city-top-bar__right > a:hover,
.city-page-header .city-top-bar__right #city-header-auth-guest a:hover,
.city-page-header .city-top-bar__right #city-header-auth-user a:hover {
    color: var(--city-orange);
}

.city-page-header .city-top-bar__right #city-header-auth-guest a i,
.city-page-header .city-top-bar__right #city-header-auth-user a i {
    color: #000;
    margin-right: 4px;
    font-size: 15px;
}

.city-page-header .city-top-bar__right #city-header-auth-guest,
.city-page-header .city-top-bar__right #city-header-auth-user {
    display: inline-block;
}

.city-page-header .city-top-bar__right .city-nav-dropdown {
    position: relative;
}

.city-page-header .city-top-bar__right .city-nav-dropdown__toggle {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    gap: 2px;
    border: none;
    background: none;
    appearance: none;
    -webkit-appearance: none;
}

.city-page-header .city-top-bar__right .city-nav-dropdown__toggle:hover {
    color: var(--city-orange);
}

.city-page-header .city-top-bar__right .city-nav-dropdown.is-open .city-nav-dropdown__toggle {
    color: #000;
}

.city-page-header .city-top-bar__right .city-nav-dropdown.is-open .city-nav-dropdown__chevron {
    color: var(--city-muted);
}

.city-page-header .city-top-bar__right .city-top-bar__dropdown-menu {
    left: auto;
    right: 0;
    transform: none;
}

.city-page-header #city-search-results,
.city-page-header #construction-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 1050;
    max-height: 400px;
    overflow: auto;
    background: #fffaf5;
    border: 1px solid var(--city-border);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.city-page-header .city-main-bar {
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
    padding: 8px 0;
}

.city-page-header .city-main-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.city-page-header .city-main-bar__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.city-logo-icon {
    width: 40px;
    height: 40px;
    background: #F064281A;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid #f26b50;
}

.city-page-header .hoa-brand-home-icon {
    display: block;
    width: 36px;
    height: 32px;
    flex-shrink: 0;
}

.city-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.city-logo-wordmark {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.city-logo-hoa {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #f26b50;
    letter-spacing: -0.5px;
}

.city-logo-bb {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #1e2a3a;
    letter-spacing: -0.5px;
}

.city-logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    font-weight: 500;
    color: #888;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Mobile: tighten the logo slightly */
@media (max-width: 768px) {
    .city-logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 7px;
    }

    .city-logo-icon i {
        font-size: 17px !important;
    }

    .city-page-header .hoa-brand-home-icon {
        width: 32px;
        height: 28px;
    }

    .city-logo-hoa,
    .city-logo-bb {
        font-size: 16px;
    }

    .city-logo-tagline {
        font-size: 7px;
        letter-spacing: 1px;
    }
}

.city-page-header .city-main-bar__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.city-page-header .city-main-bar__nav a {
    color: var(--city-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 4px;
    white-space: nowrap;
}

.city-page-header .city-main-bar__nav a:hover {
    color: var(--city-orange);
}

.city-page-header .city-main-bar__nav a .fa-angle-down {
    font-size: 12px;
    margin-left: 2px;
    color: var(--city-muted);
}

/* Communities dropdown */
.city-page-header .city-nav-dropdown {
    position: relative;
}

.city-page-header .city-nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--city-text);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 4px;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
}

.city-page-header .city-nav-dropdown__toggle:hover,
.city-page-header .city-nav-dropdown.is-open .city-nav-dropdown__toggle {
    color: var(--city-orange);
}

.city-page-header .city-nav-dropdown__chevron {
    font-size: 12px;
    color: var(--city-muted);
    transition: transform 0.2s;
}

.city-page-header .city-nav-dropdown.is-open .city-nav-dropdown__chevron {
    transform: rotate(180deg);
    color: var(--city-orange);
}

.city-page-header .city-nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    max-width: 280px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 1050;
    overflow: hidden;
}

.city-page-header .city-nav-dropdown__search {
    position: relative;
    padding: 10px 12px 4px;
    background: #fff;
    border-bottom: none;
}

.city-page-header .city-nav-dropdown__search-input {
    width: 100%;
    border: none;
    border-radius: 20px;
    padding: 8px 36px 8px 14px;
    font-size: 14px;
    font-family: Inter, sans-serif;
    color: var(--city-text);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 1px #e5e7eb;
}

.city-page-header .city-nav-dropdown__search-input:focus {
    box-shadow: 0 0 0 1px var(--city-orange);
}

.city-page-header .city-nav-dropdown__list-wrap {
    border-top: none;
    overflow-x: hidden;
}

.city-page-header .city-nav-dropdown__list > li:first-child {
    border-top: none;
}

.city-page-header .city-nav-dropdown__search-input::placeholder {
    color: #9ca3af;
}

.city-page-header .city-nav-dropdown__search-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 13px;
    pointer-events: none;
}

.city-page-header .city-nav-dropdown__list-wrap.is-scrollable {
    max-height: 308px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

.city-page-header .city-nav-dropdown__list-wrap.is-scrollable::-webkit-scrollbar {
    width: 6px;
    height: 0;
}

.city-page-header .city-nav-dropdown__list-wrap.is-scrollable::-webkit-scrollbar:horizontal {
    display: none;
    height: 0;
}

.city-page-header .city-nav-dropdown__list-wrap.is-scrollable::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.city-page-header .city-nav-dropdown__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.city-page-header .city-nav-dropdown__list li {
    border-bottom: 1px solid #eee;
}

.city-page-header .city-nav-dropdown__list li:last-child {
    border-bottom: none;
}

.city-page-header .city-nav-dropdown__list a {
    display: block;
    padding: 12px 16px;
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.city-page-header .city-nav-dropdown__list a:hover,
.city-page-header .city-nav-dropdown__list a.is-active {
    color: var(--city-orange);
    background: #fff7f3;
    border: none;
    margin: 0;
}

.city-page-header .city-nav-dropdown__loading,
.city-page-header .city-nav-dropdown__empty {
    padding: 12px 16px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.city-page-header .city-main-bar__search-btn {
    background: none;
    border: none;
    color: var(--city-muted);
    font-size: 18px;
    padding: 8px;
    cursor: pointer;
    margin-left: 8px;
}

.city-page-header .city-main-bar__search-btn:hover {
    color: var(--city-orange);
}

.city-page-header .city-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.city-page-header .city-mobile-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 1px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

body.city-mobile-drawer-open .city-page-header .city-mobile-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.city-mobile-drawer-open .city-page-header .city-mobile-toggle__bar:nth-child(2) {
    opacity: 0;
}

body.city-mobile-drawer-open .city-page-header .city-mobile-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay card (Figma) */
.city-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 96px 16px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.city-mobile-drawer.is-open {
    display: flex;
    pointer-events: auto;
}

.city-mobile-drawer__backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    border: none;
    background: transparent;
    opacity: 0;
    transition: opacity 0.25s ease;
    cursor: pointer;
    padding: 0;
}

.city-mobile-drawer.is-open .city-mobile-drawer__backdrop {
    opacity: 1;
}

.city-mobile-drawer__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 320px;
    max-height: calc(100vh - 120px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    flex-shrink: 0;
}

.city-mobile-drawer.is-open .city-mobile-drawer__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body.city-mobile-drawer-open {
    overflow: hidden;
}

.city-mobile-drawer__logo {
    flex-shrink: 0;
    padding: 20px 24px 18px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    text-align: center;
}

.city-mobile-drawer__logo .hoa-brand-home-icon {
    width: 32px;
    height: 28px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.city-mobile-drawer__nav {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.city-mobile-drawer__link,
.city-mobile-drawer__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 15px 40px;
    border: none;
    border-bottom: 1px solid #eee;
    background: none;
    color: #111;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    gap: 8px;
    line-height: 1.35;
}

.city-mobile-drawer__link--home {
    color: var(--city-orange);
    font-weight: 600;
}

.city-mobile-drawer__link--plain .fa-angle-down {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #9ca3af;
    flex-shrink: 0;
}

.city-mobile-drawer__link--auth {
    font-weight: 700;
}

.city-mobile-drawer__link i.fa-user {
    font-size: 15px;
    color: #111;
}

.city-mobile-drawer__link.is-active,
.city-mobile-drawer__link--home:hover,
.city-mobile-drawer__link:hover,
.city-mobile-drawer__toggle:hover {
    color: var(--city-orange);
}

.city-mobile-drawer__link--home:hover {
    color: #d45a12;
}

.city-mobile-drawer__toggle {
    flex-wrap: wrap;
    row-gap: 0;
}

.city-mobile-drawer__toggle .fa-angle-down {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #9ca3af;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.city-mobile-drawer__group.is-open .city-mobile-drawer__toggle .fa-angle-down {
    transform: translateY(-50%) rotate(180deg);
}

.city-mobile-drawer__link:hover i.fa-user {
    color: var(--city-orange);
}

.city-mobile-drawer__group.is-open .city-mobile-drawer__toggle .fa-angle-down {
    color: var(--city-orange);
}

.city-mobile-drawer__group.is-open .city-mobile-drawer__toggle {
    color: var(--city-orange);
}

.city-mobile-drawer__submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.city-mobile-drawer__submenu li {
    border-bottom: 1px solid #eee;
}

.city-mobile-drawer__submenu li:last-child {
    border-bottom: none;
}

.city-mobile-drawer__submenu a {
    display: block;
    padding: 12px 24px 12px 36px;
    color: #333;
    font-size: 15px;
    text-decoration: none;
}

.city-mobile-drawer__submenu a:hover,
.city-mobile-drawer__submenu a.city-mobile-drawer__view-more {
    color: var(--city-orange);
}

.city-mobile-drawer__communities-panel {
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.city-mobile-drawer__search {
    position: relative;
    padding: 10px 16px 4px;
    background: #fff;
    border-bottom: none;
}

.city-mobile-drawer__search-input {
    width: 100%;
    border: none;
    border-radius: 20px;
    padding: 8px 36px 8px 14px;
    font-size: 14px;
    font-family: Inter, sans-serif;
    color: var(--city-text);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 1px #e5e7eb;
}

.city-mobile-drawer__search-input:focus {
    box-shadow: 0 0 0 1px var(--city-orange);
}

.city-mobile-drawer__search .fa-search {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 13px;
    pointer-events: none;
}

.city-mobile-drawer__list-wrap {
    overflow-x: hidden;
}

.city-mobile-drawer__list-wrap.is-scrollable {
    max-height: 308px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

.city-mobile-drawer__list-wrap.is-scrollable::-webkit-scrollbar {
    width: 6px;
    height: 0;
}

.city-mobile-drawer__list-wrap.is-scrollable::-webkit-scrollbar:horizontal {
    display: none;
    height: 0;
}

.city-mobile-drawer__submenu a {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.city-mobile-drawer__empty {
    padding: 12px 24px 12px 36px;
    color: var(--city-muted);
    font-size: 14px;
}

.city-mobile-drawer__social {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px 24px 28px;
    margin-top: auto;
    border-top: 1px solid #eee;
    background: #fff;
}

.city-mobile-drawer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--city-orange);
    color: var(--city-orange);
    font-size: 17px;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.city-mobile-drawer__social a:hover {
    background: var(--city-orange);
    color: #fff;
}

/* ── City hero section ── */

.city-hero-section {
    background: #fff;
    padding: 28px 0 40px;
}

.city-hero-section .city-hero-title {
    font-family: var(--font-family-roboto, "Roboto", sans-serif);
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.city-hero-card {
    background: #fff;
    border: 1px solid #fbd8c9;
    border-radius: 10px;
    overflow: hidden;
}

.city-hero-card__body {
    display: grid;
    grid-template-columns: minmax(0, 482.838px) minmax(0, 1fr);
    gap: 38px;
    padding: 28px 32px 32px;
    align-items: start;
}

.city-hero-card__body--no-gallery {
    grid-template-columns: minmax(0, 1fr);
}

.city-hero-gallery {
    width: 100%;
    max-width: 482.838px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.city-hero-gallery__main {
    position: relative;
    width: min(100%, 482.838px);
    aspect-ratio: 482.838 / 429.577;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 10px;
}

.city-hero-gallery__main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.city-hero-gallery__zoom-trigger {
    cursor: zoom-in;
}

.city-hero-gallery__thumbs {
    display: block;
}

.city-hero-gallery__thumbs-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 482.838px);
}

.city-hero-gallery__thumb-slot {
    position: relative;
}

.city-hero-gallery__thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 151.633 / 103.902;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: #e8e8e8;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.city-hero-gallery__thumb.active,
.city-hero-gallery__thumb:hover {
    border-color: var(--city-orange);
}

.city-hero-gallery__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.city-hero-gallery__thumb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-45%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #333;
    color: var(--city-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    font-size: 12px;
    transition: background 0.18s ease, transform 0.18s ease;
}

.city-hero-gallery__thumb-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
    transform: translateY(-50%) scale(1.05);
}

.city-hero-gallery__thumb-arrow--prev {
    left: 6px;
}

.city-hero-gallery__thumb-arrow--next {
    right: 6px;
}

.city-hero-gallery__thumb-arrow[hidden] {
    display: none !important;
}

.city-gallery-modal .modal-content {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(20, 20, 22, 0.95);
    color: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
}

.city-gallery-modal {
    background: rgba(5, 5, 6, 0.76);
}

.city-gallery-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-gallery-modal .modal-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.city-gallery-modal__count {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.city-gallery-modal .modal-body {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 66px 12px;
    background: radial-gradient(circle at center, #222 0%, #0f0f10 85%);
}

.city-gallery-modal__figure {
    margin: 0;
    width: 100%;
    height: 100%;
    max-height: calc(65vh - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-gallery-modal__figure img {
    width: 100%;
    height: 100%;
    max-height: calc(65vh - 40px);
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.25s ease;
}

.city-gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.18s ease, background 0.18s ease;
}

.city-gallery-modal__nav:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.04);
}

.city-gallery-modal__nav--prev {
    left: 14px;
}

.city-gallery-modal__nav--next {
    right: 14px;
}

.city-gallery-modal .btn-close {
    margin-left: auto;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

.city-gallery-modal .btn-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.city-gallery-modal__caption {
    min-height: 42px;
    padding: 0 18px 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.45;
}

.city-hero-content__heading {
    font-family: var(--font-family-roboto, "Roboto", sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.city-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-width: 0;
    min-height: 0;
    overflow: visible;
    position: relative;
    z-index: 2;
    background: #fff;
}

.city-hero-content__underline {
    width: 42px;
    height: 3px;
    background: var(--city-orange);
    margin-bottom: 18px;
}

.city-hero-content__main {
    min-width: 0;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.city-hero-content__text {
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    flex: 1 1 auto;
    min-height: 0;
}

.city-hero-content__preview {
    position: relative;
}

.city-hero-content__preview.is-truncated #cityHeroTextInner {
    display: block;
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {
    .city-hero-content__preview.is-truncated #cityHeroTextInner {
        max-height: 350px;
    }
}

.city-hero-content__preview.is-truncated #cityHeroTextInner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
}

#cityHeroTextBody {
    display: block;
    position: relative;
}

#cityHeroTextInner {
    display: block;
}

.city-hero-content__text p,
#cityHeroTextParagraph {
    margin: 0;
    color: #333;
    text-align: left;
}

.city-hero-read-more {
    display: inline;
    color: var(--city-orange);
    font-weight: 700;
    font-size: 15px;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    border: none;
    padding: 0;
    margin: 0;
    font-family: Inter, sans-serif;
    white-space: nowrap;
    vertical-align: baseline;
}

.city-hero-read-more[hidden] {
    display: none;
}

#cityReadMoreModal .modal-body p {
    margin-bottom: 1rem;
    color: #333;
}

#cityReadMoreModal .modal-body p:last-child {
    margin-bottom: 0;
}

.city-hero-read-more:hover {
    text-decoration: underline;
    color: #e05510;
}

.city-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
    border-top: 1px solid #fbd8c9;
    padding-top: 18px;
}

.city-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 16px 8px;
    text-align: center;
}

.city-hero-stat + .city-hero-stat {
    border-left: 1px solid #fbd8c9;
}

.city-hero-stat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    margin-bottom: 6px;
    line-height: 1;
}

.city-hero-stat__icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.city-hero-stat__value {
    font-family: var(--font-family-roboto, "Roboto", sans-serif);
    font-size: 16px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}

.city-hero-stat__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(156, 163, 175, 1);
    margin-top: 4px;
}

/* Read more modal */
#cityReadMoreModal .modal-content {
    border-radius: 12px;
    border: none;
}

#cityReadMoreModal .modal-header {
    border-bottom: 1px solid var(--city-border);
    padding: 20px 24px;
}

#cityReadMoreModal .modal-title {
    font-weight: 700;
    font-size: 1.25rem;
}

#cityReadMoreModal .modal-body {
    padding: 24px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #374151;
    max-height: 70vh;
    overflow-y: auto;
}

#cityReadMoreModal .modal-body p {
    margin-bottom: 1rem;
}

/* ── City page mobile section order: content → knowledge → gallery ── */

@media (max-width: 991px) {
    .city-page-mobile-order {
        display: flex;
        flex-direction: column;
        padding: 20px 0 32px;
    }

    .city-page-mobile-order .city-hero-section,
    .city-page-mobile-order .city-hero-section > .container,
    .city-page-mobile-order .city-hero-card,
    .city-page-mobile-order .city-hero-card__body {
        display: contents;
    }

    .city-page-mobile-order .city-page-header-block {
        order: 0;
        box-sizing: border-box;
    }

    .city-page-mobile-order .city-hero-content {
        order: 1;
        box-sizing: border-box;
        border: 1px solid #fbd8c9;
        border-radius: 10px;
        margin: 0 16px 20px;
        width: calc(100% - 32px);
        align-self: center;
        padding: 16px;
        background: #fff;
    }

    .city-page-mobile-order .city-knowledge-section {
        order: 2;
        width: 100%;
    }

    .city-page-mobile-order .city-hero-gallery {
        order: 3;
        width: 100%;
        box-sizing: border-box;
        padding: 0 16px 8px;
        max-width: 482.838px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .city-page-mobile-order {
        display: block;
    }
}

/* ── Knowledge section ("Everything you need to know") ── */

.city-knowledge-section {
    padding: 48px 0 56px;
}

.city-knowledge-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.city-knowledge-section__column--list {
    position: relative;
    min-width: 0;
    background: #F5F7FA;
    border: 1px solid #fbd8c9;
    border-radius: 20px;
    padding: 30px 36px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.city-knowledge-section__column--sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.city-knowledge-section__title {
    text-align: center;
    font-family: "Inter", Anton, serif;
    font-size: 34.92px;
    font-weight: 600;
    color: var(--city-text);
    line-height: 1.35;
    margin: 0 0 16px;
    font-synthesis: none;
}

.city-knowledge-section__description {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 920px;
    margin: 0 auto 36px;
}

.city-knowledge-section__highlight {
    color: var(--city-text);
    white-space: nowrap;
}

.city-knowledge-section__panel {
    background: #fff;
    border: 1px solid #e6e7eb;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.city-knowledge-section__panel--cta {
    padding: 22px 22px 20px;
}

.city-knowledge-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.city-knowledge-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 19px 20px;
    min-height: 56px;
}

.city-knowledge-row.is-active {
    border-color: #b8d4f0;
    box-shadow: 0 2px 12px rgba(184, 212, 240, 0.35);
}

.city-knowledge-row__bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111;
    flex-shrink: 0;
}

.city-knowledge-row__label {
    flex: 1;
    font-family: Inter, sans-serif;
    font-size: 24.5px;
    font-weight: 700;
    color: var(--city-text);
    line-height: 1.3;
}

.city-knowledge-row__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Inter, sans-serif;
    font-size: 17.46px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--city-orange);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.city-knowledge-row__action:hover,
.city-knowledge-row__action:focus {
    color: #d45a12;
    text-decoration: none;
    outline: none;
}

.city-knowledge-row__action i {
    font-size: 11px;
}

.city-knowledge-row--community .city-knowledge-row__search {
    display: none;
}

.city-knowledge-row--community.is-search-mode .city-knowledge-row__action--toggle {
    display: none;
}

.city-knowledge-row--community.is-search-mode .city-knowledge-row__search {
    display: block;
}

.city-knowledge-row__search {
    position: relative;
    flex-shrink: 0;
    width: 280px;
    max-width: 42%;
}

.city-knowledge-row__search .form-control {
    border-radius: 24px;
    border: none;
    padding: 8px 40px 8px 16px;
    font-size: 14px;
    height: auto;
    background: #fff;
    box-shadow: 0 0 0 1px #e5e7eb;
}

.city-knowledge-row__search .form-control::placeholder {
    color: #9ca3af;
}

.city-knowledge-row__search .form-control:focus {
    box-shadow: 0 0 0 1px var(--city-orange);
    outline: none;
}

.city-knowledge-row__search .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    pointer-events: none;
}

.city-knowledge-picker {
    position: absolute;
    top: 0;
    right: 37px;
    width: 300px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 30;
}

.city-knowledge-picker__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 0;
    line-height: 1;
}

.city-knowledge-picker__close:hover,
.city-knowledge-picker__close:focus {
    background: #e5e7eb;
    color: var(--city-text);
    outline: none;
}

.city-knowledge-picker__list {
    list-style: none;
    margin: 0;
    padding: 6px 0 6px 0;
    max-height: 308px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

.city-knowledge-picker__list::-webkit-scrollbar {
    width: 6px;
}

.city-knowledge-picker__list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.city-knowledge-picker__list li {
    border-bottom: 1px solid #f3f4f6;
}

.city-knowledge-picker__list li:last-child {
    border-bottom: none;
}

.city-knowledge-picker__list a {
    display: block;
    padding: 11px 20px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: var(--city-text);
    text-decoration: none;
}

.city-knowledge-picker__list a:hover,
.city-knowledge-picker__list a.is-active {
    background: #fff7f3;
    color: var(--city-orange);
}

.city-knowledge-picker__loading,
.city-knowledge-picker__empty {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--city-muted);
}

.city-knowledge-section__sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.city-knowledge-cta {
    display: flex;
    flex-direction: column;
}

.city-knowledge-cta__title {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--city-text);
    margin: 0 0 15px;
    line-height: 1.3;
}

.city-knowledge-cta__text {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--city-muted);
    margin: 0 0 20px;
}

.city-knowledge-section__column--sidebar .city-knowledge-cta:first-child .city-knowledge-cta__btn {
    margin-top: 28px;
}

.city-knowledge-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    padding: 12px 16px;
    border: 1px solid rgba(240, 100, 40, 1);
    border-radius: 10px;
    background: #fff;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--city-orange);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.city-knowledge-cta__btn:hover,
.city-knowledge-cta__btn:focus {
    background: var(--city-orange);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.city-knowledge-cta__btn i {
    font-size: 14px;
}

/* Communities anchor section (View More target) */

.city-communities-anchor {
    padding-bottom: 48px;
}

.city-communities-anchor__title {
    font-family: "Anton", serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 20px;
    color: var(--city-text);
}

/* Communities section below hero */
.city-communities-section {
    padding: 0 0 48px;
}

@media (max-width: 991px) {
    .city-page-header .city-top-bar {
        padding: 12px 0;
        overflow: visible;
    }

    .city-page-header .city-top-bar__inner {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 10px;
        overflow: visible;
    }

    .city-page-header .city-top-bar__home {
        display: none;
    }

    .city-page-header .city-top-bar__search {
        display: block;
        order: 2;
        flex: 1 1 100%;
        max-width: none;
        width: 100%;
    }

    .city-page-header .city-top-bar__right {
        display: flex;
        order: 1;
        flex: 1 1 100%;
        width: 100%;
        margin-left: 0;
        justify-content: center;
        align-items: flex-start;
        gap: 8px;
        flex-wrap: nowrap;
        position: relative;
        overflow: visible;
    }

    .city-page-header .city-top-bar__right .city-nav-dropdown {
        position: static;
    }

    .city-page-header .city-top-bar__right > a,
    .city-page-header .city-top-bar__right .city-nav-dropdown {
        flex: 1 1 0;
        min-width: 0;
        max-width: 33.333%;
    }

    .city-page-header .city-top-bar__right > a {
        display: block;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
    }

    .city-page-header .city-top-bar__right .city-nav-dropdown__toggle {
        display: block;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.25;
        white-space: normal;
        text-align: center;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .city-page-header .city-top-bar__right .city-nav-dropdown__chevron {
        display: inline;
        font-size: 10px;
        margin-left: 1px;
        vertical-align: baseline;
    }

    .city-page-header .city-top-bar__right .city-top-bar__dropdown-menu {
        left: 0;
        right: 0;
        transform: none;
        width: auto;
        min-width: 0;
        max-width: none;
    }

    .city-page-header .city-top-bar__right #city-header-auth-guest,
    .city-page-header .city-top-bar__right #city-header-auth-user {
        display: none !important;
    }

    .city-page-header .city-main-bar {
        padding: 10px 0;
    }

    .city-page-header .city-main-bar__logo {
        flex: 1;
        min-width: 0;
        width: auto;
        height: auto;
        gap: 8px;
    }

    .city-page-header .city-main-bar__logo .hoa-brand-home-icon {
        width: 32px;
        height: 28px;
        object-fit: contain;
    }

    .city-page-header .city-main-bar__logo .city-logo-text {
        min-width: 0;
    }

    .city-page-header .city-main-bar__nav {
        display: none;
    }

    .city-page-header .city-mobile-toggle {
        display: inline-flex;
    }

    .city-hero-section {
        padding: 0;
    }

    .city-hero-card__body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .city-page-mobile-order .city-hero-card__body {
        padding: 0;
    }

    .city-hero-content {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible;
        gap: 20px;
        margin-left: 0;
        background: transparent;
    }

    .city-hero-content__main {
        flex: 0 0 auto;
        min-height: 0;
    }

    .city-hero-content__text {
        flex: 0 0 auto;
        min-height: 0;
    }

    .city-hero-stats {
        margin-top: 50px;
        padding-top: 16px;
    }

    .city-hero-section .city-hero-title {
        font-size: 1.65rem;
        margin-bottom: 8px;
    }

    .city-page-header-block {
        align-items: center;
        text-align: center;
        margin-bottom: 16px;
    }

    .city-page-header-block .city-hero-title {
        width: 100%;
        text-align: center;
    }

    .city-page-header-block .city-breadcrumb {
        justify-content: center;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 2px;
        font-family: Inter, sans-serif;
        font-size: 8px;
        font-weight: 500;
        font-style: normal;
        letter-spacing: 0;
        line-height: 20px;
        text-align: center;
        vertical-align: middle;
    }

    .city-page-header-block .city-breadcrumb a,
    .city-page-header-block .city-breadcrumb .current,
    .city-page-header-block .city-breadcrumb__muted {
        font-family: inherit;
        font-size: 8px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 20px;
    }

    .city-page-header-block .city-breadcrumb .sep {
        font-size: 8px;
        line-height: 20px;
        margin: 0 1px;
    }

    .city-hero-gallery__main {
        width: 100%;
        margin-bottom: 10px;
    }

    .city-hero-gallery__main img {
        object-fit: cover;
        object-position: center center;
    }

    .city-hero-gallery__thumbs-track {
        width: 100%;
        gap: 10px;
    }

    .city-hero-gallery__thumbs {
        width: 100%;
    }

    .city-hero-gallery__thumb {
        border-radius: 6px;
    }

    .city-hero-gallery__thumb img {
        object-fit: cover;
        object-position: center center;
    }

    .city-hero-stat {
        padding: 16px 8px 18px;
    }

    .city-hero-stat__value {
        font-size: 1.1rem;
    }

    .city-hero-stat__label {
        font-size: 10px;
    }

    .city-knowledge-section {
        padding: 28px 0 36px;
    }

    .city-knowledge-section__layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .city-knowledge-section__column--list {
        padding: 24px 16px 28px;
        border-radius: 16px;
    }

    .city-knowledge-section__title {
        font-size: 1.45rem;
        margin-bottom: 20px;
        padding: 0 4px;
    }

    .city-knowledge-section__highlight {
        white-space: normal;
    }

    .city-knowledge-section__column--sidebar,
    .city-knowledge-section__sidebar {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .city-knowledge-row {
        display: grid;
        grid-template-columns: 8px 1fr;
        column-gap: 10px;
        row-gap: 10px;
        align-items: start;
        padding: 16px 18px;
    }

    .city-knowledge-row__bullet {
        grid-column: 1;
        grid-row: 1;
        margin-top: 7px;
    }

    .city-knowledge-row__label {
        grid-column: 2;
        grid-row: 1;
        width: fit-content;
        max-width: 100%;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.35;
        padding-bottom: 5px;
    }

    .city-knowledge-row__search {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-width: 100%;
    }

    .city-knowledge-row__action {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-left: 18px;
        text-decoration: none;
        font-size: 12px;
        white-space: normal;
    }

    .city-knowledge-row__action-label {
        text-decoration: underline;
        text-underline-offset: 3px;
        font-size: 20px;
        font-weight: 500;
    }

    .city-knowledge-picker {
        width: calc(100% - 36px);
        right: 18px;
    }
}

@media (max-width: 767px) {
    .city-page-header .city-top-bar__right > a,
    .city-page-header .city-top-bar__right .city-nav-dropdown__toggle {
        font-weight: 600;
    }

    .city-hero-section .city-hero-title {
        font-size: 1.45rem;
    }

    .city-hero-card {
        border-radius: 8px;
    }

    .city-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .city-hero-stat + .city-hero-stat {
        border-left: 1px solid #F06428;
        border-top: none;
    }

    .city-hero-stat__icon {
        min-height: 28px;
        margin-bottom: 6px;
    }

    .city-hero-stat__icon img {
        max-height: 28px;
    }

    .city-hero-stat__value {
        font-size: 0.95rem;
    }

    .city-knowledge-section__title {
        font-size: 24px;
        font-weight: 600;
    }

    .city-knowledge-list {
        gap: 10px;
    }

    .city-knowledge-section__panel--cta {
        padding: 18px 16px;
    }

    .city-page-header .city-top-bar__search .form-control::placeholder {
        font-size: 15px;
    }

    .city-page-header .community-search-clear-btn {
        width: 32px;
        height: 32px;
    }

    .city-mobile-drawer {
        padding-top: 88px;
    }

    .city-gallery-modal .modal-body {
        min-height: 52vh;
        padding: 12px 48px 10px;
    }

    .city-gallery-modal__figure,
    .city-gallery-modal__figure img {
        max-height: calc(52vh - 24px);
    }

    .city-gallery-modal__nav {
        width: 38px;
        height: 38px;
    }

    .city-gallery-modal__caption {
        font-size: 0.84rem;
        padding: 0 12px 12px;
    }
    .city-knowledge-cta__text {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--city-muted);
    margin: 0 0 50px;
}
}

@media (min-width: 768px) and (max-width: 991px) {
    .city-knowledge-section__column--sidebar,
    .city-knowledge-section__sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
