.article-search-box {
    margin-bottom: 22px;
}
.search-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
    .search-wrapper i {
        padding: 0 14px;
        color: #777;
        font-size: 18px;
    }
    .search-wrapper input {
        flex: 1;
        border: none;
        padding: 14px 10px;
        font-size: 15px;
        outline: none;
    }
    .search-wrapper button {
        background: #111;
        color: white;
        border: none;
        padding: 14px 18px;
        font-weight: 700;
        cursor: pointer;
        transition: .2s;
    }
        .search-wrapper button:hover {
            background: #333;
        }
.search-page {
    padding: 40px 0;
    max-width: 1100px;
    margin: auto;
}
.article-grid {
    display: grid;
    grid-template-columns: repeat( 2, 1fr );
    gap: 22px;
    margin-top: 30px;
}
.article-card {
    background: white;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    text-decoration: none;
    color: #111;
    transition: .25s;
    display: block;
}
    .article-card:hover {
        transform: translateY(-4px);
    }
    .article-card h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .article-card p {
        color: #666;
    }
.article-more {
    font-weight: 700;
    margin-top: 16px;
}
.empty-box {
    padding: 50px;
    text-align: center;
    background: #fff;
    border-radius: 18px;
    margin-top: 30px;
}
.pagination-box {
    margin-top: 40px;
}

@media(max-width:768px) {
    .search-wrapper {
        flex-wrap: wrap;
    }
        .search-wrapper button {
            width: 100%;
        }
    .article-grid {
        grid-template-columns: 1fr;
    }
}
