.human-iq-callout {
    .callout {
        background: linear-gradient(to bottom, rgba(var(--color-black-rgb), 0), rgba(var(--color-green-100-rgb), .4));
        outline: 2px solid rgba(var(--color-white-rgb), .25);
        border-radius: 30px;
        padding: 60px 70px;

        @media screen and (max-width: 1200px) {
            padding: 60px;
        }
        @media screen and (max-width: 991px) {
            padding: 40px;
        }
        @media screen and (max-width: 576px) {
            padding: 25px;
            border-radius: 20px;
        }
        .row {
            --bs-gutter-x: 80px;
            --bs-gutter-y: 80px;

            @media screen and (max-width: 991px) {
                --bs-gutter-y: 50px;
            }
            @media screen and (max-width: 768px) {
                --bs-gutter-y: 30px;
            }
        }
        .callout-col-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            
            h2 {
                font-family: var(--font-secondary);
                font-size: var(--font-size-xl);
                font-weight: normal;
                font-style: italic;
                color: #B4B4B4;
                margin-bottom: var(--spacing-md);

                @media screen and (max-width: 768px) {
                    font-size: var(--font-size-lg);
                }
                @media screen and (max-width: 576px) {
                    font-size: var(--font-size-md);
                    margin-bottom: var(--spacing-sm);
                }
                br {
                    @media screen and (max-width: 576px) {
                        display: none;
                    }
                }
            }
            .reasons-list {
                .row {
                    --bs-gutter-x: 30px;
                    --bs-gutter-y: 30px;

                    @media screen and (max-width: 576px) {
                        --bs-gutter-y: 25px;
                    }
                }
                .reason {
                    .reason-heading {
                        font-size: 1.6rem;
                        font-weight: 800;
                        line-height: 1.4;
                        text-transform: uppercase;
                        letter-spacing: 1.28px;
                        margin-bottom: 8px;

                        @media screen and (max-width: 576px) {
                            letter-spacing: 1px;
                        }
                    }
                    .reason-description {
                        font-size: 1.6rem;
                        line-height: 1.4;
                        margin-bottom: 0;
                        text-wrap: pretty;
                    }
                }
            }
        }
        .callout-col-right {
            .callout-image {
                display: flex;
                justify-content: flex-end;
                align-items: center;
                height: 100%;

                img {
                    @media screen and (max-width: 991px) {
                        margin: 0 auto;
                    }
                }
            }
        }
    }
}