.city-page {
    padding: 22px 0 56px;
    background: #f6f6f8;
}

.city-page__inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.city-searchbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px 8px 18px;
    border: 1px solid #d6d6de;
    border-radius: 14px;
    background: #fff;
}

.city-searchbar__left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-weight: 500;
}

.city-searchbar__left i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    color: #475569;
}

.city-searchbar__right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ef3b1c;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(239, 59, 28, 0.22);
}

.city-searchbar__right i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.city-breadcrumbs--compact {
    margin: 18px 0 16px;
    padding-top: 18px;
    border-top: 1px solid #dddddf;
    font-size: 13px;
}

.city-breadcrumbs--compact a {
    color: #ef3b1c;
    text-decoration: none;
    font-weight: 600;
}

.city-titlebar h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    color: #1f2937;
}

.city-titlebar p {
    margin: 10px 0 0;
    color: #6b7280;
}

.city-list {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.listing-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f04a30;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.listing-row__media {
    position: relative;
    display: block;
    width: 150px;
    min-height: 100%;
    background: #e5e7eb;
}

.listing-row__media img {
    width: 150px;
    height: 100%;
    min-height: 278px;
    max-height: 278px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.listing-row__count,
.listing-row__flag,
.listing-row__vipmark {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
}

.listing-row__count {
    left: 10px;
    bottom: 10px;
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.78);
    color: #fff;
}

.listing-row__count i {
    font-size: 11px;
    line-height: 1;
}

.listing-row__flag {
    top: 10px;
    left: 10px;
    padding: 5px 8px;
    border-radius: 999px;
    background: #ef3b1c;
    color: #fff;
    text-transform: uppercase;
}

.listing-row__flag--new {
    background: #ff4b2b;
}

.listing-row__content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 16px 18px 18px;
}

.listing-row__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.listing-row__top h2 {
    margin: 0;
    max-width: 820px;
    font-size: 18px;
    line-height: 1.25;
}

.listing-row__top h2 a {
    color: #334155;
    text-decoration: none;
    font-weight: 700;
}

.listing-row__vipmark {
    position: static;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: #fff1f0;
    color: #ef3b1c;
    white-space: nowrap;
}

.listing-row__excerpt {
    margin: 10px 0 0;
    color: #6b7280;
    line-height: 1.45;
    font-size: 14px;
}

.listing-row__meta {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    color: #2f3a4f;
    font-weight: 600;
    font-size: 14px;
}

.listing-row__meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.35;
}

.listing-row__meta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    min-width: 16px;
    font-size: 14px;
    line-height: 1;
    color: #374151;
}

.listing-row__actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
}

.row-action {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.row-action i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.row-action--call { background: #ef3b1c; }
.row-action--wa { background: #22c55e; }
.row-action--tg { background: #1994d4; }

.city-pagination-wrap {
    padding: 30px 0 12px;
    text-align: center;
}

.city-pagination-wrap p {
    margin: 0 0 14px;
    color: #334155;
}

.city-pagination {
    display: inline-flex;
    gap: 10px;
}

.city-pagination a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #cfd4da;
    color: #334155;
    background: #fff;
    font-weight: 700;
}

.city-pagination a.is-active {
    background: #ef3b1c;
    color: #fff;
    border-color: #ef3b1c;
}

.city-content-block {
    margin-top: 26px;
    padding: 12px 0 0;
}

.city-content-block h2 {
    margin: 0 0 18px;
    text-align: center;
    font-size: 34px;
    color: #1f2937;
}

.city-content-block__item {
    margin-bottom: 18px;
}

.city-content-block__item h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #243247;
}

.city-content-block__item p {
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.65;
}

.city-content-block__item h2,
.city-content-block__item h3,
.city-content-block__item p,
.city-content-block__item ul,
.city-content-block__item ol,
.city-content-block__item blockquote {
    margin: 0 0 14px;
}

.city-content-block__item h2 {
    font-size: 27px;
    line-height: 1.3;
    color: #172554;
}

.city-content-block__item ul,
.city-content-block__item ol {
    padding-left: 22px;
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
}

.city-content-block__item li {
    margin-bottom: 8px;
}

.city-content-block__item a {
    color: #1d4ed8;
    text-decoration: underline;
}

.city-content-block__item blockquote {
    padding: 14px 16px;
    border-left: 4px solid #93c5fd;
    border-radius: 12px;
    background: #f8fbff;
    color: #334155;
}

.city-content-block__faq-answer > *:last-child,
.city-content-block__item > *:last-child {
    margin-bottom: 0;
}

.city-link-sections {
    display: grid;
    gap: 22px;
    margin-top: 30px;
}

.city-link-block {
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(239, 59, 28, 0.12);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.city-link-block--soft {
    background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
}

.city-link-block__head {
    margin-bottom: 18px;
}

.city-link-block__head p {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ef3b1c;
}

.city-link-block__head h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    color: #1f2937;
}

.city-link-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.city-link-cloud a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 180px;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.city-link-cloud a:hover {
    transform: translateY(-2px);
    border-color: #f59e8b;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.city-link-cloud span {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.city-link-cloud small {
    font-size: 13px;
    color: #64748b;
}

.city-link-cloud--top a {
    background: linear-gradient(180deg, #ffffff 0%, #fff6fa 100%);
}

.city-empty {
    margin-top: 24px;
    padding: 48px 24px;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.city-primary {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    background: #ef3b1c;
    color: #fff;
}

.website-contact-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.08);
}

.website-contact-sticky__btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    min-width: 0;
    min-height: 50px;
    padding: 0 10px;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 12px;
    overflow: hidden;
}

.website-contact-sticky__btn--call { background: #ef3b1c; }
.website-contact-sticky__btn--wa { background: #22c55e; }
.website-contact-sticky__btn--tg { background: #1994d4; }

.website-contact-sticky__btn i {
    line-height: 1;
    font-size: 18px;
}

.website-contact-sticky__btn span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 860px) {
    .listing-row {
        grid-template-columns: 96px 1fr;
        align-items: stretch;
        border-color: #cad6ea;
    }

    .listing-row__media {
        width: 96px;
    }

    .listing-row__media img {
        width: 96px;
        min-height: 188px;
        max-height: 188px;
    }

    .listing-row__content {
        padding: 10px 10px 10px 12px;
    }

    .listing-row__top {
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }

    .listing-row__top h2 {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.18;
    }

    .listing-row__vipmark {
        padding: 3px 7px;
        font-size: 9px;
    }

    .listing-row__excerpt {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .listing-row__meta {
        gap: 4px;
        margin-top: 8px;
        font-size: 10px;
    }

    .listing-row__meta span {
        gap: 6px;
        line-height: 1.2;
    }

    .listing-row__meta i {
        width: 12px;
        min-width: 12px;
        font-size: 11px;
    }

    .listing-row__actions {
        justify-content: flex-end;
        gap: 8px;
        padding-top: 8px;
    }

    .row-action {
        width: 34px;
        height: 34px;
        font-size: 14px;
        background: #fff;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
    }

    .row-action--call { color: #d61f7a; }
    .row-action--wa { color: #22c55e; }
    .row-action--tg { color: #1994d4; }

    .listing-row__flag {
        top: 6px;
        left: 6px;
        font-size: 9px;
        padding: 4px 7px;
    }

    .listing-row__count {
        left: 6px;
        bottom: 6px;
        font-size: 9px;
        padding: 3px 6px;
    }

    .city-link-block {
        padding: 18px;
        border-radius: 18px;
    }

    .city-link-block__head h2 {
        font-size: 21px;
    }

    .city-link-cloud {
        gap: 10px;
    }

    .city-link-cloud a {
        min-width: calc(50% - 5px);
        padding: 12px 13px;
        border-radius: 14px;
    }
}

@media (max-width: 560px) {
    .city-page__inner {
        width: min(100% - 20px, 1120px);
    }

    .city-titlebar h1 {
        font-size: 24px;
    }

    .city-content-block h2 {
        font-size: 26px;
    }

    .city-link-block__head h2 {
        font-size: 19px;
    }

    .city-link-cloud a {
        min-width: calc(50% - 5px);
        padding: 11px 10px;
        border-radius: 12px;
        gap: 4px;
    }

    .city-link-cloud span {
        font-size: 14px;
        line-height: 1.2;
    }

    .city-link-cloud small {
        font-size: 11px;
        line-height: 1.25;
    }

    .website-contact-sticky {
        gap: 8px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    }

    .website-contact-sticky__btn {
        height: 44px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .city-page {
        padding: 16px 0 40px;
    }

    .city-searchbar {
        flex-wrap: nowrap;
        padding: 8px 10px;
    }

    .city-searchbar__left {
        min-width: 0;
    }

    .city-searchbar__left span {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .city-searchbar__right {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 15px;
    }

    .listing-row {
        grid-template-columns: 88px 1fr;
        border-radius: 12px;
    }

    .listing-row__media {
        width: 88px;
    }

    .listing-row__media img {
        width: 88px;
        min-height: 176px;
        max-height: 176px;
    }

    .listing-row__top h2 {
        font-size: 14px;
    }

    .listing-row__excerpt {
        font-size: 11px;
        -webkit-line-clamp: 3;
    }

    .listing-row__actions {
        justify-content: flex-end;
    }

    .row-action {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* ================= CITY MOBILE TUNING ================= */
.city-searchbar__right,
.city-searchbar__right.hero-search-btn,
.city-search-trigger {
    min-width: 0 !important;
    max-width: 46px;
}

@media (max-width: 860px) {
    .listing-row {
        border-color: #b7cae8;
        box-shadow: 0 8px 20px rgba(72, 101, 145, 0.10);
    }

    .listing-row__top h2 a {
        color: #d61f7a;
        font-weight: 700;
    }

    .listing-row__vipmark {
        position: absolute;
        top: 8px;
        right: 8px;
        z-index: 2;
        background: #eef6ff;
        color: #3b82f6;
        border: 1px solid #d5e5fb;
    }

    .listing-row__excerpt {
        color: #475569;
    }

    .listing-row__meta span:last-child {
        color: #0f172a;
    }
}

@media (max-width: 480px) {
    .city-searchbar__right,
    .city-searchbar__right.hero-search-btn,
    .city-search-trigger {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        max-width: 36px;
        min-width: 36px !important;
        border-radius: 50%;
        padding: 0;
        box-shadow: 0 6px 14px rgba(239, 59, 28, 0.18);
    }

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

    .listing-row {
        grid-template-columns: 86px 1fr;
        border-radius: 10px;
        overflow: hidden;
    }

    .listing-row__media {
        width: 86px;
    }

    .listing-row__media img {
        width: 86px;
        min-height: 172px;
        max-height: 172px;
    }

    .listing-row__content {
        padding: 8px 8px 8px 10px;
    }

    .listing-row__top {
        padding-right: 56px;
    }

    .listing-row__top h2 {
        font-size: 14px;
        line-height: 1.14;
    }

    .listing-row__top h2 a {
        color: #d61f7a;
    }

    .listing-row__vipmark {
        top: 6px;
        right: 6px;
        padding: 2px 6px;
        font-size: 8px;
    }

    .listing-row__excerpt {
        margin-top: 4px;
        font-size: 10px;
        line-height: 1.22;
        -webkit-line-clamp: 3;
    }

    .listing-row__meta {
        margin-top: 6px;
        gap: 3px;
        font-size: 9px;
    }

    .listing-row__meta i {
        width: 10px;
        min-width: 10px;
        font-size: 10px;
    }

    .listing-row__actions {
        gap: 6px;
        padding-top: 6px;
    }

    .row-action {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .row-action--call,
    .row-action--wa,
    .row-action--tg {
        background: #fff;
    }

    .row-action--call { color: #d61f7a; border: 1px solid #f4c2dc; }
    .row-action--wa { color: #22c55e; border: 1px solid #bbf7d0; }
    .row-action--tg { color: #1994d4; border: 1px solid #bfdbfe; }

    .listing-row__flag {
        top: 4px;
        left: 4px;
        font-size: 8px;
        padding: 3px 6px;
    }

    .listing-row__count {
        left: 4px;
        bottom: 4px;
        font-size: 8px;
        padding: 2px 5px;
    }
}
/* ================= FINAL CITY MOBILE MATCH ================= */
.city-searchbar__right,
.city-searchbar__right.hero-search-btn,
.city-search-trigger,
button.city-searchbar__right.hero-search-btn.city-search-trigger {
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    flex: 0 0 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

.city-searchbar__right i,
.city-search-trigger i {
    margin: 0;
    line-height: 1;
}

@media (max-width: 768px) {
    .city-searchbar {
        padding: 8px 10px;
        gap: 10px;
    }

    .city-searchbar__left {
        min-width: 0;
    }

    .city-searchbar__left span {
        white-space: normal;
        line-height: 1.2;
        font-size: 13px;
    }

    .city-searchbar__right,
    .city-searchbar__right.hero-search-btn,
    .city-search-trigger,
    button.city-searchbar__right.hero-search-btn.city-search-trigger {
        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
        flex: 0 0 38px !important;
        height: 38px !important;
        box-shadow: 0 6px 14px rgba(239, 59, 28, 0.16) !important;
    }

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

    .listing-row {
        grid-template-columns: 86px 1fr;
        border: 1px solid #b8cae8;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(65, 96, 148, 0.10);
    }

    .listing-row__media {
        width: 86px;
    }

    .listing-row__media img {
        width: 86px;
        min-height: 175px;
        max-height: 175px;
    }

    .listing-row__content {
        padding: 8px 8px 8px 10px;
    }

    .listing-row__top {
        align-items: flex-start;
        gap: 6px;
        padding-right: 44px;
    }

    .listing-row__top h2 {
        font-size: 13px;
        line-height: 1.15;
        letter-spacing: -0.1px;
    }

    .listing-row__top h2 a {
        color: #d61f7a;
        font-weight: 700;
    }

    .listing-row__vipmark {
        position: absolute;
        top: 6px;
        right: 6px;
        padding: 2px 5px;
        border-radius: 999px;
        border: 1px solid #d6e4ff;
        background: #eef5ff;
        color: #4a87d9;
        font-size: 8px;
        line-height: 1;
    }

    .listing-row__excerpt {
        margin-top: 4px;
        font-size: 10px;
        line-height: 1.25;
        color: #4b5563;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .listing-row__meta {
        margin-top: 6px;
        gap: 2px;
        font-size: 9px;
    }

    .listing-row__meta span {
        gap: 6px;
    }

    .listing-row__meta i {
        width: 10px;
        min-width: 10px;
        font-size: 10px;
    }

    .listing-row__actions {
        justify-content: flex-end;
        gap: 6px;
        padding-top: 7px;
    }

    .row-action {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.10);
    }

    .row-action--call {
        color: #d61f7a;
        border: 1px solid #f5c2dd;
    }

    .row-action--wa {
        color: #22c55e;
        border: 1px solid #bbf7d0;
    }

    .row-action--tg {
        color: #1994d4;
        border: 1px solid #bfdbfe;
    }

    .listing-row__flag {
        top: 4px;
        left: 4px;
        padding: 3px 6px;
        font-size: 8px;
    }

    .listing-row__count {
        left: 4px;
        bottom: 4px;
        padding: 2px 5px;
        font-size: 8px;
    }
}

/* ================= CITY CARD SIZE BOOST ================= */
.listing-row {
    grid-template-columns: 140px 1fr;
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.listing-row__media {
    width: 140px;
}

.listing-row__media img {
    width: 140px;
    min-height: 240px;
    max-height: 240px;
}

.listing-row__content {
    padding: 20px 22px 20px 22px;
}

.listing-row__top {
    gap: 16px;
}

.listing-row__top h2 {
    font-size: 22px;
    line-height: 1.22;
}

.listing-row__vipmark {
    padding: 6px 12px;
    font-size: 12px;
}

.listing-row__excerpt {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.62;
}

.listing-row__meta {
    gap: 9px;
    margin-top: 16px;
    font-size: 14px;
}

.listing-row__meta i {
    width: 18px;
    min-width: 18px;
    font-size: 14px;
}

.listing-row__actions {
    gap: 12px;
    padding-top: 18px;
}

.row-action {
    width: 54px;
    height: 54px;
    font-size: 21px;
}

@media (max-width: 860px) {
    .listing-row {
        grid-template-columns: 116px 1fr;
        border-radius: 16px;
    }

    .listing-row__media {
        width: 116px;
    }

    .listing-row__media img {
        width: 116px;
        min-height: 218px;
        max-height: 218px;
    }

    .listing-row__content {
        padding: 14px 14px 14px 16px;
    }

    .listing-row__top h2 {
        font-size: 17px;
        line-height: 1.24;
    }

    .listing-row__excerpt {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.45;
    }

    .listing-row__meta {
        margin-top: 10px;
        gap: 6px;
        font-size: 11px;
    }

    .listing-row__actions {
        gap: 10px;
        padding-top: 10px;
    }
}

@media (max-width: 560px) {
    .listing-row {
        grid-template-columns: 104px 1fr;
    }

    .listing-row__media {
        width: 104px;
    }

    .listing-row__media img {
        width: 104px;
        min-height: 204px;
        max-height: 204px;
    }

    .listing-row__content {
        padding: 12px 12px 12px 14px;
    }

    .listing-row__top h2 {
        font-size: 16px;
    }

    .listing-row__excerpt {
        font-size: 12px;
        -webkit-line-clamp: 4;
    }

    .listing-row__meta {
        font-size: 10px;
    }
}

/* ================= CITY CARD PREMIUM POLISH ================= */
.listing-row {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.listing-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    border-color: #f97316;
}

.listing-row__flag {
    padding: 7px 11px;
    font-size: 12px;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 20px rgba(239, 59, 28, 0.22);
}

.listing-row__vipmark {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #ea580c;
    border: 1px solid #fdba74;
    box-shadow: 0 8px 18px rgba(251, 146, 60, 0.14);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.listing-row__top h2 a {
    transition: color 0.18s ease;
}

.listing-row:hover .listing-row__top h2 a {
    color: #1e293b;
}

.row-action {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.row-action:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 16px 24px rgba(15, 23, 42, 0.16);
}

@media (max-width: 860px) {
    .listing-row:hover {
        transform: none;
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
    }

    .listing-row__flag {
        padding: 4px 8px;
        font-size: 9px;
        box-shadow: none;
    }

    .listing-row__vipmark {
        font-size: 9px;
    }

    .row-action:hover {
        transform: none;
        box-shadow: 0 8px 14px rgba(15, 23, 42, 0.10);
    }
}



/* ================= CITY CARD ALIGNMENT FIX ================= */
.listing-row__media {
    overflow: hidden;
}

.listing-row__top h2 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.listing-row__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

@media (max-width: 860px) {
    .listing-row {
        min-height: 210px;
    }

    .listing-row__media {
        height: 100%;
        align-self: stretch;
    }

    .listing-row__media img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        max-height: none;
    }

    .listing-row__content {
        justify-content: space-between;
        min-height: 210px;
    }
}

@media (max-width: 480px) {
    .listing-row {
        min-height: 176px;
    }

    .listing-row__media {
        height: 100%;
    }

    .listing-row__media img {
        height: 100%;
        min-height: 100%;
        max-height: none;
    }

    .listing-row__content {
        min-height: 176px;
    }

    .listing-row__excerpt {
        -webkit-line-clamp: 3;
    }
}

/* ================= CITY CARD MOBILE SIZE TUNE ================= */
@media (max-width: 560px) {
    .city-page__inner {
        width: min(100%, calc(100% - 18px));
    }

    .city-list {
        gap: 14px;
    }

    .listing-row {
        grid-template-columns: 122px minmax(0, 1fr);
        min-height: 214px;
        border-radius: 18px;
    }

    .listing-row__media {
        width: 122px;
        height: 100%;
        align-self: stretch;
    }

    .listing-row__media img {
        width: 122px;
        height: 100%;
        min-height: 214px;
        max-height: none;
        object-fit: cover;
        object-position: center top;
    }

    .listing-row__content {
        min-height: 214px;
        padding: 13px 13px 13px 15px;
    }

    .listing-row__top h2 {
        font-size: 17px;
        line-height: 1.2;
    }

    .listing-row__top h2 a {
        -webkit-line-clamp: 3;
    }

    .listing-row__excerpt {
        font-size: 12.5px;
        line-height: 1.42;
        -webkit-line-clamp: 4;
    }

    .listing-row__meta {
        font-size: 10.5px;
        gap: 5px;
    }

    .listing-row__actions {
        gap: 9px;
    }
}

@media (max-width: 420px) {
    .listing-row {
        grid-template-columns: 128px minmax(0, 1fr);
        min-height: 224px;
    }

    .listing-row__media {
        width: 128px;
    }

    .listing-row__media img {
        width: 128px;
        min-height: 224px;
    }

    .listing-row__content {
        min-height: 224px;
        padding: 12px 12px 12px 14px;
    }
}

/* ================= CITY CARD SKOKKA STYLE POLISH ================= */
@media (max-width: 560px) {
    .listing-row {
        border: 1px solid #9dc4ef;
        box-shadow: 0 10px 24px rgba(78, 118, 173, 0.10);
        background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    }

    .listing-row__media {
        border-right: 1px solid rgba(157, 196, 239, 0.42);
        background: #eef4fb;
    }

    .listing-row__content {
        gap: 0;
    }

    .listing-row__top {
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 2px;
    }

    .listing-row__top h2 {
        margin: 0;
        font-size: 16.5px;
        line-height: 1.12;
        letter-spacing: -0.01em;
    }

    .listing-row__top h2 a {
        color: #c31d74;
        -webkit-line-clamp: 3;
    }

    .listing-row__vipmark {
        align-self: flex-start;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 9px;
        line-height: 1;
        white-space: nowrap;
        background: linear-gradient(135deg, #eef7ff 0%, #dbeafe 100%);
        color: #2a74bb;
        border-color: #b8d8f6;
        box-shadow: none;
    }

    .listing-row__excerpt {
        margin-top: 6px;
        color: #334155;
        font-size: 12px;
        line-height: 1.36;
        -webkit-line-clamp: 4;
    }

    .listing-row__meta {
        margin-top: 8px;
        gap: 4px;
        font-size: 10.5px;
        color: #1f2937;
    }

    .listing-row__meta span {
        gap: 5px;
        font-weight: 600;
    }

    .listing-row__meta i {
        width: 12px;
        min-width: 12px;
        font-size: 11px;
        color: #374151;
    }

    .listing-row__actions {
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
        padding-top: 12px;
        margin-top: auto;
    }

    .row-action {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border: 1px solid rgba(226, 232, 240, 0.95);
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    }

    .row-action--call {
        background: #ffffff;
        color: #c21872;
    }

    .row-action--wa {
        background: #ffffff;
        color: #22c55e;
    }

    .row-action--tg {
        background: #ffffff;
        color: #0ea5e9;
    }

    .listing-row__flag {
        top: 8px;
        left: 8px;
        padding: 5px 8px;
        border-radius: 999px;
        font-size: 9px;
        background: linear-gradient(135deg, #ff5a1f 0%, #ef4444 100%);
        color: #fff;
    }

    .listing-row__count {
        left: 8px;
        bottom: 8px;
        padding: 3px 7px;
        font-size: 10px;
        background: rgba(15, 23, 42, 0.80);
    }
}

@media (max-width: 420px) {
    .listing-row__top h2 {
        font-size: 16px;
    }

    .listing-row__excerpt {
        font-size: 11.5px;
        line-height: 1.34;
    }

    .row-action {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
}

/* ================= SUPER TOP RIBBON ================= */
.listing-row__super-top {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #eef7ff 0%, #dbeafe 100%);
    border: 1px solid #b8d8f6;
    color: #2a74bb;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 14px rgba(59, 130, 246, 0.16);
}

@media (max-width: 560px) {
    .listing-row__super-top {
        top: 6px;
        right: 8px;
        padding: 3px 8px;
        font-size: 9px;
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.14);
    }
}

/* ================= CITY CARD DESKTOP MATCH ================= */
@media (min-width: 561px) {
    .city-page__inner {
        width: min(1180px, calc(100% - 36px));
    }

    .city-list {
        gap: 20px;
    }

    .listing-row {
        grid-template-columns: 184px minmax(0, 1fr);
        min-height: 286px;
        border-radius: 20px;
        border: 1px solid #a8c9ee;
        background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
        box-shadow: 0 14px 32px rgba(78, 118, 173, 0.10);
    }

    .listing-row__media {
        width: 184px;
        height: 100%;
        align-self: stretch;
        border-right: 1px solid rgba(168, 201, 238, 0.42);
        background: #edf4fb;
    }

    .listing-row__media img {
        width: 184px;
        height: 100%;
        min-height: 286px;
        max-height: none;
        object-fit: cover;
        object-position: center top;
    }

    .listing-row__content {
        min-height: 286px;
        padding: 18px 20px 18px 20px;
        justify-content: space-between;
    }

    .listing-row__top {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 2px;
    }

    .listing-row__top h2 {
        font-size: 24px;
        line-height: 1.12;
        margin: 0;
    }

    .listing-row__top h2 a {
        color: #c31d74;
        -webkit-line-clamp: 3;
    }

    .listing-row__vipmark {
        align-self: flex-start;
        padding: 5px 10px;
        border-radius: 999px;
        font-size: 10px;
        line-height: 1;
        background: linear-gradient(135deg, #eef7ff 0%, #dbeafe 100%);
        color: #2a74bb;
        border: 1px solid #b8d8f6;
        box-shadow: none;
    }

    .listing-row__excerpt {
        margin-top: 8px;
        color: #334155;
        font-size: 15px;
        line-height: 1.46;
        -webkit-line-clamp: 4;
    }

    .listing-row__meta {
        margin-top: 12px;
        gap: 6px;
        font-size: 14px;
    }

    .listing-row__meta span {
        gap: 8px;
        font-weight: 600;
    }

    .listing-row__meta i {
        width: 16px;
        min-width: 16px;
        font-size: 14px;
    }

    .listing-row__actions {
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
        padding-top: 14px;
    }

    .row-action {
        width: 52px;
        height: 52px;
        font-size: 20px;
        border: 1px solid rgba(226, 232, 240, 0.95);
        box-shadow: 0 10px 18px rgba(15, 23, 42, 0.10);
    }

    .row-action--call {
        background: #ffffff;
        color: #c21872;
    }

    .row-action--wa {
        background: #ffffff;
        color: #22c55e;
    }

    .row-action--tg {
        background: #ffffff;
        color: #0ea5e9;
    }

    .listing-row__flag {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 10px;
        background: linear-gradient(135deg, #ff5a1f 0%, #ef4444 100%);
    }

    .listing-row__count {
        left: 10px;
        bottom: 10px;
        padding: 4px 8px;
        font-size: 11px;
        background: rgba(15, 23, 42, 0.80);
    }

    .listing-row__super-top {
        top: 8px;
        right: 10px;
        padding: 4px 10px;
        font-size: 10px;
    }
}
