/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
.list-subcats ul {
    background-color: silver;

}

.list-subcats li {
    display: inline;
    list-style-type: none;padding: 0 5px 0 5px;
}



.custom-category-links {
  background-color: #eaf1f4;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
  width: 100%;
  max-width: 70%;
  box-sizing: border-box;
  margin-top:30px;
  text-transform: uppercase;
}

.custom-category-links a {
  background-color: #ffffff;
  color: #3f7288;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 15px;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: background-color 0.2s ease;
}

.custom-category-links a:hover {
  background-color: #d0e5ee;
}

/* Responsive: Auf kleineren Bildschirmen immer 100% */
@media (max-width: 1024px) {
  .custom-category-links {
    max-width: 100%;
  }
}

