.tb-0b7f8642-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    direction: rtl;
    text-align: center;
}

.tb-0b7f8642-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #E0E0E0;
    background-color: #FFFFFF;
    padding: 30px 20px;
    border-radius: 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tb-0b7f8642-box.tb-0b7f8642-hover:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.tb-0b7f8642-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E8F5E9;
    color: #4CAF50;
    font-size: 28px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.tb-0b7f8642-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.tb-0b7f8642-title {
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.tb-0b7f8642-desc {
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Tablet: 2 per row */
@media (max-width: 1199px) {
    .tb-0b7f8642-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 per row */
@media (max-width: 767px) {
    .tb-0b7f8642-grid {
        grid-template-columns: 1fr;
    }

    .tb-0b7f8642-title {
        font-size: 16px;
    }

    .tb-0b7f8642-desc {
        font-size: 13px;
    }
}
