.manchetePlantao{
    background-color: black;
    grid-column: span 9;
    grid-row: span 3;
    border-bottom: 0.5px solid #bbbbbb;;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}
.manchetePlantao > a {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.manchetePlantao > a > figure{
    grid-column: span 2;
    width: 100%;
    height: 100%;
}
.manchete-plantao-img {
    width: 100%;
    height: 100%;
}

.manchetePLANTAO-texto {
    position: relative;
}

.manchetePlantao-text {
    padding: 34px;
}

.manchetePlantao-text{
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}

.manchetePlantao-text h2 {
    font-weight: bold;
    font-size: 42px;
    line-height: 46px;
    letter-spacing: -1px;
    /*overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;*/
}

.manchetePlantao-text h3 {
    margin-top: 22px;
    font-size: 20px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.manchetePlantao-text h4 {
    font-family: "GuardianSans-Bold";
    margin-top: 20px;
    font-size: 18px;
    line-height: 23px;
    position:relative;
    padding-left: 30px;
}

.manchetePlantao-text h4::before {
	content: '';
	width: 20px;
	height: 1px;
	background-color: white;
	display: block;
	position: absolute;
	top: 15px;
    left: 0;
}


@media (max-width: 1024px){
    .manchetePlantao {
        grid-column: span 2;
    }
    .manchetePlantao-text > h3 {
        font-size: 18px;
        line-height: 22px;
    }
    .manchetepPlantao-text h4 {
        font-size: 18px;
        line-height: 24px;
    }
    .manchetePlantao-text > h2 {
        font-size: 34px;
        line-height: 34px;
        font-family: "GuardianSans-bold";
    }
    .manchete-plantao-img {
        width: 100%;
        height: 260px;
    }
    
    .manchetePlantao-text {
        display: flex;
        flex-direction: column;
        gap: 0px;
        padding: 20px 20px;
    }
    .manchetePlantao-text h4::before{
        bottom: 80%;
        color: white;
    }
    .manchetePlantao > a {
	    grid-template-columns: 1fr;
	    gap: 0px;
	}
}

@media (min-width: 500px) and (max-width: 1024px) {
    .manchetePlantao > a {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .manchetePlantao > a > figure{
        width: 100%;
        height: 100%;
        grid-column: span 1;
    }
    .manchete-plantao-img {
        width: 100%;
        height: 100%;
    }
  }

@media (min-width: 1000px) and (max-width: 1024px) {
    .manchetePlantao-text h2 {
        font-weight: bold;
        font-size: 28px;
        line-height: 32px;
        letter-spacing: 1px;
    }
    .manchetePlantao-text h4 {
        font-family: "GuardianSans-Bold";
        margin-top: 20px;
        font-size: 18px;
        line-height: 23px;
        position: relative;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding-left: 30px;
    }
  }
