.grid-ads {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 24px;
    grid-template-areas: "article ads"
    "article aside";
    grid-template-rows: max-content 1fr;
}
.grid-ads article {
    grid-area: article;
    width: 100%;
}
.grid-ads .post-aside {
    grid-area: aside;
    width: 100%;
    top: 0 !important;
    padding-top: 0;
}

.info-top {
    grid-area: ads;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #E9E9E9;
    /* height: 202px; */
    font-family: 'HarmonyOS Sans';
    aspect-ratio: 16 / 9;
}
/* .info-top * {
    color: #fff;
} */
/* .info-top:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0, 80%);
} */
.info-top__img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    height: 100%;
}
.info-top__inner {
    position: relative;
    z-index: 2;
    padding-top: 23px;
    padding-left: 22px;
    padding-bottom: 20px;
    max-width: 265px;
}
.info-top__inner .logo {
    margin-bottom: 22px;
}
.info-top__title {
    font-size: 19px;
    color: #121212;
    font-weight: 900;
    margin-bottom: 12px;
}
.info-top__text {
    font-size: 11px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #121212;
}
.info-top__text strong {
    font-weight: 700;
}
.info-top__btn {
    background: #121212;
    display: inline-flex;
    font-weight: 700;
    font-size: 13px;
    color: #E9E9E9;
    padding: 9px 25px;
    border-radius: 20px;
    transition: all .4s ease-in-out;
}
.info-top__btn:hover{
    background: #fff;
    color: #121212;
}

@media (max-width: 1279px) {
    .grid-ads {
        display: flex;
        gap: 24px;
    }
    .info-top {
        /* height: 90px; */
        /* aspect-ratio: unset; */
        width: 100%;
    }
    .info-top__img {
        /* display: none; */
    }
    .info-top__inner {
        padding: 13px 22px;
        /* max-width: 100%; */
    }
    .info-top__inner .logo {
        /* display: none; */
    }
    .info-top__row {
        /* display: flex;
        align-items: flex-end;
        gap: 10px;
        justify-content: space-between; */
    }
    .info-top__title {
        font-size: 14px;
        margin-bottom: 7px;
    }
    .info-top__text {
        font-size: 10px;
        /* margin-bottom: 0; */
        line-height: 130%;
    }
    .info-top__text br {
        /* display: none; */
    }
    .info-top__btn {
        font-size: 11px;
    }
}


.info-top {
    aspect-ratio: unset;
}
