/* ===================================
   Search Page
=================================== */

.search-page {

    padding: 60px 0 80px;
}

/* Header */

.search-header {

    text-align: center;

    margin-bottom: 50px;
}

.search-header h1 {

    font-size: 38px;

    margin-bottom: 10px;

    color: #222;
}

.search-count {

    color: #666;
}

/* Results */

.search-results {

    display: grid;

    gap: 25px;
}

.search-card {

    display: flex;

    gap: 25px;

    padding: 25px;

    background: #fff;

    border: 1px solid #e6eef5;

    border-radius: 18px;

    transition: .3s;
}

.search-card:hover {

    transform: translateY(-4px);

    box-shadow:
    0 12px 30px rgba(0,0,0,.06);
}

/* Thumbnail */

.search-thumb {

    width: 220px;

    flex-shrink: 0;
}

.search-thumb img {

    width: 100%;

    border-radius: 12px;
}

/* Content */

.search-content {

    flex: 1;
}

.search-content h2 {

    margin: 10px 0 15px;

    font-size: 24px;
}

.search-content h2 a {

    color: #222;
}

.search-content h2 a:hover {

    color: #3897e6;
}

/* Meta */

.search-meta {

    display: flex;

    gap: 12px;

    align-items: center;

    flex-wrap: wrap;
}

.type-badge {

    font-size: 13px;

    padding: 5px 10px;

    border-radius: 20px;

    font-weight: 600;
}

.broker {

    background: #e9f5ff;

    color: #3897e6;
}

.article {

    background: #eef7ee;

    color: #3c9b46;
}

.page {

    background: #f4f4f4;

    color: #666;
}

.search-date {

    color: #888;

    font-size: 14px;
}

/* Excerpt */

.search-excerpt {

    color: #666;

    line-height: 1.8;

    margin-bottom: 18px;
}

/* Button */

.search-btn {

    display: inline-flex;

    align-items: center;

    padding: 10px 18px;

    background: #3897e6;

    color: #fff;

    border-radius: 10px;

    font-weight: 600;
}

.search-btn:hover {

    background: #267fcb;
}

/* Empty */

.search-empty {

    text-align: center;

    padding: 60px 20px;
}

.search-empty h2 {

    margin-bottom: 15px;
}

.empty-actions {

    margin: 25px 0;

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.popular-links {

    max-width: 500px;

    margin: auto;
}

.popular-links ul {

    list-style: none;

    padding: 0;
}

.popular-links li {

    margin-bottom: 10px;
}

.popular-links a {

    color: #3897e6;
}

/* Pagination */

.pagination-wrap {

    margin-top: 50px;

    display: flex;

    justify-content: center;
}

/* Mobile */

@media(max-width:768px){

    .search-card {

        flex-direction: column;
    }

    .search-thumb {

        width: 100%;
    }

    .search-header h1 {

        font-size: 30px;
    }

}