.banner-main {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 116px;
    background: none !important;
    gap: 0 !important;
    padding: 0 !important;
}
.banner-main-text {
    background-color: #EEEDEC;
    width: 100%;
    height: 100%;
    max-width: 100% !important;
    padding: 32px 0 32px 32px;
    border-radius: 32px 0 0 32px;
}
.banner-blogs-container {
    grid-column: 1 / 2;
    position: relative;
}
.banner-blogs-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: transparent;
    border-top-right-radius: 32px;
    box-shadow: 16px -16px 0 16px #eeedec;
}
.banner-catalog {
    background-color: #EEEDEC;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    padding: 32px;
    height: 100%;
    border-radius: 0 32px 32px 32px;
}
.banner-main-text p {
    margin-bottom: 32px !important;
}
.banner-blogs {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin: 16px 16px 0 0;
    background: #EEEDEC;
    border-radius: 24px;
    padding: 20px;
    text-decoration: none;
    transition: 0.2s ease;
}

.banner-blogs:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
}
.banner-blogs-title {
    font-size: 20px;
    font-weight: 600;
    color: #353433;
    margin-bottom: 4px;
}

.banner-blogs-subtitle {
    font-size: 13px;
    color: #35343385;
}
.banner-blog-img-wrapper {
    width: 130px;
    height: 60px;
    position: relative;
    flex: 0 0 auto;
}
.banner-blogs img {
    width: 100%;
    position: absolute;
    right: -10px;
    bottom: -10px;
    transform: scale(1.1);
}
.banner-blogs-container-mob {
    display: none;
}

@media (max-width: 1100px) {
    .banner-main {
        grid-template-columns: 280px 1fr;
        grid-template-rows: 1fr 132px;
    }
    .banner-main-text {
        padding: 20px 0 20px 20px;
        border-radius: 24px 0 0 24px;
    }
    .banner-catalog {
        padding: 20px;
        border-radius: 0 24px 24px 24px;
    }

    .banner-blog-img-wrapper {
        width: 100px;
    }
    .banner-blogs img {
        bottom: 0px;
        transform: scale(1.3);
    }
    .banner-blogs-container::before {
        width: 20px;
        height: 20px;
        background: transparent;
        border-top-right-radius: 20px;
        box-shadow: 11px -11px 0 10px #eeedec;
    }
}

@media (max-width: 990px) {
    .banner-main {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .banner-catalog {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        border-radius: 0 0 24px 24px;
    }
    .banner-main-text {
        border-radius: 24px 24px 0 0;
        padding: 20px 20px 0 20px;
    }
    .banner-main-text .link_btn{
        max-width: 390px;
    }
    .banner-blogs-container::before {
        display: none;
    }
    .banner-blogs {
        margin: 16px 0 0 0;
    }
}
@media (max-width: 768px) {
    .banner-blogs-container {
        grid-row: 1 / 2;
    }
    .banner-blogs {
        margin: 0 0 24px 0;
    }
    .banner-main-text {
        grid-row: 2 / 3;
    }
    .banner-catalog {
        grid-row: 3 / 4;
    }
}