.sales-page {
    padding-top: 28px;
    padding-bottom: 56px;
    color: #333;
}

.sales-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #777;
    font-size: 14px;
}

.sales-breadcrumb a {
    color: #555;
}

.sales-panel {
    margin-bottom: 24px;
    padding: 28px 32px;
    border: 1px solid #ececec;
    border-radius: 4px;
    background: #fff;
}

.sales-section-heading,
.sales-district-card__heading,
.sales-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sales-section-heading {
    margin-bottom: 22px;
    padding-bottom: 13px;
    border-bottom: 2px solid #e60012;
}

.sales-section-heading h1,
.sales-section-heading h2,
.sales-district-card__heading h2,
.sales-list-item h2 {
    margin: 0;
    font-weight: 600;
}

.sales-section-heading h1,
.sales-section-heading h2 {
    font-size: 25px;
}

.sales-section-heading a,
.sales-district-card__heading a,
.sales-list-item a {
    color: #333;
}

.sales-section-heading a:hover,
.sales-district-card__heading a:hover,
.sales-list-item a:hover {
    color: #e60012;
}

.sales-district-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.sales-district-card {
    min-height: 188px;
    padding: 20px 22px;
    border: 1px solid #eee;
    background: #fafafa;
}

.sales-district-card__heading {
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}

.sales-district-card__heading h2,
.sales-list-item h2 {
    font-size: 19px;
}

.sales-point-preview {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.sales-point-preview li {
    position: relative;
    overflow: hidden;
    padding: 6px 0 6px 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sales-point-preview li::before {
    position: absolute;
    top: 14px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e60012;
    content: "";
}

.sales-point-preview a {
    color: #444;
}

.sales-empty {
    margin: 24px 0 0;
    color: #999;
    text-align: center;
}

.sales-empty--wide {
    padding: 36px 0;
}

.sales-list-item {
    padding: 20px 6px;
    border-bottom: 1px solid #eee;
}

.sales-list-item p {
    margin: 8px 0 0;
    color: #777;
}

.sales-type {
    flex: 0 0 auto;
    padding: 5px 12px;
    border-radius: 15px;
    background: #fff0f1;
    color: #c70010;
    font-size: 13px;
}

.sales-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.sales-pagination a,
.sales-pagination span {
    color: #555;
}

.sales-detail__body {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 36px;
}

.sales-detail__image {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    background: #f7f7f7;
}

.sales-page--detail .sales-detail__body {
    display: block;
}

.sales-page--detail .sales-detail__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    background: #fff;
}

.sales-detail__facts {
    margin: 0;
}

.sales-detail__facts div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid #eee;
}

.sales-detail__facts dt {
    color: #777;
}

.sales-detail__facts dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.sales-map-frame {
    display: block;
    width: 100%;
    height: 520px;
    border: 1px solid #e7e7e7;
    background: #f6f6f6;
    box-sizing: border-box;
}

/* Sales point overview: the map remains untouched and only its page framing changes. */
.sales-page--points {
    padding-top: 24px;
    padding-bottom: 24px;
}

.sales-page--points .sales-breadcrumb {
    display: none;
}

.sales-page--points .sales-map-section {
    margin: 0 0 30px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.sales-page--points .sales-map-section .sales-section-heading {
    display: none;
}

.sales-page--points .sales-map-frame {
    height: 470px;
    border: 0;
    background: #e8eef2;
}

.sales-page--points > .sales-panel:not(.sales-map-section) {
    margin: 0;
    padding: 0 20px 36px;
    border: 0;
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--site-shadow);
}

.sales-page--points > .sales-panel:not(.sales-map-section) > .sales-section-heading {
    min-height: 72px;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid var(--site-red);
}

.sales-page--points > .sales-panel:not(.sales-map-section) > .sales-section-heading h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--site-text);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.sales-page--points > .sales-panel:not(.sales-map-section) > .sales-section-heading h1 img {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    object-fit: contain;
}

.sales-page--points .sales-points-updated {
    color: var(--site-muted);
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
}

.sales-page--points .sales-district-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 36px;
}

.sales-page--points .sales-district-card {
    min-height: 98px;
    padding: 18px 0 14px;
    border: 0;
    background: transparent;
}

.sales-page--points .sales-district-card__heading {
    margin: 0 0 12px;
    padding: 0;
    border: 0;
}

.sales-page--points .sales-district-card__heading h2 {
    color: var(--site-text);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.sales-page--points .sales-district-card__heading a {
    display: none;
}

.sales-page--points .sales-point-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
}

.sales-page--points .sales-point-preview li {
    position: relative;
    display: flex;
    height: 40px;
    min-width: max-content;
    max-width: 100%;
    flex: 0 0 auto;
    align-items: center;
    padding: 0;
    overflow: visible;
    border: 1px solid #edf0f2;
    border-radius: 6px;
    background: #f5f6f7;
    white-space: nowrap;
}

.sales-page--points .sales-point-preview li::before {
    position: absolute;
    top: 50%;
    left: 9px;
    width: 14px;
    height: 18px;
    border-radius: 0;
    background: transparent url("/static/frontend/images/sales-location-pin.png") center / contain no-repeat;
    content: "";
    transform: translateY(-50%);
}

.sales-page--points .sales-point-preview a {
    display: inline-flex;
    height: 40px;
    min-width: max-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 7px 0 27px;
    overflow: visible;
    color: var(--site-text);
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

.sales-page--points .sales-empty {
    margin: 14px 0 0;
    color: var(--site-muted);
    font-size: 14px;
    text-align: left;
}

.sales-page--flagships {
    padding: 0 0 56px;
    background: #fff;
    color: #313131;
}

.sales-page--flagships .sales-flagship-banner {
    width: 100%;
    overflow: hidden;
}

.sales-page--flagships .sales-flagship-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.sales-page--flagships .sales-flagship-content {
    width: 1170px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.sales-page--flagships .sales-flagship-news {
    margin-top: 50px;
}

.sales-page--flagships .sales-flagship-section-title {
    margin: 0 0 20px;
    padding-left: 50px;
    background: url("/static/frontend/images/sales-flagship-section-icon.png") no-repeat left center;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
}

.sales-page--flagships .sales-flagship-news__layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.sales-page--flagships .sales-flagship-news__featured {
    position: relative;
    width: 52%;
}

.sales-page--flagships .sales-flagship-news__cover {
    position: relative;
    display: none;
    width: 100%;
    height: 376px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    color: #fff;
}

.sales-page--flagships .sales-flagship-news__cover:first-child {
    display: flex;
}

.sales-page--flagships .sales-flagship-news__featured.is-enhanced .sales-flagship-news__cover {
    display: none;
}

.sales-page--flagships .sales-flagship-news__featured.is-enhanced .sales-flagship-news__cover.is-active {
    display: flex;
}

.sales-page--flagships .sales-flagship-news__cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-page--flagships .sales-flagship-news__cover strong {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    padding: 10px;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sales-page--flagships .sales-flagship-news__cover-placeholder {
    color: #aaa;
}

.sales-page--flagships .sales-flagship-news__dots {
    position: absolute;
    z-index: 2;
    right: 3%;
    bottom: 0;
    display: none;
}

.sales-page--flagships .sales-flagship-news__featured.is-enhanced .sales-flagship-news__dots {
    display: flex;
}

.sales-page--flagships .sales-flagship-news__dots button {
    position: relative;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.sales-page--flagships .sales-flagship-news__dots button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    content: "";
    transform: translate(-50%, -50%);
}

.sales-page--flagships .sales-flagship-news__dots button.is-active::before {
    background: #fff;
}

.sales-page--flagships .sales-flagship-news__copy {
    width: 45%;
}

.sales-page--flagships .sales-flagship-news__highlights article {
    display: block;
    margin-bottom: 2%;
}

.sales-page--flagships .sales-flagship-news__highlights h2,
.sales-page--flagships .sales-flagship-news__highlights p {
    margin: 0;
}

.sales-page--flagships .sales-flagship-news__highlights h2 {
    overflow: hidden;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sales-page--flagships .sales-flagship-news__highlights h2 a,
.sales-page--flagships .sales-flagship-news__list a {
    color: #000;
}

.sales-page--flagships .sales-flagship-news__highlights p {
    display: -webkit-box;
    overflow: hidden;
    margin: 2% auto;
    color: #747474;
    font-size: 16px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sales-page--flagships .sales-flagship-news__list {
    width: 100%;
    margin: 5% 0 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
}

.sales-page--flagships .sales-flagship-news__list li {
    overflow: hidden;
    padding-left: 5%;
    background: url("/static/frontend/images/sales-flagship-point.png") 0 center no-repeat;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sales-page--flagships .sales-flagship-news__list a {
    display: block;
    overflow: hidden;
    font-size: 18px;
    line-height: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sales-news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sales-news-list li {
    overflow: hidden;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sales-news-list a {
    color: #444;
}

.sales-page--flagships .sales-flagship-stores {
    margin-top: 50px;
}

.sales-page--flagships .sales-flagship-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.sales-page--flagships .sales-flagship-card {
    width: 30%;
    margin-right: 3%;
    margin-bottom: 50px;
}

.sales-page--flagships .sales-flagship-card__heading {
    display: flex;
    height: 60px;
    align-items: stretch;
    justify-content: space-between;
}

.sales-page--flagships .sales-flagship-card__heading h3 {
    width: 230px;
    height: 60px;
    margin: 0;
    background: url("/static/frontend/images/sales-flagship-title.png") no-repeat;
    background-size: cover;
    color: #fff;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 60px;
    text-align: center;
}

.sales-page--flagships .sales-flagship-card__heading a {
    width: 60px;
    height: 60px;
    background: url("/static/frontend/images/sales-flagship-more.png") no-repeat;
    background-size: cover;
    color: #313131;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 22px;
    line-height: 60px;
    text-align: center;
}

.sales-page--flagships .sales-flagship-card__frame {
    width: 100%;
    margin-top: 10px;
    padding: 10% 8% 8%;
    background: url("/static/frontend/images/sales-flagship-frame.png") no-repeat;
    background-size: 100% 100%;
}

.sales-page--flagships .sales-flagship-card__image {
    display: flex;
    width: 100%;
    height: 200px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
}

.sales-page--flagships .sales-flagship-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-page--flagships .sales-flagship-card__address {
    overflow: hidden;
    margin: 0;
    padding-top: 2%;
    color: #313131;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sales-flagship-district-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sales-flagship-district-card {
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #fff;
}

.sales-flagship-district-card__image {
    display: flex;
    height: 220px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f5;
    color: #999;
}

.sales-flagship-district-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-flagship-district-card__body {
    padding: 18px;
}

.sales-flagship-district-card__body h2,
.sales-flagship-district-card__body p {
    margin: 0;
}

.sales-flagship-district-card__body h2 {
    margin-bottom: 10px;
    font-size: 18px;
}

.sales-flagship-district-card__body h2 a {
    color: #333;
}

.sales-flagship-district-card__body p {
    color: #777;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .sales-page {
        padding-top: 18px;
        padding-bottom: 36px;
    }

    .sales-page--flagships {
        padding-top: 0;
        padding-bottom: 56px;
    }

    .sales-panel {
        padding: 20px 16px;
    }

    .sales-district-grid,
    .sales-detail__body {
        grid-template-columns: 1fr;
    }

    .sales-section-heading h1,
    .sales-section-heading h2 {
        font-size: 21px;
    }

    .sales-list-item {
        align-items: flex-start;
    }

    .sales-news-list,
    .sales-flagship-district-grid {
        grid-template-columns: 1fr;
    }

    .sales-map-frame {
        height: 360px;
    }

    .sales-page--points {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .sales-page--points .sales-map-section {
        margin-bottom: 16px;
    }

    .sales-page--points .sales-map-frame {
        height: 240px;
    }

    .sales-page--points > .sales-panel:not(.sales-map-section) {
        padding: 0 16px 22px;
    }

    .sales-page--points > .sales-panel:not(.sales-map-section) > .sales-section-heading {
        min-height: 60px;
    }

    .sales-page--points > .sales-panel:not(.sales-map-section) > .sales-section-heading h1 {
        gap: 8px;
        font-size: 21px;
    }

    .sales-page--points > .sales-panel:not(.sales-map-section) > .sales-section-heading h1 img {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .sales-page--points .sales-points-updated {
        max-width: 168px;
        font-size: 12px;
        line-height: 18px;
        text-align: right;
        white-space: normal;
    }

    .sales-page--points .sales-district-grid {
        grid-template-columns: 1fr;
    }

    .sales-page--points .sales-district-card {
        min-height: 0;
        padding: 16px 0 8px;
    }

    .sales-page--points .sales-point-preview {
        flex-wrap: wrap;
        gap: 7px;
    }

    .sales-page--points .sales-point-preview li {
        height: 40px;
    }

    .sales-page--points .sales-point-preview a {
        height: 40px;
        padding-right: 9px;
        font-size: 16px;
        line-height: 1;
    }
}

@media (max-width: 768px) {
    .sales-page--flagships {
        padding-top: 0;
        padding-bottom: 36px;
    }

    .sales-page--flagships .sales-flagship-content {
        width: 90%;
        max-width: none;
    }

    .sales-page--flagships .sales-flagship-news__layout {
        display: block;
    }

    .sales-page--flagships .sales-flagship-news__featured {
        width: 100%;
    }

    .sales-page--flagships .sales-flagship-news__copy {
        width: 100%;
        margin-top: 24px;
    }

    .sales-page--flagships .sales-flagship-news__cover {
        height: 200px;
    }

    .sales-page--flagships .sales-flagship-card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .sales-page--flagships .sales-flagship-card__heading h3 {
        width: 60%;
        height: 3.3rem;
        background-size: 100% 100%;
        font-size: 22px;
        line-height: 3.3rem;
    }

    .sales-page--flagships .sales-flagship-card__heading,
    .sales-page--flagships .sales-flagship-card__heading a {
        height: 3.3rem;
    }

    .sales-page--flagships .sales-flagship-card__heading a {
        width: 3.3rem;
        font-size: 18px;
        line-height: 3.3rem;
    }

    .sales-page--flagships .sales-flagship-card__image {
        height: 200px;
    }
}

/* Flagship district document page. The store table is supplied as one image. */
.sales-page--flagship-district {
    width: 100%;
    max-width: none;
    padding: 0 0 40px;
    background: var(--site-background);
    color: var(--site-text);
}

.sales-page--flagship-district .sales-flagship-banner {
    position: relative;
    width: 100%;
    height: 378px;
    overflow: hidden;
    background: #f7dedc;
}

.sales-page--flagship-district .sales-flagship-banner img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    max-width: none;
    height: 378px;
    transform: translateX(-50%);
}

.sales-page--flagship-district .sales-flagship-district__content {
    width: min(1200px, calc(100% - 40px));
    max-width: none;
    margin: 0 auto;
}

.sales-page--flagship-district .sales-breadcrumb {
    min-height: 56px;
    margin: 0;
    padding: 18px 0 12px;
}

.sales-page--flagship-district .sales-flagship-district__panel {
    margin: 0;
    padding: 28px 48px 48px;
    border: 0;
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--site-shadow);
}

.sales-page--flagship-district .sales-flagship-district__panel > h1 {
    margin: 0;
    color: var(--site-text);
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
}

.sales-page--flagship-district .sales-flagship-district__date {
    min-height: 24px;
    margin: 6px 0 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.sales-page--flagship-district .sales-flagship-district__documents {
    display: grid;
    gap: 24px;
    margin-top: 28px;
}

.sales-page--flagship-district .sales-flagship-district__document {
    width: 100%;
}

.sales-page--flagship-district .sales-flagship-district__document > button {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #fff;
    cursor: zoom-in;
}

.sales-page--flagship-district .sales-flagship-district__document > button:focus-visible {
    outline: 3px solid rgba(201, 0, 43, .35);
    outline-offset: 4px;
}

.sales-page--flagship-district .sales-flagship-district__document img {
    display: block;
    width: 100%;
    height: auto;
}

.sales-image-preview {
    width: auto;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    margin: auto;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
}

.sales-image-preview::backdrop {
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(2px);
}

.sales-image-preview > img {
    display: block;
    max-width: calc(100vw - 64px);
    max-height: calc(100vh - 64px);
    object-fit: contain;
    background: #fff;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .36);
}

.sales-image-preview__close {
    position: absolute;
    z-index: 2;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--site-red);
    color: #fff;
    font-size: 28px;
    line-height: 34px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .sales-page--flagship-district {
        padding-bottom: 24px;
    }

    .sales-page--flagship-district .sales-flagship-banner,
    .sales-page--flagship-district .sales-flagship-banner img {
        height: clamp(150px, 44vw, 180px);
    }

    .sales-page--flagship-district .sales-flagship-district__content {
        width: calc(100% - 24px);
    }

    .sales-page--flagship-district .sales-breadcrumb {
        min-height: 48px;
        padding: 14px 0 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sales-page--flagship-district .sales-flagship-district__panel {
        padding: 22px 12px 24px;
    }

    .sales-page--flagship-district .sales-flagship-district__panel > h1 {
        font-size: 22px;
        line-height: 32px;
    }

    .sales-page--flagship-district .sales-flagship-district__date {
        margin-top: 4px;
        font-size: 13px;
    }

    .sales-page--flagship-district .sales-flagship-district__documents {
        margin-top: 20px;
    }

    .sales-page--flagship-district .sales-flagship-district__document {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
    }

    .sales-page--flagship-district .sales-flagship-district__document > button {
        min-width: 680px;
    }

    .sales-image-preview {
        max-width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
    }

    .sales-image-preview > img {
        max-width: calc(100vw - 32px);
        max-height: calc(100vh - 48px);
    }

    .sales-image-preview__close {
        top: -14px;
        right: -8px;
        width: 36px;
        height: 36px;
        font-size: 25px;
        line-height: 30px;
    }
}

/* Flagship store overview redesign. Scoped to this page to protect other sales pages. */
.sales-page--flagships {
    padding: 0 0 40px;
    background: var(--site-background);
    color: var(--site-text);
}

.sales-page--flagships .sales-flagship-banner {
    position: relative;
    width: 100%;
    height: 378px;
    overflow: hidden;
    background: #f7dedc;
}

.sales-page--flagships .sales-flagship-banner img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    max-width: none;
    height: 378px;
    transform: translateX(-50%);
}

.sales-page--flagships .sales-flagship-content {
    width: min(1200px, calc(100% - 40px));
    max-width: none;
    margin: 0 auto;
}

.sales-page--flagships .sales-flagship-news {
    margin-top: 30px;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--site-shadow);
}

.sales-page--flagships .sales-flagship-news__layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: stretch;
}

.sales-page--flagships .sales-flagship-news__featured {
    position: relative;
    width: auto;
    height: 400px;
    min-width: 0;
    overflow: hidden;
    background: #f7dedd;
}

.sales-page--flagships .sales-flagship-news__cover {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8c9c8 0%, #f7e4e2 100%);
}

.sales-page--flagships .sales-flagship-news__featured.is-enhanced .sales-flagship-news__cover {
    position: absolute;
    inset: 0;
    display: none;
    transition: none;
    will-change: transform;
}

.sales-page--flagships .sales-flagship-news__featured.is-enhanced .sales-flagship-news__cover.is-active,
.sales-page--flagships .sales-flagship-news__featured.is-enhanced .sales-flagship-news__cover.is-transitioning {
    display: block;
}

.sales-page--flagships .sales-flagship-news__featured.is-enhanced.is-animating .sales-flagship-news__cover.is-transitioning {
    transition: transform .52s cubic-bezier(.22, .61, .36, 1);
}

.sales-page--flagships .sales-flagship-news__cover img {
    object-fit: cover;
}

.sales-page--flagships .sales-flagship-news__cover strong {
    z-index: 2;
    height: 44px;
    padding: 10px 112px 10px 16px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .72) 52%, rgba(0, 0, 0, 0) 100%);
    font-size: 13px;
    line-height: 24px;
}

.sales-page--flagships .sales-flagship-news__dots {
    right: 18px;
    bottom: 0;
    height: 44px;
    align-items: center;
    gap: 0;
}

.sales-page--flagships .sales-flagship-news__dots button {
    width: 24px;
    height: 44px;
}

.sales-page--flagships .sales-flagship-news__dots button::before {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .42);
}

.sales-page--flagships .sales-flagship-news__dots button.is-active::before {
    background: #fff;
}

.sales-page--flagships .sales-flagship-news__cover-placeholder {
    color: rgba(201, 0, 43, .58);
    font-size: 28px;
    font-weight: 600;
}

.sales-page--flagships .sales-flagship-news__copy {
    width: auto;
    height: 400px;
    min-width: 0;
    margin: 0;
    padding: 20px 30px 8px;
}

.sales-page--flagships .sales-flagship-news__heading {
    display: flex;
    height: 32px;
    min-height: 32px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 4px;
}

.sales-page--flagships .sales-flagship-news__heading h1 {
    margin: 0;
    color: var(--site-text);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.sales-page--flagships .sales-flagship-news__heading > a {
    flex: 0 0 auto;
    color: var(--site-red);
    font-size: 13px;
    line-height: 32px;
}

.sales-page--flagships .sales-flagship-news__highlights article {
    position: relative;
    margin: 0;
    padding-left: 18px;
}

.sales-page--flagships .sales-flagship-news__highlights article::before,
.sales-page--flagships .sales-flagship-news__list li::before {
    position: absolute;
    top: 22px;
    left: 2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--site-red);
    content: "";
}

.sales-page--flagships .sales-flagship-news__highlights h2 {
    overflow: hidden;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sales-page--flagships .sales-flagship-news__highlights h2 a,
.sales-page--flagships .sales-flagship-news__list a {
    color: var(--site-text);
}

.sales-page--flagships .sales-flagship-news__highlights p {
    display: none;
}

.sales-page--flagships .sales-flagship-news__list {
    width: 100%;
    margin: 0;
    padding: 0;
}

.sales-page--flagships .sales-flagship-news__list li {
    position: relative;
    padding: 0 0 0 18px;
    background: none;
}

.sales-page--flagships .sales-flagship-news__list a {
    font-size: 18px;
    line-height: 48px;
}

.sales-page--flagships .sales-flagship-stores {
    margin-top: 30px;
    padding: 0 28px 36px;
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--site-shadow);
}

.sales-page--flagships .sales-flagship-stores__heading {
    display: flex;
    min-height: 72px;
    align-items: center;
    border-bottom: 2px solid var(--site-red);
}

.sales-page--flagships .sales-flagship-stores__heading h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--site-text);
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
}

.sales-page--flagships .sales-flagship-stores__icon {
    display: flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    border: 0;
}

.sales-page--flagships .sales-flagship-stores__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.sales-page--flagships .sales-flagship-grid {
    display: grid;
    grid-template-columns: repeat(3, 362px);
    justify-content: space-between;
    gap: 24px 0;
    margin-top: 28px;
}

.sales-page--flagships .sales-flagship-card {
    width: 362px;
    height: 299px;
    min-width: 0;
    margin: 0;
    padding: 0 12px 12px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(28, 34, 43, .08);
}

.sales-page--flagships .sales-flagship-card__heading {
    height: 61px;
    align-items: center;
}

.sales-page--flagships .sales-flagship-card__heading h3 {
    width: auto;
    height: auto;
    margin: 0;
    background: none;
    color: var(--site-text);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
}

.sales-page--flagships .sales-flagship-card__heading a {
    display: inline-flex;
    width: auto;
    height: 28px;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 11px;
    border: 1px solid var(--site-red);
    border-radius: 14px;
    background: #fff;
    color: var(--site-red);
    font-size: 14px;
    line-height: 26px;
    text-align: center;
}

.sales-page--flagships .sales-flagship-card__heading a:hover,
.sales-page--flagships .sales-flagship-card__heading a:focus-visible {
    color: #fff;
    background: var(--site-red);
}

.sales-page--flagships .sales-flagship-card__frame {
    width: 100%;
    margin-top: 0;
    padding: 0;
    background: none;
}

.sales-page--flagships .sales-flagship-card__image {
    width: 338px;
    height: 225px;
    border-radius: 4px;
    background: #f4f5f6;
    box-shadow: 0 5px 14px rgba(28, 34, 43, .08);
}

.sales-page--flagships .sales-flagship-card__address {
    display: none;
}

@media (max-width: 768px) {
    .sales-page--flagships {
        padding-bottom: 24px;
    }

    .sales-page--flagships .sales-flagship-banner,
    .sales-page--flagships .sales-flagship-banner img {
        height: clamp(150px, 44vw, 180px);
    }

    .sales-page--flagships .sales-flagship-content {
        width: calc(100% - 24px);
    }

    .sales-page--flagships .sales-flagship-news {
        margin-top: 16px;
    }

    .sales-page--flagships .sales-flagship-news__layout {
        display: block;
    }

    .sales-page--flagships .sales-flagship-news__featured {
        width: 100%;
        height: 220px;
    }

    .sales-page--flagships .sales-flagship-news__cover {
        height: 220px;
    }

    .sales-page--flagships .sales-flagship-news__copy {
        width: 100%;
        margin: 0;
        padding: 20px 16px 8px;
    }

    .sales-page--flagships .sales-flagship-news__heading h1 {
        font-size: 24px;
    }

    .sales-page--flagships .sales-flagship-news__highlights h2,
    .sales-page--flagships .sales-flagship-news__list a {
        font-size: 18px;
        line-height: 48px;
    }

    .sales-page--flagships .sales-flagship-news__highlights article::before,
    .sales-page--flagships .sales-flagship-news__list li::before {
        top: 22px;
    }

    .sales-page--flagships .sales-flagship-stores {
        margin-top: 16px;
        padding: 0 16px 22px;
    }

    .sales-page--flagships .sales-flagship-stores__heading {
        min-height: 62px;
    }

    .sales-page--flagships .sales-flagship-stores__heading h2 {
        font-size: 28px;
    }

    .sales-page--flagships .sales-flagship-stores__icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .sales-page--flagships .sales-flagship-stores__icon img {
        width: 38px;
        height: 38px;
    }

    .sales-page--flagships .sales-flagship-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .sales-page--flagships .sales-flagship-card {
        width: min(362px, 100%);
        height: auto;
        margin: 0;
        justify-self: center;
    }

    .sales-page--flagships .sales-flagship-card__heading,
    .sales-page--flagships .sales-flagship-card__heading h3,
    .sales-page--flagships .sales-flagship-card__heading a {
        height: auto;
    }

    .sales-page--flagships .sales-flagship-card__heading {
        height: 61px;
        min-height: 61px;
    }

    .sales-page--flagships .sales-flagship-card__heading h3 {
        width: auto;
        font-size: 20px;
        line-height: 28px;
    }

    .sales-page--flagships .sales-flagship-card__heading a {
        width: auto;
        height: 28px;
        min-height: 28px;
        font-size: 14px;
        line-height: 26px;
    }

    .sales-page--flagships .sales-flagship-card__image {
        width: 100%;
        height: auto;
        aspect-ratio: 338 / 225;
    }
}
