.hero-blog-section {
    background: var(--hero-blog-bk-color);
    display: flex;
}

.hero-blog-section .hero-left,
.hero-blog-section .hero-right  {
    width: 50%;
    min-width: 50%;
    display: flex;
}

.hero-blog-section .hero-right  {
    background: var(--hero-blog-image-bk-color);
    position: relative;
    padding: 30px 0 30px 50px;
}

.hero-blog-section .hero-right:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    z-index: 20;
}

.hero-blog-section .hero-left {
    justify-content: flex-end;
}

.hero-content {
    background: var(--hero-blog-bk-color);
    padding: 70px 0;
    padding-right: 50px;
    padding-left: 15px;
    width: 585px;
}

.hero-smaller .hero-content {
    padding-top: 30px;
    padding-bottom: 30px;
}

.hero-blog-section h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero-blog-section .blog-above-title {
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: inline-block;
}

.hero-blog-section .asl_w_container {
    margin-top: 30px;
}

.hero-post-attr {
    display: flex;
    position: relative;
    font-size: 14px;
    margin-top: 50px;
    gap: 10px;
}

.hero-post-attr .posted:before {
    margin-right: 5px;
}

.hero-post-attr .share-buttons-blog {
    margin-left: auto;
    position: relative;
}

.hero-post-attr .main-share-button:hover {
    cursor: pointer;
}

.hero-post-attr .main-share-button:before {
    margin-right: 5px;
}

.hero-post-attr .share-buttons-toggle a {
    background: var(--hero-blog-bk-color);
    border-radius: 50%;
    color: #313e5b;
    font-size: 15px;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.share-buttons-toggle {
    display: none;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    z-index: 1;
    left: -40px;
    top: 25px;
    padding: 10px;
    
}

.share-buttons-toggle.show {
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 991px) {
    .hero-blog-section {
        flex-wrap: wrap;
    }

    .hero-blog-section .hero-left,
    .hero-blog-section .hero-right {
        width: 100%;
        min-width: 100%;
    }

    .hero-blog-section .hero-left {
        justify-content: flex-start;
    }

    .hero-content {
        width: 100%;
    }

    .hero-blog-section .hero-right {
        height: 300px;
    }
}

@media screen and (max-width: 767px) {
    .hero-content {
        padding: 40px 15px;
    }

    .share-buttons-toggle {
        left: auto;
        right: 0
    }

    .hero-blog-section .hero-right {
        padding: 10px;

    }

    .hero-blog-section .hero-right:before {
        background-position: center center;
    }
    

}