

.landscape-box-wrapper {
    display: grid;
    border-bottom: solid #959393 1px;
    padding: 10px;
    margin-top: 40px;
    font-weight: 200;
    
}

.landscape-image {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 9px;
    overflow: hidden;
}

.landscape-image img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.landscape-boxes {
    margin-top: 50px;
}



@media (min-width: 800px) {

    
    .landscape-box-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin: 100px 0;
    }


 }