.sh-searchcard .ts-control {
    border: 1px solid var(--border-default-color);
    border-radius: var(--border-radius-standard);
    box-shadow: none;
    height: 48px;
    /*background: var(--input-bg-color);*/
}

.sh-hero {
    position: relative;
    padding: 3rem 0 2.25rem;
    background-size: cover;
    background-position: center;
    overflow: visible;
}

.sh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, calc(var(--overlay-opacity, 0.5) * 0.5)) 0%,
            rgba(0, 0, 0, calc(var(--overlay-opacity, 0.5) * 0.7)) 50%,
            rgba(0, 0, 0, var(--overlay-opacity, 0.5)) 100%
    );
    pointer-events: none;
}

.sh-hero__container {
    position: relative;
    z-index: 1;
}

.sh-hero__kicker {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.sh-hero__title {
    margin: 0 0 .75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 1.75rem;
    line-height: 2.1875rem;
    text-align: left;
    text-shadow: 1px 1px 2px #333;
    color: #fff;
}

.sh-hero__subtitle {
    margin: 0 0 1.05rem;
    font-size: 1.1rem;
    line-height: 1.55;
    letter-spacing: -1px;
    text-align: left;
    text-shadow: 1px 1px 2px #333;
    color: #fff;
}

.sh-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
    margin-top: .85rem;
}

.sh-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sh-hero__sidecol {
    flex: 0 0 24rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sh-pill {
    display: inline-flex;
    align-items: center;
    padding: .35rem .6rem;
    border-radius: 999rem;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(15, 20, 25, .12);
    color: var(--primary-text-color);
    font-size: .8rem;
    line-height: 1;
}

.sh-pill--muted {
    background: rgba(255, 255, 255, .58);
    color: rgba(15, 20, 25, .72);
}

.sh-searchcard {
    overflow: visible;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(15, 20, 25, .12);
    border-radius: 1rem;
    box-shadow: 0 1.25rem 3.25rem rgba(15, 20, 25, .18);
    padding: .95rem;
    backdrop-filter: blur(.4rem);
}

.sh-stat {
    padding: .75rem .85rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 20, 25, .12);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 .5rem 1.8rem rgba(15, 20, 25, .12);
}

.sh-stat__val {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.1;
    color: var(--primary-text-color);
}

.sh-stat__lbl {
    margin-top: .2rem;
    font-size: .85rem;
    color: rgba(15, 20, 25, .70);
    line-height: 1.25;
}

.sh-branding {
    border-radius: 1rem;
    border: 1px solid rgba(15, 20, 25, .10);
    background: rgba(255, 255, 255, .72);
    padding: .85rem;
    box-shadow: 0 .75rem 2.4rem rgba(15, 20, 25, .10);
}

.sh-branding--elevated {
    box-shadow:
            0 2rem 4rem rgba(0, 0, 0, 0.25),
            0 1rem 2rem rgba(0, 0, 0, 0.18) !important;
    position: relative;
}

.sh-branding--elevated::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 1.2rem;
    background: radial-gradient(
            circle at center,
            rgba(255,255,255,0.25) 0%,
            rgba(255,255,255,0.08) 40%,
            transparent 70%
    );
    z-index: -1;
}

.sh-branding__head {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: .65rem;
}

.sh-branding__meta {
    font-size: .85rem;
    color: var(--primary-text-color);
    line-height: 1.3;
    word-break: break-word;
    font-weight: 500;
}

.sh-branding__box {
    border-radius: 1rem;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(15, 20, 25, .10);
    overflow: hidden;
}

.sh-branding__link {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: .75rem;
}

.sh-branding__link img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform .25s ease, opacity .25s ease;
    filter: saturate(0.9);
}

.sh-branding__link:hover img {
    transform: scale(1.01);
    opacity: .98;
}

.sh-branding__link:focus {
    outline: none;
}

.sh-branding__link:focus-visible {
    box-shadow: 0 0 0 .2rem rgba(252, 246, 189, .75);
    border-radius: .75rem;
}

.sh-branding__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, calc(var(--overlay-opacity, 0.5) * 0.5)) 0%,
            rgba(0, 0, 0, calc(var(--overlay-opacity, 0.5) * 0.7)) 50%,
            rgba(0, 0, 0, var(--overlay-opacity, 0.5)) 100%
    );
    opacity: .92;
}

.sh-branding__content {
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .85rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    align-items: center;
}

.sh-branding__title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 1px 1px 2px #333;
}

.sh-branding__subtitle {
    color: rgba(255, 255, 255, .9);
    font-size: .9rem;
    text-shadow: 1px 1px 2px #333;
}

.sh-branding__cta {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .28rem .55rem;
    border-radius: .6rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .7);
    font-size: .85rem;
    font-weight: 600;
    width: fit-content;
    color: rgba(255, 255, 255, .95);
}

.sh-branding__link:hover .sh-branding__cta {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .28);
}

.sh-agency-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: .7rem;
    font-size: .95rem;
    color: var(--primary-text-color);
}

.sh-agency-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: .95rem;
    font-weight: 700;
    color: var(--bs-gray-800);
    background: var(--bs-gray-200);
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-logos {
    border-radius: 1rem;
    /*border: 1px solid rgba(15, 20, 25, .12);*/
    /*background: rgba(255, 255, 255, .70);*/
    padding: .85rem;
    /*box-shadow: 0 .75rem 2.4rem rgba(15, 20, 25, .10);*/
    /*box-shadow: 0 4px 16px -2px rgb(0 0 0 / 20%), 0 0 0 1px rgb(0 0 0 / 5%);*/
}

.sh-logos__label {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: .65rem;
    text-shadow: 1px 1px 2px #333;
}

.sh-logos__row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .6rem;
}

.sh-logo {
    display: grid;
    place-items: center;
    padding: .55rem .6rem;
    border-radius: .85rem;
    background: #fff;
    border: 1px solid rgba(15, 20, 25, .10);
    overflow: hidden;
}

.sh-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sh-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transition: all .2s ease;
}

.sh-home-trending__container {
    width: min(78rem, 100%);
    margin: 0 auto;
    padding: 0 1rem;
}

.sh-home-trending__header {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.sh-home-trending__title {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
}

.sh-home-trending__subtitle {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.75;
}

.sh-home-trending__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.sh-home-trending-card {
    grid-column: span 4;
}

.sh-home-trending-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background-color: rgba(0, 0, 0, 0.02);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    box-shadow: 0 4px 16px -2px rgb(0 0 0 / 20%), 0 0 0 1px rgb(0 0 0 / 5%);
}

.sh-home-trending-card__link:hover {
    /*transform: translateY(-0.0625rem);*/
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.10);
}

.sh-home-trending-card__link:hover img.sh-home-trending-card__img {
    transition: all ease 0.4s;
    transform: scale(1.05);
}


.sh-home-trending-card__link:focus-visible {
    outline: 0.1875rem solid rgba(0, 0, 0, 0.25);
    outline-offset: 0.1875rem;
}

.sh-home-trending-card__media {
    position: relative;
    background-color: rgba(0, 0, 0, 0.06);
}

.sh-home-trending-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all ease 0.4s;
}


.sh-home-trending-card__price {
    font-size: 1.375rem;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.sh-home-trending-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.88);
    justify-content: center;
    text-shadow: 1px 1px 2px #333;
}

.sh-home-trending-card__dot {
    opacity: 0.85;
}

.sh-home-trending-card__location {
    margin-top: 0.35rem;
    font-size: 1rem;
    line-height: 1.3;
}

.sh-home-trending-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.625rem;
    font-size: 0.8125rem;
    line-height: 1;
    border-radius: var(--border-radius-standard);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(0.5rem);
    text-shadow: 1px 1px 2px #333;
    z-index: 0;
}

.sh-home-trending-badge--new {
    top: 0.75rem;
    left: 0.75rem;
    /*border-top-right-radius: 0;*/
    /*border-bottom-left-radius: 0;*/
}

.sh-home-trending-badge--drop {
    top: 0.75rem;
    left: 0.75rem;
    /*border-top-right-radius: 0;*/
    /*border-bottom-left-radius: 0;*/
}

.sh-home-trending__titlewrap {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.4375rem 0.625rem;
    font-size: 0.8125rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
}

.sh-home-trending__titlewrap {
    max-width: 44rem;
}

.sh-home-trending__subtitle {
    max-width: 44rem;
}

.sh-home-trending-card__media {
    position: relative;
    background-color: rgba(0, 0, 0, 0.06);
}

.sh-home-trending-card__body {
    padding: 1rem 5rem 1.05rem 1rem;
    background-color: rgba(255, 255, 255, 0.96);
    position: relative;
}

.sh-home-trending-card__top {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
}

.sh-home-trending-card__price {
    font-size: 1.25rem;
    line-height: 1.15;
    font-weight: 650;
    letter-spacing: -0.01em;
    color: rgba(15, 20, 25, 0.95);
    text-shadow: none;
}

.sh-home-trending-card__type {
    font-size: 0.9375rem;
    line-height: 1.35;
    color: rgba(15, 20, 25, 0.72);
}

.sh-home-trending-card__location {
    margin-top: 0.35rem;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
    color: rgba(15, 20, 25, 0.9);
    text-align: left;
}

.sh-home-trending-card__agency {
    position: absolute;
    right: 0.25rem;
    bottom: 1.5rem;
    width: 100px;
    /*height: 3rem;*/
    background-color: #fff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
    backdrop-filter: blur(0.25rem);
}

.sh-home-trending-card__agency img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.sh-home-trending-card .agency-tiny-logo {
    right: 10px;
    bottom: 20px;
}

.sh-home-sponsor-fw {
    background-color: #ffffff;
}

.sh-home-sponsor-fw__container {
    width: min(60rem, 100%);
    margin: 0 auto;
    padding: 0 1rem;
}

.sh-home-sponsor-fw__link {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.sh-home-sponsor-fw__link:hover {
    transform: translateY(-0.03125rem); /* было -0.0625rem */
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08); /* мягче и меньше */
    border-color: rgba(0, 0, 0, 0.12);
}

.sh-home-sponsor-fw__link:focus-visible {
    outline: 0.1875rem solid rgba(0, 0, 0, 0.25);
    outline-offset: 0.1875rem;
}

.sh-home-sponsor-fw__img {
    width: 100%;
    height: auto;
    display: block;
}

.sh-loc-card {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(0, 0, 0, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.sh-loc-card:hover {
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.sh-loc-card:focus-visible {
    outline: 0.1875rem solid rgba(0, 0, 0, 0.25);
    outline-offset: 0.1875rem;
}

.sh-loc-card__media {
    display: block;
    position: relative;
    background-color: rgba(0, 0, 0, 0.06);
    height: 22rem;
}

.sh-loc-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(55%);
    transform: scale(1);
    transition: all ease 0.4s;
}

.sh-loc-card:hover .sh-loc-card__img {
    transform: scale(1.05);
    filter: saturate(70%);
}

.sh-loc-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
    pointer-events: none;
}

.sh-loc-card__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 2.25rem;
}

.sh-loc-card__text {
    display: block;
    padding-top: 0.25rem;
}

.sh-loc-card__title {
    display: block;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    font-size: 1.25rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5rem;
    text-shadow: 1px 1px 2px #333;
}

.sh-loc-card__desc {
    display: block;
    text-shadow: 1px 1px 2px #333;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.25rem;
}

.sh-loc-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
    align-self: center;
}

.sh-loc-card:hover .sh-loc-card__cta {
    transform: none !important;
}

.sh-loc-card__cta-text {
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 500;
}

.sh-loc-card__cta-ico {
    font-size: 1.1rem;
    line-height: 1;
}

.sh-home-trending-mobile {
    display: none;
}

.sh-loc-mobile {
    display: none;
}

@media (min-width: 992px) {
    .sh-hero__grid {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .sh-hero__maincol {
        flex: 1 1 auto;
        min-width: 0;
    }

    .sh-hero__sidecol {
        flex: 0 0 22rem;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: .75rem;
    }

    .sh-branding {
        background: linear-gradient(
                145deg,
                rgba(255, 255, 255, .95) 0%,
                rgba(250, 248, 240, .92) 40%,
                rgba(255, 255, 255, .97) 100%
        );
        border: 1px solid rgba(15, 20, 25, .14);
        box-shadow: 0 1.1rem 3rem rgba(15, 20, 25, .14),
        inset 0 1px 0 rgba(255, 255, 255, .6);
        margin-bottom: 0rem;
        transition: box-shadow .18s ease;
    }

    .sh-branding:hover {
        box-shadow: 0 1.15rem 3.1rem rgba(15, 20, 25, .15),
        0 .35rem 1rem rgba(15, 20, 25, .09);
    }

    .sh-branding .sh-branding__head {
        padding-bottom: .55rem;
        border-bottom: 1px solid rgba(15, 20, 25, .10);
        margin-bottom: .75rem;
    }

    .sh-branding .sh-branding__badge {
        background: rgba(255, 255, 255, .90);
        border-color: rgba(15, 20, 25, .18);
        font-weight: 600;
    }

    .sh-branding .sh-branding__meta {
        font-size: .82rem;
    }

    .sh-branding .sh-branding__box {
        border-color: rgba(15, 20, 25, .14);
        box-shadow: 0 .7rem 1.8rem rgba(15, 20, 25, .10);
    }

    .sh-branding .sh-branding__title {
        font-size: 1rem;
    }

    .sh-logos {
        /*background: rgba(255, 255, 255, .60);*/
        /*border-color: rgba(15, 20, 25, .10);*/
        /*box-shadow: 0 .55rem 1.6rem rgba(15, 20, 25, .08);*/
    }

    .sh-logos__label {
        font-weight: 600;
    }
}

@media (max-width: 991px) {
    .sh-hero {
        padding: 1.6rem 0 1.9rem;
    }

    .sh-hero__stats,
    .sh-hero__kicker,
    .sh-logos {
        display: none;
    }

    .sh-hero__sidecol {
        flex: 0 0 17rem;
    }

    .sh-hero__title {
        text-align: center;
    }

    .sh-hero__subtitle {
        font-size: 1rem;
        line-height: 1.35;
        text-align: center;
        letter-spacing: -0.5px;
    }

    .sh-home-trending__grid {
        gap: 1rem;
    }

    .sh-home-trending__header {
        align-items: center;
        flex-direction: column;
    }

    .sh-home-trending-card {
        grid-column: span 6;
    }

    .sh-home-trending-mobile {
        display: block;
    }
    
    .pagePropertyListingDetails .sh-home-trending-mobile {
        padding-bottom: 8rem !important;
        padding-top: 4rem !important;
    }

    .sh-home-trending-mobile .sh-home-trending__container {
        padding-left: 1rem;
        padding-right: 0;
    }

    .sh-home-trending-mobile .sh-home-trending__header {
        margin-bottom: 1rem;
        padding-right: 1rem;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }

    .sh-home-trending-mobile .sh-home-trending__titlewrap {
        max-width: none;
        width: 100%;
        padding: 0;
        border: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .sh-home-trending-mobile .sh-home-trending__title {
        font-size: 1.25rem;
        line-height: 1.5625rem;
    }

    .sh-home-trending-mobile .sh-home-trending__subtitle {
        max-width: none;
        margin-top: 0.375rem;
        font-size: 0.9375rem;
        line-height: 1.4;
        opacity: 0.78;
    }

    .sh-home-trending-mobile__slider {
        position: relative;
        overflow: hidden;
    }

    .sh-home-trending-mobile__slider .swiper-wrapper {
        align-items: stretch;
    }

    .sh-home-trending-mobile .sh-home-trending-card {
        width: auto;
        grid-column: auto;
        height: auto;
    }

    .sh-home-trending-mobile .sh-home-trending-card__link {
        display: flex;
        flex-direction: column;
        height: 100%;
        border-radius: 1rem;
        overflow: hidden;
    }

    .sh-home-trending-mobile .sh-home-trending-card__media {
        position: relative;
        aspect-ratio: 700 / 495;
        min-height: 12.5rem;
    }

    .sh-home-trending-mobile .sh-home-trending-card__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .sh-home-trending-mobile .sh-home-trending-card__body {
        padding: 0.875rem 4.5rem 0.95rem 0.875rem;
        min-height: 6.75rem;
    }

    .sh-home-trending-mobile .sh-home-trending-card__top {
        gap: 0.25rem;
    }

    .sh-home-trending-mobile .sh-home-trending-card__price {
        font-size: 1.1875rem;
        line-height: 1.15;
    }

    .sh-home-trending-mobile .sh-home-trending-card__type {
        font-size: 0.875rem;
        line-height: 1.3;
    }

    .sh-home-trending-mobile .sh-home-trending-card__location {
        margin-top: 0.35rem;
        font-size: 0.9375rem;
        line-height: 1.25;
    }

    .sh-home-trending-mobile .sh-home-trending-badge {
        top: 0.625rem;
        left: 0.625rem;
        padding: 0.4rem 0.55rem;
        font-size: 0.75rem;
        border-radius: 0.75rem;
    }

    .sh-home-trending-mobile .agency-tiny-logo {
        position: absolute;
        right: 0.625rem;
        bottom: 0.875rem;
        width: 3.25rem;
        height: 2.125rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.625rem;
        background: #fff;
        padding: 0.25rem;
        overflow: hidden;
    }

    .sh-home-trending-mobile .agency-tiny-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

    .sh-home-trending-mobile__pagination {
        position: static;
        margin-top: 0.875rem;
        text-align: center;
    }

    .sh-home-trending-mobile__pagination .swiper-pagination-bullet {
        width: 0.5rem;
        height: 0.5rem;
        opacity: 1;
        background: rgba(15, 20, 25, 0.2);
        margin: 0 0.25rem !important;
    }

    .sh-home-trending-mobile__pagination .swiper-pagination-bullet-active {
        background: rgba(15, 20, 25, 0.82);
    }

    .sh-home-trending-mobile__slider::after {
        display: none;
    }

    .sh-loc-mobile {
        display: block;
    }

    .sh-loc-mobile__container {
        padding-right: 0;
    }

    .sh-loc-mobile__slider {
        overflow: hidden;
        padding-right: 1rem;
        padding-bottom: 1.75rem;
    }

    .sh-loc-mobile__slider .swiper-slide {
        height: auto;
    }
    
    .sh-loc-mobile__pagination {
        position: static;
        margin-top: 0.875rem;
        text-align: center;
    }

    .sh-loc-mobile__pagination .swiper-pagination-bullet {
        width: 0.5rem;
        height: 0.5rem;
        opacity: 1;
        margin: 0 0.25rem !important;
        background: rgba(15, 20, 25, 0.2);
    }

    .sh-loc-mobile__pagination .swiper-pagination-bullet-active {
        background: rgba(15, 20, 25, 0.82);
    }
}

@media (max-width: 575px) {
    .sh-hero__search {
        order: 1;
    }

    .sh-branding {
        order: 2;
    }

    .sh-hero__stats {
        order: 3;
        grid-template-columns: 1fr;
    }

    .sh-logos__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sh-logo img {
        max-height: 3rem;
    }

    .sh-branding__overlay {
        background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 32%,
        rgba(0, 0, 0, .62) 100%);
        opacity: .95;
    }

    .sh-branding__content {
        left: .8rem;
        right: .8rem;
        bottom: .8rem;
        gap: .3rem;
    }

    .sh-branding__cta {
        background: rgba(255, 255, 255, .16);
        border-color: rgba(255, 255, 255, .26);
    }

    .sh-home-trending__title {
        font-size: 1.25rem;
        line-height: 1.5625rem;
    }

    .sh-home-trending-card {
        grid-column: span 12;
    }

    .sh-home-trending-card__body {
        padding: 0.875rem 5rem 0.95rem 0.875rem;
    }

    .sh-home-trending-card__price {
        font-size: 1.1875rem;
    }

    .sh-loc-card__content {
        padding: 1rem 1rem 1.5rem;
    }

    .sh-loc-card__title {
        font-size: 1.1875rem;
    }

    .sh-loc-card__desc {
        font-size: 0.9375rem;
    }

    .sh-loc-card__cta {
        padding: 0.5625rem 1.125rem;
    }

    .sh-loc-card__media {
        height: 20rem;
    }
}
