.projects{
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #F8F9F9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}
.projects_description{
    max-width: 760px;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.2em;
    margin-bottom: 60px;
    text-align: center;
}
.projects_container{
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr; /* Por defecto: una columna */
    max-width: 1000px;
    padding-bottom: 60px;
}
.project{
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 30px;
    display:flex ;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s;
}
.project:hover{
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.project_img{
    width: 100px;
    height: 100px;
    transition: transform 0.3s;
}
.project_img:hover{
   transform: scale(1.1);
}
.project_description_container{
    box-sizing: border-box;
    padding-left: 20px;
}
.project_title{
    margin: 0;
    margin-bottom: 10px;
}
.project_description{
    color: #646464;
    margin: 0;
    font-size: 0.9em;
    line-height: 1.2em;
}
@media only screen and (min-width: 700px) {
    .projects_container{
        grid-template-columns: 1fr 1fr; /* A partir de 700px: dos columnas */
    }
    .project_title{
        margin-bottom: 15px;
    }
    .project_description{
        margin-bottom: 20px;
        font-size: 1em;
    }
}