.ChamadaSearchFoto{
    grid-column: span 6;
    grid-row: span 1;
    background-color: white;
    border-bottom: 0.5px solid #bbbbbb;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}
.ChamadaSearchFoto h2 {
    font-family: "GuardianEgyptian-Semibold";
    font-size: 30px;
    line-height: 33px;
    display: inline-block;
    vertical-align: top;
}
.ChamadaSearchFoto-img {
    width: 278px;
    height: 150px;
}
@media (max-width:700px){
    .ChamadaSearchFoto{
        grid-column: span 2;
    }
    .ChamadaSearchFoto-img {
        width: 154px;
        height: inherit;
    }
    .ChamadaSearchFoto h2 {
        font-size: 18px;
        line-height: 20px;
        display: inline-block;
        vertical-align: top;
    }
}