.productkolom {
  border: solid 1px #cccccc;
  width: 251px;
  text-align: center;
  margin-right: 10px;
  border-radius: 10px;
  float: left;
  min-height: 200px;
  margin-bottom: 10px;
  padding: 5px;
}
@media screen and (max-width: 600px) {
  .productkolom {
    border: solid 1px #cccccc;
    width: 100%;
    text-align: center;
    margin-right: 10px;
    border-radius: 10px;
    float: left;
    height: 200px;
    vertical-align: middle;
    margin-bottom: 10px;
    padding: 5px;
  }
}
/* tekst inkorten tot steeds minder dan 2 regels */
.productkolom .views-field-title-1 .field-content a {
    /* STRIKTE BOX-MODELLERING EN BREEDTE */
    display: block !important;
    width: 100% !important;
    
    /* CRUCIAAL: Zorgt ervoor dat de 100% breedte de padding en border van de link zelf bevat */
    box-sizing: border-box !important;

    /* Dwingt afbreking van lange woorden */
    word-break: break-word !important; 
    overflow-wrap: break-word !important; 

    /* LINE-CLAMP REGELS (voor puntjes) */
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important; 

    /* OVERLOOP & FALLBACK (Uw correcte waarden) */
    overflow: hidden !important; 
    text-overflow: ellipsis !important;
    line-height: 1.6em !important; 
    max-height: 3.2em !important; 
    
    /* VOEG OPTIONEEL EEN KLEINE PADDING TOE OM DE PUNTJES ZICHTBAAR TE HOUDEN */
    padding-right: 5px !important;
}