/* .service__tab {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; 
} */

.service__tab li {
    flex: 1 1 200px; /* grow + shrink + base width */
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.tj-service-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%; /* make it stretch to li height */
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
}