/* Start custom CSS for shortcode, class: .elementor-element-443bd91 *//* Business Listing Grid */
.business-listing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

/* Business Card Styling */
.business-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image Styling - Maintain Fixed Height & Width */
.business-image img {
    width: 100%;
    height: 180px; /* Set a fixed height */
    object-fit: cover; /* Crop & maintain aspect ratio */
    border-bottom: 3px solid #007bff;
}

/* Business Title */
.business-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
    padding: 10px 15px;
    min-height: 60px; /* Ensure uniform title height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Business Meta */
.business-meta {
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 10px;
    flex-grow: 1;
}

/* Tags */
.business-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.business-tags .tag {
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #444;
    text-decoration: none;
}

.business-tags .category { background: #ff5722; color: white; }
.business-tags .thana { background: #007bff; color: white; }
.business-tags .address { background: #4caf50; color: white; }

/* View Details Button */
.business-button {
    display: block;
    background: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin: 15px;
    transition: background 0.3s;
}

.business-button:hover {
    background: #0056b3;
}

/* Load More Button */
#loadMoreBtn {
    background: #28a745;
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#loadMoreBtn:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-listing-container {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }/* End custom CSS */