.service-with-callout-box {
    .row {
        --bs-gutter-x: 80px;
        --bs-gutter-y: 80px;

        @media screen and (max-width: 991px) {
            --bs-gutter-x: 40px;
            --bs-gutter-y: 40px;
        }
    }
    .left-col {
        &.service-item {
            .service-card {
                height: 100%;
                display: flex;
                flex-direction: column;
                
                .service-icon {
                    height: 60px;
                    margin-bottom: 25px;

                    @media screen and (max-width: 768px) {
                        height: 40px;
                        margin-bottom: 20px;
                    }
                    img {
                        width: auto;
                        height: 100%;
                    }
                }
                .service-heading {
                    p {
                        font-weight: 800;
                        text-transform: uppercase;
                        letter-spacing: 3px;
                        margin-bottom: 12px;

                        @media screen and (max-width: 768px) {
                            font-size: 2.4rem;
                            letter-spacing: 2px;
                        }
                    }
                }
                .service-text {
                    * {
                        margin-bottom: 2rem;

                        &:last-child {
                            margin-bottom: 0;
                        }
                    }
                    a {
                        color: var(--color-white);
                        text-decoration: underline;
                        text-underline-offset: 2px;

                        &:hover, &:focus-visible {
                            color: var(--color-accent);
                            text-decoration: none;
                        }
                    }
                }
            }
        }
    }
    .right-col {
        .callout-box {
            background: linear-gradient(135deg, rgba(128, 128, 128, .25) 60%, rgba(var(--color-white-rgb), .07) 100%);
            outline: 2px solid rgba(var(--color-white-rgb), .15);
            border-radius: 30px;
            padding: 50px;

            @media screen and (max-width: 1200px) {
                padding: 40px;
            }
            @media screen and (max-width: 576px) {
                padding: 30px;
            }
            .callout-preheading {
                font-family: var(--font-secondary);
                font-size: 1.8rem;
                font-weight: 700;
                font-style: italic;
                letter-spacing: .45px;
                color: var(--color-primary);
                margin-bottom: 0;
            }
            .callout-heading {
                font-size: 1.6rem;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 1.28px;

                @media screen and (max-width: 768px) {
                    margin-bottom: 2rem;
                }
            }
            .callout-text {
                p {
                    font-size: 1.6rem;
                    line-height: 1.45;
                    
                    &:last-of-type {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}