.cards-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30rem;
}

.card {
    padding: 50rem;
    border-radius: 7px;
    border: 1px solid #eee;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 18rem;
    margin-bottom: 28rem;
}

.icon-wrap {
    width: 52rem;
    height: 52rem;
    background: var(--purple-light);
    border-radius: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrap i {
    color: var(--purple-main);
    font-size: 24rem;
}

.card-title {
    color: #333;
    font-size: 24rem;
    font-family: 'BonmyeongjoSourceHanSerif';
}

.card-title br {
    display: none;
}

.card-divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-bottom: 28px;
}

.card-body ul li,
.card-body p {
    color: #555;
    font-size: 17rem;
    line-height: 1.85;
    font-weight: 300;
}

.card-body p+p {
    margin-top: 18px;
}

.card-body p b {
    font-weight: 600;
}

.card-body p strong {
    color: var(--main-color);
    font-weight: 600;
}



/*==================================================*/
@media (max-width: 991px) {
    .cards-row {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 550px) {
    .icon-wrap {
        width: 70rem;
        height: 70rem;
    }
    
    .icon-wrap i {
        font-size: 32rem;
    }
    
    .card-title {
        font-size: 32rem;
    }

    .card-body ul li,
    .card-body p {
        font-size: 24rem;
    }
}