/* Kategorie-Überschrift über die gesamte Breite der Gruppe */
.sll-category-heading {
    grid-column: 1 / -1;
    font-size: 1.4em;
    font-weight: bold;
    margin: 0 0 15px 0;
    padding-bottom: 4px;
    border-bottom: 1px solid #ccc;
}

/* GRID – 3 nebeneinander auf Desktop */
.sll-layout-grid .sll-category-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

/* Tablets / kleinere Screens: 2 Spalten */
@media (max-width: 1024px) {
    .sll-layout-grid .sll-category-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smartphones: 1 Spalte */
@media (max-width: 650px) {
    .sll-layout-grid .sll-category-group {
    grid-template-columns: repeat(1, 1fr);
    }
}

/* Link-Karten */
.sll-link-item {
    width: 100%;
    margin: 0;
}

.sll-link-inner {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sll-link-inner:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.sll-link-image {
    margin-bottom: 8px;
}

.sll-link-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sll-link-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.sll-link-title a {
    text-decoration: none;
}

.sll-link-description {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.4;
}

/* Optionaler Link unter der gesamten Liste */
.sll-list-footer {
    margin-top: 14px;
}

.sll-list-link {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}
