.custom_links_loesungen_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.custom_links_loesungen_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #f5f5f5;
  text-decoration: none;
  color: #000;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.custom_links_loesungen_item h3 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.2s ease;
}

.custom_links_loesungen_item:hover {
  background: #1BB76D;
  color: #fff;
}

.custom_links_loesungen_item:hover h3 {
  color: #fff;
}


.custom_links_loesungen_thumb {
  flex: 0 0 40px;
  height: 30px;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .custom_links_loesungen_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .custom_links_loesungen_grid {
    grid-template-columns: 1fr;
  }
}
