.manchetePadraoCategory{
    background-color: white;
    grid-column: span 6;
    grid-row: span 3;
    border-bottom: 0.5px solid #bbbbbb;;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.manchetePadraoCategory > a{
    display: flex;
    flex-direction: column;
}
.manchete-padrao-img {
    width: 100%; 
    height: 290px;
}
.manchetePadraoCategory-text{
    display: flex;
    flex-direction: column;
}
.manchetePadraoCategory-text > h2 {
	font-family: "GuardianSans-Bold";
	font-size: 44px;
	line-height: 44px;
	color: #2F3033;
	margin-bottom: 10px;
}
.manchetePadraoCategory-text > h3{
    font-family: "GuardianTextEgypt-Regular";
    font-size: 16px;
    line-height: 20px;
    color: #2F3033;
    margin-bottom: 10px;
}
.manchetePadraoCategory-text h4 {
	font-family: "GuardianSans-Regular";
	font-size: 12px;
	color: #919191;
}

.manchetePadraoCategory-text h4::before {
	content: '';
	width: 20px;
	height: 1px;
	background-color: black;
	display: block;
	position: absolute;
	left: -20px;
	bottom: 10px;
}

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