.project-layout   {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 1.5rem; 
}

.project-content {
    font-size: var(--fs-lg);
}

.project-text {
    margin-bottom: 1.5em;
}

dl {
        padding-top: 48px;
    }

.project-info dt {
    font-weight: bold;
    list-style: none;   
}

.project-info dd {
    margin: 0;
    padding: 0 0 0.75em 0;
  }

.project-gallery ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-gap: 1.5em;
}

.project-gallery li:first-child {
    grid-column-start: 1;
    grid-column-end: -1;
    
}

.project-gallery img {
    width: 100%;
}

 /* – – – – – – */
  /* MEDIA QUERIES */
  /* – – – – – – */
  
@media (width < 70rem) {
    .project-layout   {
        display: flex;
        flex-direction: column;
        grid-gap: 1.5rem;
    }

    

    .project-gallery ul {
        grid-template-columns: 1fr;
    }

}