.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__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.info-top__inner {
  padding-top: 26px;
  padding-left: 23px;
  max-width: 310px;
}

.info-top__title {
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  line-height: 18px;
  font-family: "Noto Serif", serif;
  letter-spacing: -2px;
}

.info-top__title span {
  color: #E5AD65;
}

.info-top__desc {
  margin-bottom: 10px;
}

.info-top__btn {
  background: #b77a2b !important;
  color: #121220;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 20px 60px rgba(229, 173, 101, 0.33);
  padding: 12px 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  font-family: "e-Ukraine";
}

.info-top__btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #e5ad65 0%, #b37526 100%);
  transition: all 0.4s ease-in-out;
  opacity: 1;
}
.info-top__btn span {
  position: relative;
  z-index: 2;
  display: block;
}
.info-top__btn-arrow>span {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.info-top__btn:hover:before {
  opacity: 0;
}

.info-top__btn .icon svg {
  width: 15px;
}

@media (max-width: 450px) {
  .info-top__inner {
    padding: 15px;
  }
  .info-top__desc {
    margin-bottom: 15px;
  }
}

@media (max-width: 1279px) {
  .info-top {
    border-radius: 0;
    aspect-ratio: unset;
  }
  .info-top__wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
  }
  .custom-grid .info-top img.info-top__img {
    width: auto;
  }
}