/**
 * GoDog Filter Chips Styles (filter-chips.css)
 * 役割：アーカイブページ上部の選択中条件表示
 */
.godog-filter-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.godog-chip {
    display: inline-flex;
    align-items: center;
    background: #f0f4f8;
    color: #557c32; /* $accent-green */
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    border: 1px solid #e2e8de;
}

.godog-chip-remove {
    margin-left: 6px;
    cursor: pointer;
    font-weight: bold;
    color: #999;
}

.godog-chip-remove:hover {
    color: #d63638;
}