.image-and-text {
    .left-col {
        .image {
            img {
                width: 100%;
                border-radius: 30px;

                @media screen and (max-width: 576px) {
                    border-radius: 20px;
                }
            }
        }
    }
    .right-col {
        display: flex;
        flex-direction: column;
        justify-content: center;

        .heading {
            padding-left: 40px;

            @media screen and (max-width: 991px) {
                padding-left: 0;
            }
            h2 {
                font-size: 2rem;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-bottom: 1.6rem;
            }
        }
        .text {
            padding-left: 40px;
            max-width: 480px;

            @media screen and (max-width: 991px) {
                padding-left: 0;
                max-width: none;
            }
            p {
                font-family: var(--font-secondary);
                font-size: 2rem;
                font-style: italic;
                line-height: 1.4;
                letter-spacing: .6px;

                &:last-of-type {
                    margin-bottom: 0;
                }
                a {
                    font-family: var(--font-primary);
                    font-size: 1.6rem;
                    font-weight: bold;
                    font-style: normal;
                    text-transform: uppercase;
                    letter-spacing: .45px;
                }
            }
        }
    }
}