.listing-hero {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    padding: 54px 0 42px;
}

.listing-hero span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.listing-hero h1 {
    margin: 6px 0 0;
    font-size: 42px;
    line-height: 1.1;
}

.listing-search {
    display: flex;
    max-width: 620px;
    gap: 8px;
    margin-top: 22px;
}

.listing-search input {
    min-height: 46px;
    min-width: 0;
    flex: 1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    padding: 0 12px;
}

.listing-search button {
    border: 0;
    border-radius: var(--radius);
    background: var(--brand);
    color: #111111;
    padding: 0 18px;
    font-weight: 900;
}

.listing-content {
    padding: 34px 0;
}

.listing-empty {
    display: grid;
    min-height: 180px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--muted);
    padding: 28px;
    text-align: center;
}

.listing-empty strong {
    color: var(--text);
    font-size: 18px;
}

@media (max-width: 640px) {
    .listing-hero h1 {
        font-size: 32px;
    }

    .listing-search {
        flex-direction: column;
    }

    .listing-search button {
        min-height: 44px;
    }
}
