.allPosts>h2 {
    font-family: 'Lexend';
    font-weight: 500;
    text-align: center;
    font-size: 2.2em;
    padding-bottom: 2vh;
}

.postImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.allPostsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 7%;
    padding-top: 15vh;
}

.firstText p {
    font-family: 'Lexend';
    color: black;
    text-decoration: unset!important;
    margin: 0;
}

.postText {
    padding: 7%;
    box-sizing: border-box;
    width: 100%;
    transform: scale(0.9);
    padding-bottom: 4%;
}

div#noticias {
    padding-bottom: 4vh;
}

.hiddenText p {
    width: 100%;
    overflow: clip;
    text-overflow: ellipsis;
    font-family: 'Lexend';
    color: black;
    text-decoration: unset;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}

.hiddenText {
    overflow: clip;
}

.post {
    width: 22%;
    border: 2px solid #0000001a;
    border-radius: 12px;
    margin-bottom: 6.3vh;
}

.firstText h2 {
    font-family: 'Lexend';
    text-decoration: unset;
    color: black;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}

.firstText {
    overflow: clip;
    width: 100%;
}

.post>a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: unset;
}

.postImage {
    width: 100%;
    height: 31vh;
}

@media only screen and (max-width:1600px){
    .post {
    width: 30%;
}

.allPostsContainer {
    padding: 0 7%;
    padding-top: 15vh;
}

}

@media only screen and (max-width:1000px){
    .post {
    width: 41%;
}

.allPostsContainer {
    justify-content: space-around;
}

}

@media only screen and (max-width:600px){
    .post {
    width: 96%;
}
.allPostsContainer {
    padding-top: 7vh;
}

}