.jb-blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 20px;
}

.jb-blog-grid .blog-card:first-child {
    grid-row: span 2;
}

.jb-blog-grid .blog-card:nth-child(4) {
    grid-column: span 2;
}

.blog-card {
    text-decoration: none;
    display: block;
    height: 100%;
    min-height: 250px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.blog-container {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-container {
  
}
.blog-img {
	height: 100% !important;
	width: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.blog-card:hover .blog-img {
	animation: zoomImage 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.blog-card:hover .blog-title {
	color: var(--e-global-color-secondary) !important;
/* 	animation: changeColor 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards; */
}
.blog-card:hover .blog-arrow {
/* 	background: var(--e-global-color-secondary); */
	animation: changeBg 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.blog-card:hover .blog-arrow svg path {
	stroke: #094271;
}
.blog-categoria {
    background: #00000080;
    color: #ffffff;
    padding: 1.5px 20px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 600;
    align-self: flex-start;
	line-height: 32px;
	letter-spacing: 0%;

}

.blog-content {
    color: #fff;
}
.blog-image {
	height: 260px;
}
.blog-title {
    margin: 0;
    font-weight: 600;
    color: #ffffff !important;
	font-size: 22px;
	line-height: 28px;
	letter-spacing: 4%;
    text-wrap: balance;
	transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog-body {
	position: absolute;
	bottom: 30px;
	left: 20px;
}
.jb-blog-grid .blog-card:first-child .blog-title {
	font-weight: 600;
	font-size: 32px;
	line-height: 38px;
	letter-spacing: 4%;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-fecha {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 2%;
	color: #fff;
}

.blog-arrow {
    background: #0E69B2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.blog-arrow svg {
    width: 24px;
}


@media (max-width: 1024px) {
    .jb-blog-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .jb-blog-grid .blog-card:first-child,
    .jb-blog-grid .blog-card:nth-child(4) {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .jb-blog-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 15px;
    }

    .jb-blog-grid .blog-card {
        grid-column: span 1 !important;
        grid-row: auto !important;
        height: 259px; 
    }

    .jb-blog-grid .blog-title {
		font-size: 22px !important;
		line-height: 28px !important;
		margin: 0;
	}
}