.chamadaManchete{
    grid-column: span 2;
    grid-row: span 1;
    background-color: white;
    border-bottom: 1px solid #919191;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.chamadaManchete h2 {
	font-family: "GuardianSans-Bold";
	font-size: 22px;
	line-height: 22px;
}
@media (max-width:700px){
    .chamadaManchete {
        grid-column: span 2;
    }
}
@media (min-width: 300px) and (max-width: 1000px) {
    .chamadaManchete h2 {
        font-family: "GuardianSans-Bold";
        font-size: 28px;
        line-height: 29px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
  }