.bb-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.bb-service-card {
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.bb-service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.bb-service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.bb-service-content {
    padding: 14px;
}

/* ROW 1 */
.bb-service-author-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 6px;
}

.bb-service-author {
    font-size: 14px;
}

.bb-service-price {
    color: #0073aa;
    font-weight: 700;
}

/* ROW 2 */
.bb-service-category {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

/* ROW 3 */
.bb-service-excerpt {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* ROW 4 */
.bb-service-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bb-skill-tag {
    background: #f1f1f1;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
}


.bb-pagination {
    margin-top: 30px;
    text-align: center;
}

.bb-filter-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: nowrap;
}

.bb-filter-inline select,
.bb-filter-inline input {
    padding: 8px 10px;
    min-width: 140px;
}

.bb-filter-btn {
    padding: 9px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
}

.bb-filter-btn:hover {
    background: #005f8d;
}

/* Responsive fallback */
@media (max-width: 768px) {
    .bb-filter-inline {
        flex-wrap: wrap;
    }
}