.advert-page-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    padding: 60px 0 120px 0;
    column-gap: 48px;
    row-gap: 48px;
}
.advert-page-left {
}
.advert-page-right {
}
.advert-page-left-info {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #EEEDEC;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 0px #274B4105;
}
.advert-page-left-info h2 {
    color: #353433;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 12px;
}
.advert-page-left-info span {
    margin-bottom: 24px;
    line-height: 24px;
}
.advert-page-left-info a {
    
}
.advert-page-right-list {
    display: flex;
    flex-direction: column;
    border: 1px solid #EEEDEC;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 0px #274B4105;
    margin: 48px 0 24px 0;
    padding: 20px;
}
.advert-page-right-list p{
    color: #353433;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 16px;
}
.advert-page-right-list ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.advert-page-right-list li {
    color: #09A351;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}
.advert-page-right-list li::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/local/templates/new/img/check-green.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 18px;
    height: 18px;
}
.advert-page-right-text {
    font-size: 20px;
    font-weight: 700;
    color: #353433;
    line-height: 26px;
}
.advert-page-right-text span{
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #353433;
    margin-top: 12px;
}
.advert-page-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.advert-page-list-item {
    padding: 20px;
    border-radius: 10px;
    background-color: #F8F8F7;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}
.advert-page-list-item-text {
    display: flex;
    flex-direction: column;
}
.advert-page-list-item-price {
    color: #2D7F66;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
}
/*.advert-page-list-item-img{
    margin-bottom: -20px;
    margin-right: -20px;
}*/
.advert-page-list-item-name {
    color: #353433;
    font-size: 16px;
    font-weight: 700;
}
.advert-page-list-item-desc {
    margin-top: auto;
    font-size: 16px;
    font-weight: 500;
    color: #353433;
    line-height: 24px;
}
.block-info__text-price {
    align-items: start;
}
.advert-page-list-item-img img{
    border-radius: 10px;
    max-width: 100%;
}

@media (max-width: 1350px) {
    .advert-page-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .advert-page-list-item-img img {
        max-width: 300px;
    }
}
@media (max-width: 570px) {
    .advert-page-list-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .advert-page-list-item-name {
        margin-bottom: 5px;
    }
    .advert-page-list-item-img {
        /*margin-bottom: -20px;
        margin-right: 0px;*/
        width: 100%;
    }
    .advert-page-list-item-img img {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 390px) {
    .advert-page-right-list li {
        font-size: 12px;
    }
    .advert-page-right-text,
    .advert-page-list-item-price {
        font-size: 18px;
    }
    .advert-page-right-text span {
        font-size: 17px;
    }
    .advert-page-left-info h2 {
        font-size: 22px;
    }
    .advert-page-left-info span,
    .advert-page-list-item-name
    .advert-page-left-info a {
        font-size: 14px;
    }
    .advert-page-list-item-desc {
        font-size: 13px;
        line-height: 19px;
    }
    .advert-page-grid {
        padding: 60px 0 60px 0;
    }
}
@media (max-width: 350px) {
    .text-price__detal,
    .text-price__link {
        font-size: 11px;
    }
    .advert-page-left-info {
        padding: 15px;
    }
}