main {
    /*height: 100vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    margin-bottom: 50px;
    
    text-align: center;

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 40px;
    text-transform: uppercase;

    color: #2D3436;
}

.sale__wrapper {
    width: 1123px;
    height: 730px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sale__image {
    width: 526px;
    height: 469px;
}

.sale__desc {
    width: 567px;
    height: 100%;

    padding: 50px;

    box-shadow: 0px 2px 4px rgba(38, 50, 56, 0.16), 0px 4px 8px rgba(38, 50, 56, 0.08);
    border-radius: 16px;
}

.desc__title {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 21px;
    line-height: 40px;
    text-transform: uppercase;
}

.edit {
    height: 90px;
    background: var(--GRAY_FIELDS);
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
    border-radius: 16px;
}


/* Мобильная Версия */
@media (max-width: 1200px) {

    main {
        height: auto;
        padding-top: 70px;
        padding-bottom: 20px;
    }

    .container {
        width: 100%;
        max-width: 360px;
        /* width: ; */
        max-height: 1200px;
        padding: 0;
    }

    .sale__wrapper {
        flex-direction: column;
        gap: 70px;
        width: auto;
        height: auto;
    }

    .sale__image {
        width: 360px;
        height: 303px;
    }

    .sale__desc {
        width: 360px;
        height: 100%;
        padding: 50px 20px;
    }

    .title {
        font-size: 36px;
        line-height: 40px;
    }

}