/*

    Theme Name:		 Brikk Child
    Theme URI:		 https://themeforest.net/item/brikk-directory-listing-wordpress-theme/29105129
    Description:	 Brikk Child is a child theme of Brikk
    Author:			 Utillz
    Author URI:		 https://themeforest.net/user/utillz
    Template:		 brikk
    Version:		 1.7.0.2
    Text Domain:	 brikk-child

*/

/*
 * add your custom styles here
 *
 */




 .listing-container{
    display: flex;  
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
 }

 .listing-container-max-width{
    width: 100%;
    max-width: 1200px;
 }  

 /* Two Column Layout */
.brk-explore-columns {
    display: flex;
    gap: 30px;
    margin: 20px auto;
}

.brk-explore-main {
    flex: 66%;
}

.brk-explore-map {
    flex: 33%;
}

/* Title and Subtitle */
.brk-explore-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.brk-explore-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

/* Filter Buttons */
.brk-filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.brk-filter-btn {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.brk-filter-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

/* Map Container */
.brk--map {
    height: 100%;
    min-height: 400px;
    max-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.brk--map .brk--inner {
    height: 100%;
    max-height: 400px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brk-explore-columns {
        flex-direction: column;
    }

    .brk-explore-main,
    .brk-explore-map {
        flex: 100%;
        width: 100%;
    }

    .brk--map {
        min-height: 300px;
    }

    .brk-explore-title {
        font-size: 24px;
    }

    .brk-filter-buttons {
        gap: 8px;
    }

    .brk-filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}