.feeling_blog_grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.blog_section {
    width: 100%;
}

.blog_container {
    width: 100%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    grid-auto-rows: minmax(0px, auto);
}

.main-post {
    grid-column: 1;
    grid-row: 1 / 3;
}

.main-post .FBG_blog_item_cont {
    height: 100lvh;
    height: 100vh;
}

.secondary-post:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.secondary-post:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.secondary-post .FBG_blog_item_cont {
    height: 50lvh;
    height: 50vh;
}

.FBG_blog_item_cont {
    position: relative;
}



.FBG_blog_info_cont {
    position: absolute;
    bottom: 20%;
    z-index: 9;
    left: 10%;
    width: 40%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: baseline;
    gap: 15px;
}

.FBG_blog_info_cont h2 {
    font-weight: 100;
}

.FBG_botton {
    border-radius: 5px;
}

.FBG_botton a {
    padding: 10px 25px;
    display: block;
}

.zoom-pan-container {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    /* Ajusta el tamaño según tus necesidades */
    height: 100%;
    /* Ajusta el tamaño según tus necesidades */
}

.zoom-pan-image {
    background-size: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.FBG_img_cont:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 94%);
    z-index: 9;
}

.blog_container_1 {
    width: 80%;
    margin: 0 auto;
    padding: 100px 0;
}

.container_1 {
    display: flex;
    flex-direction: column;
    position: relative;
}

.container_1 h2 {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.1em;
}

.container_1 h1 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1em;
}


@media(max-width:767px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }

    .main-post {
        grid-column: 1;
        grid-row: 1;
    }



    .secondary-post:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .secondary-post:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    .FBG_blog_info_cont {
        bottom: 30px;
        left: 9%;
        width: 70%;
        gap: 20px;
    }


    .FBG_blog_info_cont h2 {
        line-height: 1.1em;
        font-size: 16px;
        font-weight: 300;
    }

    .main-post .FBG_blog_item_cont {
        height: 50vh;
    }

    .secondary-post .FBG_blog_item_cont {
        height: 50vh;
    }

}

@media (min-width:768px) and (max-width:1024px) {

    .FBG_blog_info_cont {
        bottom: 3%;
        left: 5%;
        width: 70%;
        gap: 10px;
    }

    .FBG_blog_info_cont h2 {
        line-height: 1.1em;
    }

}