.filter-wrapper {
    margin-bottom: 2rem;
}
.search-input, .filter-button {
    background: var(--bc-clr-dark-800);
    border: none;
    border-radius: .5rem;
    padding: 1rem;
}
.search-input {
    width: min(55rem, 50%);
}
:is(.search-input, .filter-button):is(:hover, :focus, :focus-visible, :focus-within) {
    background: var(--bc-clr-dark-900);
}
.result-count {
    margin-right: 1rem;
    font-size: var(--bc-fs-300);
    font-weight: 300;
    color: var(--bc-clr-text-800);
}

.filter-wrapper .custom-check {
    line-height: 1;
    font-size: var(--bc-fs-300);
}
.filter-wrapper .custom-check input {
    appearance: none;
    border: 2px solid var(--bc-clr-primary-400);
    margin: 0;
    width: 1.4rem;
    aspect-ratio: 1 / 1;
}
.filter-wrapper .custom-check input[type=radio] {
    border-radius: 1.4rem;
}
.filter-wrapper .custom-check input[type=checkbox] {
    border-radius: .2rem;
    vertical-align: bottom;
}
.filter-wrapper .custom-check input:checked {
    background: var(--bc-clr-primary-400);
}

#ideaList {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr));
}
.idea {
    background: var(--bc-clr-dark-800);
    border-radius: .5rem;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}
.idea-name {
    margin: 0;
    font-size: var(--bc-fs-600);
    color: var(--bc-clr-text-100);
}
.idea-device {
    margin-block: 0;
    line-height: 1;
}
.idea-desc {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
}
.idea-actions {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
}
.idea-actions > * {
    margin: 0;
    flex: 1 50%;
}

.replace-btn {
    padding: 1rem 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    line-height: 1;
    font-size: var(--bc-fs-400);
    font-weight: 700;
    color: var(--bc-clr-text-100);
}
.replace-btn i {
    font-size: var(--bc-fs-600);
}
.replace-btn.approved {
    flex-basis: 50%;
    color: var(--bc-clr-success-200);
}
.replace-btn.denied {
    flex-basis: 50%;
    color: var(--bc-clr-danger-200);
}