body { background: var(--ds-bg); }

#wrapper.offers-page {
    height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    background: var(--ds-bg);
    color: var(--ds-text);
    font-family: var(--ds-font);
}
.offers-header {
    position: sticky;
    top: 0;
    z-index: 4;
    height: 92px;
    display: grid;
    grid-template-columns: 82px 1fr 82px;
    align-items: center;
    background: var(--ds-surface);
    box-shadow: var(--ds-shadow-100);
}
.offers-header a {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--ds-text);
    font-size: 54px;
    text-decoration: none;
}
.offers-header h1 {
    margin: 0;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    text-align: center;
}
.offers-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 30px 30px 70px;
}
.offer-list-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 26px;
    background: var(--ds-surface);
    box-shadow: var(--ds-shadow-card);
    color: var(--ds-text);
    text-decoration: none;
}
.offer-list-card > img {
    width: 100%;
    aspect-ratio: 2 / 1;
    display: block;
    object-fit: cover;
}
.offer-list-copy {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 24px 28px 28px;
}
.offer-list-copy strong {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}
.offer-list-copy > span {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ds-text-tertiary);
    font-size: 24px;
    line-height: 36px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.offers-state {
    padding: 100px 20px;
    color: var(--ds-text-tertiary);
    font-size: 26px;
    line-height: 38px;
    text-align: center;
}
