.er-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    font-family: inherit;
}

.er-search-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px;
    margin-bottom: 18px;
}

.er-search-bar input,
.er-search-bar button {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
}

.er-search-bar button[type="submit"] {
    background: #1a6c7a;
    color: #fff;
    border-color: #1a6c7a;
    cursor: pointer;
}

.er-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    padding: 0;
    font-size: 18px;
    line-height: 1;
}

.er-sort-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.er-sort-bar button {
    background: none;
    border: none;
    padding: 6px 4px;
    font: inherit;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    user-select: none;
}

.er-sort-arrow {
    display: inline-block;
    width: 10px;
}

.er-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.er-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
}

.er-band-main {
    min-width: 0;
}

.er-band-title {
    font-weight: 700;
}

.er-band-meta {
    color: #888;
    font-size: 13px;
    margin-top: 2px;
}

.er-band-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    background: #ff0000;
}

.er-count {
    margin: 0 0 12px;
    font-size: 13px;
    color: #666;
}

@media (max-width: 700px) {
    .er-search-bar {
        grid-template-columns: 1fr;
    }
}
