.other-projects{
    display: grid;
    grid-template-columns: .8fr 4fr;
    gap: 4rem; 
    position: relative;
    border: 1px solid;
    border-radius: 20px;
    padding: 40px;
}

.other-projects-col1{
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
}

.other-projects-col1 h3 {
    text-transform: uppercase;
    margin-top: 0;
}

.other-projects-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem; 
}

.other-projects-list .projects img{
    max-width: 100%;
    border-radius: 20px;
    height: 180px;
    object-fit: cover;
}

.other-projects-list .projects .projects_title{
    display: flex;
    align-items: baseline;
}

.other-projects-list .projects .projects_title h4{
    margin-left: 10px;
    margin-top: 10px;
    font-weight: 600;
}

.other-projects-list .projects a {
    text-decoration: none;
    color: inherit;
}

.line{
    width: 100%;
    height: 1px;
    background-color: #474749;
}

/* mobile */

@media screen and (max-width: 1024px) {
    .other-projects {
        grid-template-columns: 1fr;
        gap: 2rem; 
        padding: 20px;
    }

    .other-projects .other-projects-col1 h3 br{
        display: none;
    }

    .other-projects-list{
        grid-template-columns: 1fr;
        gap: 2rem; 
    }
}