.hosl-two-column-grid {

    .hosl-two-column-grid__wrapper {
        display: grid;

        @media screen and (min-width: 750px) {
            grid-template-columns: 1fr 1fr;
        }

        .hosl-two-column-grid__column {
            text-align: center;
            padding: 60px 20px;
            position: relative;
            
            img {
                width: 100%;
                height: auto;
                max-width: 650px;

                @media screen and (max-width: 749px) {
                    margin-top: 20px;
                }
            }

            &:first-child {
                background-color: var(--hosl-orange);

                &:before {
                    content: '';
                    position: absolute;
                    top: -19px;
                    left: 0;
                    width: 90%;
                    height: 20px;
                    background: var(--hosl-orange);
                    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%)
                }
            }

            &:nth-child(2) {
                background-color: var(--hosl-yellow);
            }

            .title {
                margin: 0;
                color: var(--hosl-brown);
            }

            .description {
                font-size: 16px;
                line-height: 1.3;
                max-width: 560px;
                margin-left: auto;
                margin-right: auto;
                color: var(--hosl-brown);

                @media screen and (min-width: 750px) {
                    font-size: 20px;
                }

                @media screen and (min-width: 990px) {
                    font-size: 24px;
                }

                a {
                    color: inherit;
                }
            }
        }
    }
}