.cards {
    .row {
        @media screen and (max-width: 991px) {
            --bs-gutter-y: 30px;
        }
        @media screen and (max-width: 576px) {
            --bs-gutter-y: 20px;
        }
    }
    .card-wrapper {
        padding: 60px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;

        @media screen and (max-width: 1200px) {
            padding: 50px;
        }
        @media screen and (max-width: 991px) {
            padding: 40px;
        }
        @media screen and (max-width: 576px) {
            padding: 30px;
        }
        &.center {
            text-align: center;
        }
        &.rounded {
            border-radius: 30px !important;

            @media screen and (max-width: 991px) {
                border-radius: 20px !important;
            }
            @media screen and (max-width: 576px) {
                border-radius: 10px !important;
            }
        }
        *:last-child {
            margin-bottom: 0 !important;
        }
        .text {
            margin-bottom: 35px;

            @media screen and (max-width: 991px) {
                margin-bottom: 20px;
            }
            h3 {
                font-weight: bold;
                line-height: 1.2;
            }
            a {
                &[href^="tel:"], &[href^="mailto:"] {
                    word-break: break-all;
                }
            }
        }
    }
}