.favourites-page {
    background: #f6f8fc;
}

.favourites-page .main-nav .navbar-nav > .nav-item:nth-child(2) .nav-link {
    color: #4876c5;
}

.favourites-page-main {
    padding: 26px 0 40px;
    background: #f6f8fc;
}

.favourites-page-shell {
    position: relative;
}

.favourites-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.favourites-sidebar {
    display: grid;
    gap: 12px;
}

.favourites-nav {
    padding: 12px;
    border-radius: 16px;
    background: #eff4fc;
}

.favourites-nav__item {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 10px;
    border-radius: 10px;
    color: #27303d;
    font-size: 16px;
    line-height: 130%;
    font-weight: 300;
}

.favourites-nav__item.is-active {
    color: #4876c5;
    background: #f7faff;
}

.favourites-nav__arrow {
    color: #8e98ab;
    font-size: 20px;
    line-height: 1;
}

.favourites-promo {
    padding: 14px;
    border: 1px solid #d5dfee;
    border-radius: 16px;
    background: #fff;
}

.favourites-promo__media {
    position: relative;
    margin-bottom: 16px;
}

.favourites-promo__image {
    width: 100%;
    height: 205px;
    border-radius: 12px;
    object-fit: cover;
}

.favourites-promo__logo {
    position: absolute;
    top: 0;
    right: 12px;
    width: 86px;
    height: auto;
}

.favourites-promo__content {
    color: #212836;
    font-size: 18px;
    line-height: 135%;
    font-weight: 500;
}

.favourites-promo__line {
    margin: 0;
}

.favourites-promo__line + .favourites-promo__line {
    margin-top: 2px;
}

.favourites-promo__line--highlight {
    display: inline-block;
    padding: 1px 4px 2px;
    background: #ffdf2f;
}

.favourites-promo__content .favourites-promo__line:nth-child(3),
.favourites-promo__content .favourites-promo__line:nth-child(4) {
    display: table;
    width: fit-content;
    border-bottom: 2px dashed #27303d;
}

.favourites-header {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.favourites-title {
    margin: 0;
    color: #1d2430;
    font-size: 24px;
    line-height: 130%;
    font-weight: 600;
    letter-spacing: 0;
}

.favourites-title span {
    color: #7d8697;
    font-weight: 300;
    font-size: 18px;
    line-height: 135%;
}

.favourites-map-button {
    min-width: 112px;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    background: #dfe7f4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #27303d;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    white-space: nowrap;
}

.favourites-map-button__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.favourites-list {
    display: grid;
    gap: 14px;
}

.favourites-card {
    padding: 24px;
    border: 1px solid #d5dfee;
    border-radius: 16px;
    background: #fff;
    display: grid;
    grid-template-columns: 272px minmax(0, 1fr);
    gap: 20px;
}

.favourites-card__image-wrap {
    overflow: hidden;
    border-radius: 12px;
}

.favourites-card__image {
    width: 100%;
    height: 272px;
    object-fit: cover;
}

.favourites-card__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.favourites-card__head {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-direction: row;
    align-content: space-between;
    align-items: flex-start;
}

.favourites-card__heading {
    min-width: 0;
}

.favourites-card__title {
    margin: 0 0 12px;
    color: #1d2430;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favourites-card__location {
    margin: 0;
    color: #20242d;
    font-size: 16px;
    line-height: 130%;
    font-weight: 500;
}

.favourites-card__bookmark {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid #d5dfee;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.favourites-card__tags {
    margin-bottom: 12px !important;
    display: flex;
    flex-wrap: wrap;
    color: #27303d;
    font-size: 16px;
    line-height: 130%;
    font-weight: 500;
}

.favourites-card__tags li {
    position: relative;
    padding: 0 15px;
}

.favourites-card__tags li + li::before {
    content: "•";
    position: absolute;
    left: -4px;
    top: 0;
    color: #C6D1DC;
}

.favourites-card__tags li:first-child {
    padding-left: 24px;
}

.favourites-card__tags li:first-child::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3877eb;
    color: #fff;
    font-size: 16px;
    line-height: 1;
}

.favourites-card__description {
    margin: 0 0 14px;
    color: #394556;
    font-size: 16px;
    line-height: 130%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-weight: 300;
}

.favourites-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.favourites-card__badge {
    min-height: 32px;
    padding: 6px 10px;
    background: #ffdf2f;
    display: inline-flex;
    align-items: center;
    color: #20242d;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 600;
}

.favourites-card__button {
    min-width: 104px;
    height: 45px;
    padding: 0 18px;
    border-radius: 8px;
    background: #20242d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
}

.favourites-page .chat-widget {
    bottom: 96px;
}

@media (max-width: 1199.98px) {
    .favourites-layout {
        grid-template-columns: 1fr;
    }

    .favourites-sidebar {
        grid-template-columns: 260px minmax(0, 1fr);
        align-items: start;
    }

    .favourites-card__description {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .favourites-page-main {
        padding: 16px 0 28px;
    }

    .favourites-layout {
        gap: 16px;
    }

    .favourites-sidebar {
        grid-template-columns: 1fr;
    }

    .favourites-nav,
    .favourites-promo,
    .favourites-card {
        border-radius: 14px;
    }

    .favourites-header {
        margin-bottom: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .favourites-title {
        font-size: 22px;
        line-height: 1.12;
    }

    .favourites-map-button {
        width: 100%;
    }

    .favourites-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .favourites-card__image {
        height: 220px;
    }

    .favourites-card__head {
        gap: 12px;
    }

    .favourites-card__title {
        white-space: normal;
        font-size: 18px;
    }

    .favourites-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .favourites-card__button {
        width: 100%;
    }

    .favourites-page .chat-widget {
        bottom: 22px;
    }
}
