.search-page-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.search-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.search-sidebar h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #333;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.filter-section select,
.filter-section input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.filter-section select:focus,
.filter-section input:focus {
    outline: none;
    border-color: #0066cc;
}

.filter-section button {
    width: 100%;
    padding: 0.6rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.filter-section button:hover {
    background: #0052a3;
}

.filter-section button.reset {
    background: #666;
    margin-top: 0.25rem;
}

.filter-section button.reset:hover {
    background: #444;
}

.search-main {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.search-header {
    margin: 0 0 1.5rem;
    padding: 0;
}

.search-header h2 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    padding: 0;
    color: #222;
}

.search-header .search-meta {
    color: #666;
    font-size: 0.95rem;
}

.search-input-container {
    margin-bottom: 1.5rem;
    position: relative;
}

.search-input-container input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.search-input-container input:focus {
    outline: none;
    border-color: #0066cc;
}

.search-input-container button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem 1.25rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.search-input-container button:hover {
    background: #0052a3;
}

.search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-result-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s ease;
}

.search-result-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.search-result-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.search-result-card h3 a {
    color: #0066cc;
    text-decoration: none;
}

.search-result-card h3 a:hover {
    text-decoration: underline;
}

.search-result-summary {
    color: #444;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.search-result-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: #777;
    font-size: 0.85rem;
}

.search-result-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.search-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.search-empty h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.search-pagination button,
.search-pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.search-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.search-pagination button:not(:disabled):hover,
.search-pagination a:hover {
    background: #f5f5f5;
    border-color: #999;
}

.search-pagination .current-page {
    padding: 0.5rem 0.75rem;
    color: #666;
    font-size: 0.9rem;
}

.search-vip-notice {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.search-vip-notice h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #495057;
    font-weight: 600;
}

.search-vip-notice p {
    font-size: 1rem;
    margin: 0 0 1.5rem;
    color: #6c757d;
    line-height: 1.6;
}

.search-vip-notice button {
    padding: 0.75rem 2rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-vip-notice button:hover {
    background: #0052a3;
}

.search-highlight {
    background: #fff3cd;
    padding: 0 2px;
    border-radius: 2px;
}

@media (max-width: 968px) {
    .search-page-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .search-sidebar {
        position: static;
        order: 2;
        background: #f9f9f9;
        padding: 1rem;
        border-radius: 8px;
    }

    .search-main {
        order: 1;
    }

    .search-header h2 {
        font-size: 1.25rem;
    }

    .search-result-card {
        padding: 1rem;
    }

    .search-result-card h3 {
        font-size: 1rem;
    }

    .filter-section {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .search-input-container input {
        padding-right: 1rem;
        padding-bottom: 0.75rem;
    }

    .search-input-container button {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 0.5rem;
    }

    .search-pagination {
        flex-wrap: wrap;
    }

    .search-result-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
