content-project {
    position: relative;
    display: grid !important;
    grid-template-columns: 1fr;
    font-size: 2.625rem;
    gap: 1rem;

    >section {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 2rem;
        font-family: inherit !important;

        h3 {
            font-weight: 300;
            font-size: 1.875rem !important;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 80%;
            margin-bottom: 2rem;
        }

        p {
            font-size: 1.56rem;
            font-weight: 100;
        }
    }

    @media (max-width: 800px) {
        grid-template-columns: 1fr;
        gap: 1rem;

        &::before,
        &::after {
            position: static;
            justify-self: center;
            width: 2.1rem;
            aspect-ratio: 1.6/1;
            clip-path: polygon(0 0, 50% 100%, 100% 0%);
        }

        &::after {
            content: '';
            transform: scaleY(-1);
        }

        >div {
            grid-column: 1;
        }

        >h2 {
            margin-bottom: 0;
        }
    }
}