/* Search Bar */
.cws-header-search {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 15px auto;
    display: flex;
    height: 50px;
    border: 2px solid #d2d2d2;
    border-radius: 6px;
    overflow: hidden;
}

.cws-input {
    flex: 1;
    border: none;
    padding: 0 15px;
    font-size: 15px;
}

.cws-search-btn {
    width: 55px;
    background: #ff6a00;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cws-search-btn:hover {
    background: #e55c00;
}

.cws-search-btn .dashicons {
    color: #fff;
    font-size: 22px;
}


/* Result Grid */
.cws-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cws-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
    text-align: center;
    transition: 0.2s ease;
}

.cws-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.cws-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.cws-card-title {
    font-size: 15px;
    font-weight: 600;
}

.cws-card-desc {
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    .cws-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cws-grid {
        grid-template-columns: 1fr;
    }
}
