.offer-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 56px;
    margin: 0;
    padding: 0;
}

.offer-list__item {
    width: 100%;
    height: 400px;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.offer-list__figure-wrapper {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

.offer-list__figure,
.offer-list__img {
    height: 400px;
}

.offer-list__content {
    width: 50%;
    height: 100%;
    padding: 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.offer-list__content.premium {
    --button-primary-enabled: var(--wi80);
    --button-primary-hover: var(--wi90);
    --button-primary-pressed: var(--wi100);
}

.offer-list__bottom {
    width: 100%;
}

@media (max-width: 1023px) {
    .offer-list {
        gap: 48px;
    }

    .offer-list__item {
        height: auto;
        flex-direction: column;
        gap: 24px;
    }

    .offer-list__figure-wrapper {
        width: 100%;
        height: 220px;
    }

    .offer-list__figure,
    .offer-list__img {
        height: 220px;
    }

    .offer-list__content {
        width: 100%;
        height: auto;
        padding: 0;
        gap: 32px;
    }
}