.blog{
    padding-top: 60px;
    padding-bottom: 160px;
    background-color: #FFF;
}
.blog h2{
	margin-bottom: 60px;
}
.blog .posts-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.blog .posts-wrapper .post{
    max-width: 367px;
}
.blog .posts-wrapper .post .post-content{
    background-color: #FDFCFA;
    padding: 20px;
    margin-top: -5px;
}
.blog .posts-wrapper .post .post-content h3{
    margin-bottom: 10px;
    font-size: 1.125em;
    font-weight: 500;
        display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog .posts-wrapper .post .post-content p{
    margin-bottom: 10px;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog .posts-wrapper .post .post-content .blog-more{
    text-decoration: none;
    font-size: 1em;
    color: #1E4BAF;
	font-family: "Poppins", sans-serif;
    font-weight: 700;
	opacity: 1;
	transition: .6s ease;
}
.blog .posts-wrapper .post .post-content .blog-more:hover{
	opacity: .7;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .blog {
        padding-top: 40px; /* Reduce el padding para pantallas más pequeñas */
        padding-bottom: 100px;
    }
	.blog .posts-wrapper .post .post-content p{
		line-height: 20px;
	}

    .blog .posts-wrapper {
        gap: 20px; /* Reduce el espacio entre posts */
    }

    .blog .posts-wrapper .post {
        max-width: 100%; /* Ajusta el ancho del post para ocupar todo el espacio disponible */
    }

    .blog .posts-wrapper .post .post-content {
        padding: 15px; /* Reduce el padding interno */
    }

    .blog .posts-wrapper .post .post-content .blog-more {
        font-size: 1em; /* Reduce el tamaño del enlace */
    }
}

@media (max-width: 480px) {
    .blog {
        padding-top: 40px; /* Reduce aún más el padding */
        padding-bottom: 40px;
    }

    .blog .posts-wrapper {
        gap: 15px; /* Reduce el espacio entre posts */
    }

    .blog .posts-wrapper .post .post-content {
        padding: 10px; /* Reduce el padding interno */
    }

}