.manchetepadrao{
    background-color: white;
    grid-column: span 5;
    grid-row: span 3;
    border-bottom: 0.5px solid #bbbbbb;;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.manchetepadrao > a{
    display: flex;
    flex-direction: column;
}
.manchete-padrao-img {
    width: 658px;
    height: 330px;
}
.manchetepadrao-text{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.manchetepadrao-text > h2 {
	font-family: "GuardianSans-Bold";
	font-size: 40px;
	line-height: 44px;
	color: #2F3033;
	margin-bottom: 10px;
}
.manchetepadrao-text > h3{
    font-family: "GuardianTextEgypt-Regular";
    font-size: 16px;
    line-height: 20px;
    color: #2F3033;
    margin-bottom: 10px;
}
.manchetepadrao-text h4 {
	font-family: "GuardianSans-Bold";
	font-size: 15px;
	line-height: 19px;
	margin-left: 20px;
	position: relative;
	padding-left: 10px;
}
.manchetepadrao-text h4::before {
	content: '';
	width: 20px;
	height: 1px;
	background-color: black;
	display: block;
	position: absolute;
	left: -20px;
	bottom: 10px;
}

@media (max-width: 1024px){
    .manchetepadrao {
        grid-column: span 2;
    }
    .manchetepadrao-text > h3 {
        font-size: 18px;
        line-height: 22px;
    }
    .manchetepadrao-text h4 {
        font-size: 18px;
        line-height: 24px;
    }
    .manchetepadrao-text > h2 {
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    .manchete-padrao-img {
        object-fit: cover;
        width: 100%;
        height: 260px;
    }
    .manchetepadrao-text {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .manchetepadrao-text h4::before{
        bottom: 80%;
    }
 
}
@media (min-width: 1000px) and (max-width: 1024px) {
    .manchetepadrao-text > h2 {
        font-family: "GuardianSans-Bold";
        font-size: 36px;
        line-height: 37px;
        color: #2F3033;
        margin-bottom: 10px;
    }
  }