#about-page > .summary-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

#about-page > .summary-1 > .text {
    line-height: 2.5rem;
}

#about-page > .summary-1 > .img {
    width: 100%;
    height: 50vw;
    object-fit: cover;
}

@media (min-width: 1024px) {
    #about-page > .summary-1 {
        grid-template-columns: 2fr 3fr;
        gap: 12rem;
    }

    #about-page > .summary-1 > .img {
        height: 500px;
    }
}