.svca-stichwort-list-inner {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: 16px;
}

.svca-stichwort-list[data-layout="grid"] .svca-item {
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    min-height: 180px;
    width: 100%; /* Grid sorgt für die Breite */
}

.svca-stichwort-list[data-layout="list"] .svca-item {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    display: block;
}

.svca-item-title, .svca-item-desc {
    margin: 0 0 8px 0;
}
.svca-item-title {
    font-weight: bold;
    min-height: 2.2em;
}
.svca-item-desc {
    flex: 1 1 auto;
    min-height: 3.2em;
}
.svca-search-bar, .svca-alpha-filter {
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em;
}
.svca-search-input {
    min-width: 180px;
    padding: 6px;
}
.svca-search-reset, .svca-alpha-reset, .svca-alpha-btn {
    background: #f5f5f5;
    border: 1px solid #bbb;
    cursor: pointer;
    padding: 0.4em 1em;
    border-radius: 3px;
    margin-left: 2px;
}
.svca-alpha-btn.active {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
.svca-no-results {
    color: #c00;
    font-weight: bold;
    margin-top: 1em;
}