main {
    section {
        img {
            border-radius: 50%;
        }

        p {
            text-indent: 0;
        }
    }

    @media screen and (1280px <=width) {
        section {
            &:nth-of-type(1) {
                grid-template-columns: repeat(9, 1fr);
                grid-template-areas:
                    "_1 _1 _1 _1 _1 _1 _1 _1 _1"
                    "_2 _2 _2 _2 . _4 _4 _4 _4"
                    "_3 _3 _3 _3 . _4 _4 _4 _4"
                    "_5 _5 _5 _6 _6 _6 _7 _7 _7";
            }

            &:nth-of-type(2) {
                grid-template-areas:
                    "_1 _1 _1"
                    "_2 _2 _2";
            }
        }
    }
}