.srcb-frontend-wrapper{
    max-width:1200px;
    margin:20px auto;
}

.srcb-frontend-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr)); /* FIX */
    gap:5px;
}

.srcb-frontend-box{
    padding:10px;
    color:#fff;
    text-align:center;
    font-weight:600;
    transition:.3s ease;
    line-height: 1.2em; /* thoda improve */
    min-height:70px;
    min-width:0; /* 🔥 VERY IMPORTANT */
}

.srcb-frontend-box:hover{
    transform:translateY(-4px);
    opacity:.9;
}

.srcb-frontend-box a.srcb-post-link{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word; /* 🔥 text fix */
}

/* MOBILE FIX */
@media(max-width:768px){
    .srcb-frontend-grid{
        grid-template-columns:repeat(2, minmax(0,1fr)); /* 🔥 FIX */
    }
}