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

    &[arrow] {
        &::before,
        &::after {
            position: absolute;
            content: '';
            left: -1.6em;
            aspect-ratio: 1/1.6;
            width: .8em;
            background-color: var(--red);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
        }
    }

    &[align-right] {
        text-align: right;
    }

    &::after {
        content: unset;
    }

    >h2 {
        font-size: inherit;
        font-weight: 100;
        margin: 0;
        margin-bottom: .5em;
    }

    >h3 {
        font-size: .8em;
        font-weight: 200;
        margin: 0;
        margin-bottom: .5em;
    }

    >p {
        text-align: justify;
    }

    >p,
    ul {
        font-size: .6em;
        font-weight: 100;
        line-height: 1.3;
        margin: 0;
        margin-bottom: 1em;

        a {
            text-decoration: none;
            font-weight: 300;
            color: inherit;

            transition: .2s;

            &:hover {
                font-weight: 650;
            }
        }
    }


    @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;
        }

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