.why-grid.elumind-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.elumind-why-grid .why-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid #2bbfb2;
    border-radius: 10px;
    padding: 30px 26px;
}

.elumind-why-grid .why-ic {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 10px;
    background: #eaf9f8;
    color: #2bbfb2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elumind-why-grid .why-ic i {
    font-size: 24px;
}

.elumind-why-grid .why-ic svg {
    width: 24px;
    height: 24px;
    display: block;
}

.elumind-why-grid .why-t {
    margin-bottom: 8px;
    color: #1a2e4a;
    font-size: 15px;
    font-weight: 700;
}

.elumind-why-grid .why-d {
    color: #6b7a8d;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .why-grid.elumind-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .why-grid.elumind-why-grid {
        grid-template-columns: 1fr;
    }
}
