.wccm-item { margin-bottom: 5px; }
.wccm-header {
    background: #0073aa;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-radius: 4px;
    user-select: none;
}
.wccm-header:hover { background: #005a8d; }

.wccm-content {
    display: none; /* Initial geschlossen */
    padding: 20px;
    background: #fff;
    border: 1px solid #0073aa;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}
.wccm-content.active {
    display: grid; /* Sichtbar bei Klick */
}
.wccm-sub-item {
    text-align: center;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border: 1px solid #eee;
    transition: 0.2s;
}
.wccm-sub-item:hover { border-color: #0073aa; }
.wccm-sub-item img { width: 100%; height: auto; margin-bottom: 5px; }