.manchetepadraoTitulo{
    background-color: white;
    grid-column: span 5;
    grid-row: span 3;
    border-bottom: 0.5px solid #bbbbbb;;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.manchetepadraoTitulo > a{
    display: flex;
    flex-direction: column;
}
.manchete-padraoTitulo-img {
    width: 100%; 
    height: 320px;
}
.manchetepadraoTitulo-text{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.manchetepadraoTitulo-text > h2 {
    font-family: "GuardianSans-Bold";
    font-size: 55px;
    line-height: 60px;
    color: #2F3033;
    margin-top: -7px;
}
.manchetepadraoTitulo-text > h3{
    font-family: "GuardianTextEgypt-Regular";
    font-size: 16px;
    line-height: 20px;
    color: #2F3033;
    margin-bottom: 10px;
}
.manchetepadraoTitulo-text h4 {
	font-family: "GuardianSans-Bold";
	font-size: 15px;
	line-height: 19px;
	margin-left: 20px;
	position: relative;
	padding-left: 10px;
}
.manchetepadraoTitulo-text h4::before {
	content: '';
	width: 20px;
	height: 1px;
	background-color: black;
	display: block;
	position: absolute;
	left: -20px;
	bottom: 10px;
}

@media (max-width: 700px){
    .manchetepadraoTitulo {
        grid-column: span 2;
    }
    .manchetepadraoTitulo-text > h3 {
        font-size: 18px;
        line-height: 22px;
    }
    .manchetepadraoTitulo-text h4 {
        font-size: 18px;
        line-height: 24px;
    }
    .manchetepadraoTitulo-text > h2 {
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    .manchete-padraoTitulo-img {
        width: 100%;
        height: 260px;
    }
    .manchetepadraoTitulo-text {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .manchetepadraoTitulo-text h4::before{
        bottom: 80%;
    }
}