@media screen and (min-width:900px){
    .blogSc{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        margin: 0 .5rem;
        flex-wrap: wrap;
    }
}
.contBlog{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: .5rem;
}
@media screen and (min-width:900px){
    .contBlog {
        width: calc(50%);
        margin-bottom: 0.5rem;
    }
}
@media screen and (min-width:1080px){
    .contBlog {
        width: calc(33.33%);
    }
}
.blogCard {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 10rem;
    overflow: hidden;
    background: #faaf3b;
    background-position: center;
    background-size: contain;
    border-radius: .5rem;
    border: .15rem solid #faaf3b;
}
@media screen and (min-width:500px){
    .blogCard{
        border-radius: 1rem;
        height: 15rem;
    }
}
@media screen and (min-width:900px){
    .blogCard{
        height: 20rem;
    }
}
.blogCard a{
    text-decoration: none;
}
.blogCard img{
    width: 100%;
    height: auto;
}
.hiddenBlog {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    text-align: start;
    background-color: #ecebeb;
    width: 80%;
    height: 7.5rem;
    border-radius: .5rem;
    padding: 1rem .6rem .3rem .6rem;
    transform: translateY(-10%);
    z-index: -1;
}
@media screen and (min-width:500px){
    .hiddenBlog{
        padding: 1.5rem 1rem .6rem 1rem;
        height: 10rem;
        transform: translateY(-15%);
    }
}
.hiddenBlog h2{
    color: #742e16;
    font-weight: 500;
    margin-bottom: .2rem;
}
@media screen and (min-width:500px){
    .hiddenBlog h2{
        font-size: 2rem;
        margin-bottom: .5rem;
    }
}
.hiddenBlog span{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-align: justify;
    font-weight: 300;
    font-size: .9rem;
}
@media screen and (min-width:500px){
    .hiddenBlog span{
        font-size: 1rem;
    }
}