.cp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    direction: rtl;
}

.cp-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    transition: all .3s ease;
    border: 1px solid #eee;
}

.cp-feature-card:hover {
    border-color: #ff7a00;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.cp-feature-card{
    background-color: #fbfbf8;
}
.cp-icon {
    width: 56px;
    height: 56px;
    background: #fff1e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: absolute;
    top: 24px;
    left: 24px; */
    transition: .3s;
}

/*.cp-feature-card:hover .cp-icon {*/
/*    background: #ff7a00;*/
/*}*/

.cp-icon i,
.cp-icon svg {
    font-size: 22px;
    color: #ff7a00;
    transition: .3s;
}

.cp-feature-card:hover .cp-icon i,
.cp-feature-card:hover .cp-icon svg {
    color: #fff;
}

.cp-feature-card h3 {
    margin-top: 23px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 0;
}

.cp-feature-card p {
    margin-top: 8px;
    color: #777;
    font-size: 14px;
    margin-bottom: 0;
}
