/* Grid & otros */
.mainTitle {
    margin-bottom: 4rem;
    border-bottom: 2px solid black;
}

.mainTitle > h1{
    font-family: 'Encode Sans', sans-serif;
    color: black;
    font-size: 25px;
}

.parent {
    font-family: 'Encode Sans', sans-serif;
    margin: 0 auto 10rem;
    display: grid;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

/* Media querys */
@media only screen and (max-width: 530px) {
    .parent {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(12, 1fr);
    }
}


@media only screen and (min-width: 531px) and (max-width: 991px) {
    .parent {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
}

@media only screen and (min-width: 992px) {
    .parent {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}
/* End media querys */

.newsCard {
    background: #F0F0F0;
    padding: 2rem 1.5rem;
    box-shadow: 3px 2px 9px -1px rgba(0,0,0,0.20);
}

.newsCard--volanta {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #009AAE;
    margin-bottom: -1.5rem;
}

.newsCard--title {
    font-family: 'Encode Sans', sans-serif;
    margin: 2rem 0 1.5rem;
    cursor: pointer;
}

.newsCard--title > a {
    font-size: 20px;
    font-weight: bold;
    color: #414042;
    display: block;
    line-height: 120%;
    transition: color 250ms ease-out;
}

.newsCard--title > a:hover {
    color: #009AAE;
}

.newsCard--img > img {
    width: 100%;
}

.newsCard--text {
    font-size: 14px;
    font-weight: 400;
    margin: 2rem 0 0;
}