/* Main Grid Container */
.pbc-top-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

/* Individual Cards */
.pbc-card {
    background: #ededef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none !important;
    width: 100%;
    max-width: 300px;
    flex: 1 1 240px;
}

.pbc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Card Image */
.pbc-card img {
    width: 100%;
    height: 220px !important;
    object-fit: cover;
    display: block;
}

/* Card Content */
.pbc-card-content {
    background: #ededef;
    padding: 18px 38px;
    text-align: center;
}

.pbc-card-content h3 {
    font-size: 25px;
    margin: 0;
    color: #017dc0;
    font-weight: 600;
    line-height: 1.2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pbc-top-category-list {
        gap: 15px;
    }
    
    .pbc-card {
        flex: 1 1 200px;
    }
    
    .pbc-card-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pbc-top-category-list {
        gap: 10px;
    }
    
    .pbc-card {
        flex: 1 1 150px;
    }
    
    .pbc-card img {
        height: 160px;
    }
}