body#module-psclassifiedssearch-destinations.page .breadcrumb {
    display: flex !important;
}

.pscs-destinations-page {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 4px 0 34px;
    color: #142b3f;
}

.pscs-destinations-page *,
.pscs-destinations-page *::before,
.pscs-destinations-page *::after {
    box-sizing: border-box;
}

.pscs-destinations-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 350px);
    align-items: center;
    gap: 38px;
    min-height: 276px;
    padding: 38px 42px;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 86% 14%, rgba(247, 152, 53, .22), transparent 30%),
        linear-gradient(135deg, #102a43 0%, #373f61 100%);
    box-shadow: 0 20px 48px rgba(16, 42, 67, .15);
    color: #fff;
}

.pscs-destinations-hero::after {
    position: absolute;
    right: -90px;
    bottom: -130px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    content: "";
}

.pscs-destinations-hero__copy,
.pscs-destinations-hero__action {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.pscs-destinations-eyebrow {
    display: inline-flex;
    margin-bottom: 13px;
    color: #ffb15d;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.pscs-destinations-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    font-weight: 760;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.pscs-destinations-hero__copy p {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
    line-height: 1.65;
}

.pscs-destinations-hero__action {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 5px 12px;
    align-items: center;
    padding: 19px 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.pscs-destinations-hero__action:hover {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .16);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.pscs-destinations-hero__action span,
.pscs-destinations-hero__action strong {
    grid-column: 1;
}

.pscs-destinations-hero__action span {
    color: rgba(255, 255, 255, .72);
    font-size: .76rem;
}

.pscs-destinations-hero__action strong {
    font-size: .94rem;
}

.pscs-destinations-hero__action svg {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 20px;
    height: 20px;
}

.pscs-destinations-section {
    margin: 34px 32px 0;
}

.pscs-destinations-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pscs-destinations-heading > span:last-child {
    min-width: 0;
}

.pscs-destinations-heading__icon {
    display: inline-flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #eef5fb;
    color: #1d5a86;
}

.pscs-destinations-heading__icon--orange {
    background: #fff3e9;
    color: #d96515;
}

.pscs-destinations-heading__icon svg {
    width: 22px;
    height: 22px;
}

.pscs-destinations-heading h2 {
    margin: 0;
    color: #142b3f;
    font-size: 1.2rem;
    font-weight: 760;
}

.pscs-destinations-heading p {
    margin: 3px 0 0;
    color: #6b7c8c;
    font-size: .82rem;
}

.pscs-destinations-country-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pscs-destination-country-card {
    position: relative;
    display: block;
    min-height: 218px;
    overflow: hidden;
    border: 1px solid #e1e8ef;
    border-radius: 17px;
    background: #17324a;
    box-shadow: 0 10px 30px rgba(31, 57, 81, .08);
    color: #fff;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pscs-destination-country-card:hover {
    border-color: #c7d7e5;
    box-shadow: 0 16px 38px rgba(31, 57, 81, .15);
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
}

.pscs-destination-country-card__visual,
.pscs-destination-country-card__overlay {
    position: absolute;
    inset: 0;
}

.pscs-destination-country-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.pscs-destination-country-card:hover .pscs-destination-country-card__visual img {
    transform: scale(1.04);
}

.pscs-destination-card__fallback {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #284b68, #373f61);
    color: rgba(255, 255, 255, .5);
}

.pscs-destination-card__fallback svg {
    width: 54px;
    height: 54px;
}

.pscs-destination-country-card__overlay {
    background: linear-gradient(180deg, rgba(11, 30, 47, .04), rgba(11, 30, 47, .86));
}

.pscs-destination-country-card__content {
    position: absolute;
    z-index: 2;
    right: 48px;
    bottom: 20px;
    left: 20px;
}

.pscs-destination-country-card__content strong,
.pscs-destination-country-card__content span {
    display: block;
}

.pscs-destination-country-card__content strong {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 760;
}

.pscs-destination-country-card__content span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .75);
    font-size: .78rem;
}

.pscs-destination-country-card__arrow {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 21px;
    color: #ffb15d;
    font-size: 1.3rem;
    transition: transform .2s ease;
}

.pscs-destination-country-card:hover .pscs-destination-country-card__arrow {
    transform: translateX(3px);
}

.pscs-destinations-place-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pscs-destination-place-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 14px;
    min-width: 0;
    min-height: 96px;
    padding: 10px;
    border: 1px solid #e1e8ef;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 57, 81, .06);
    color: #17324a;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pscs-destination-place-card:hover {
    border-color: #c7d7e5;
    box-shadow: 0 13px 30px rgba(31, 57, 81, .11);
    color: #17324a;
    text-decoration: none;
    transform: translateY(-2px);
}

.pscs-destination-place-card__visual {
    display: block;
    width: 82px;
    height: 74px;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, #eef5fb, #dce8f2);
}

.pscs-destination-place-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pscs-destination-place-card__body,
.pscs-destination-place-card__body small,
.pscs-destination-place-card__body strong,
.pscs-destination-place-card__body span {
    display: block;
    min-width: 0;
}

.pscs-destination-place-card__body small {
    overflow: hidden;
    color: #d96515;
    font-size: .68rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pscs-destination-place-card__body strong {
    margin-top: 3px;
    overflow: hidden;
    color: #17324a;
    font-size: .94rem;
    font-weight: 760;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pscs-destination-place-card__body span {
    margin-top: 5px;
    color: #687b8c;
    font-size: .72rem;
}

.pscs-destination-place-card > svg {
    width: 18px;
    height: 18px;
    color: #1d5a86;
    transition: transform .2s ease;
}

.pscs-destination-place-card:hover > svg {
    transform: translateX(2px);
}

.pscs-destinations-empty {
    margin: 30px 32px 0;
    padding: 42px 24px;
    border: 1px solid #e1e8ef;
    border-radius: 17px;
    background: #f7fafc;
    text-align: center;
}

.pscs-destinations-empty > span {
    color: #d96515;
    font-size: 2rem;
}

.pscs-destinations-empty h2 {
    margin: 9px 0 0;
    color: #17324a;
    font-size: 1.15rem;
}

.pscs-destinations-empty p {
    margin: 7px 0 0;
    color: #687b8c;
    font-size: .84rem;
}

.pscs-destinations-host {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 24px 32px 0;
    padding: 25px 28px;
    border: 1px solid #e2e9f0;
    border-radius: 17px;
    background: #f7fafc;
}

.pscs-destinations-host > div {
    min-width: 0;
}

.pscs-destinations-host > div > span {
    color: #d96515;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pscs-destinations-host h2 {
    margin: 5px 0 0;
    color: #17324a;
    font-size: 1.08rem;
    font-weight: 750;
}

.pscs-destinations-host p {
    margin: 6px 0 0;
    color: #687b8c;
    font-size: .82rem;
}

.pscs-destinations-host > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 10px;
    background: #ed731d;
    box-shadow: 0 8px 18px rgba(237, 115, 29, .2);
    color: #fff;
    font-size: .8rem;
    font-weight: 750;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.pscs-destinations-host > a:hover {
    background: #d96212;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.pscs-destinations-hero__action:focus-visible,
.pscs-destination-country-card:focus-visible,
.pscs-destination-place-card:focus-visible,
.pscs-destinations-host > a:focus-visible {
    outline: 3px solid rgba(237, 115, 29, .35);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .pscs-destinations-country-grid,
    .pscs-destinations-place-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pscs-destinations-page {
        padding-bottom: 22px;
        overflow: hidden;
    }

    .pscs-destinations-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: 0;
        padding: 28px 20px;
        border-radius: 17px;
    }

    .pscs-destinations-hero h1 {
        font-size: 2rem;
    }

    .pscs-destinations-hero__copy p {
        margin-top: 14px;
        font-size: .9rem;
    }

    .pscs-destinations-hero__action {
        padding: 16px;
    }

    .pscs-destinations-section,
    .pscs-destinations-empty,
    .pscs-destinations-host {
        margin-right: 10px;
        margin-left: 10px;
    }

    .pscs-destinations-section {
        margin-top: 25px;
    }

    .pscs-destinations-heading {
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .pscs-destinations-heading p {
        line-height: 1.45;
    }

    .pscs-destinations-country-grid,
    .pscs-destinations-place-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pscs-destination-country-card {
        min-height: 190px;
        border-radius: 14px;
    }

    .pscs-destination-place-card {
        grid-template-columns: 72px minmax(0, 1fr) 18px;
        gap: 11px;
        min-height: 88px;
        padding: 8px;
    }

    .pscs-destination-place-card__visual {
        width: 72px;
        height: 70px;
    }

    .pscs-destinations-host {
        display: block;
        padding: 20px 17px;
        border-radius: 14px;
    }

    .pscs-destinations-host > a {
        width: 100%;
        margin-top: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pscs-destinations-page *,
    .pscs-destinations-page *::before,
    .pscs-destinations-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
