.search-page {
    max-width: 920px;
}

.search-page-form {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 28px 0 18px;
}

.search-page-form input {
    flex: 1;
    min-height: 54px;
    border-radius: 12px;
    box-shadow: 0 3px 9px rgba(0,0,0,.1);
}

.search-tabs {
    margin-bottom: 24px;
}

.search-empty-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 34px;
    color: var(--muted);
}

.search-empty-card h2 {
    color: var(--blue);
    margin-top: 0;
}

.search-people-list {
    overflow: hidden;
}

.search-posts-list {
    max-width: 760px;
}

.search-page .library-grid {
    margin-top: 0;
}

.search-page .library-grid .search-empty-card {
    grid-column: 1 / -1;
}

@media (max-width: 700px) {
    .search-page-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-page-form .btn {
        width: 100%;
    }
}
