/* Property Banner Fix - Ensures banner images display correctly */
.property-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: flex-end;
    padding: 40px 0;
    margin-bottom: 60px; /* Add spacing between banner and content below */
}

/* Ensure the container inside the banner is positioned correctly */
.property-banner .container {
    position: relative;
    z-index: 2;
}

/* Style the buttons inside the banner */
.property-banner .btn {
    margin-right: 15px;
    margin-bottom: 0;
}

/* Property tags (SOLD, OPEN HOUSE) */
.property-banner .property-tag {
    display: inline-block;
    margin-left: 15px;
    padding: 10px 20px;
}

/* Mobile responsive adjustments moved to mobile-consolidated.css */
/* All property banner mobile styles (max-width: 991px, 767px, and tablet) */
/* have been consolidated in mobile-consolidated.css for better organization */

/* Ensure proper spacing for the community-cols section that follows the banner */
.community-cols.pdetails {
    padding-top: 40px !important; /* Ensure consistent top padding */
}

/* Fix badges alignment to display horizontally */
.badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badges span img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

/* Property Details Section - Full width section for building info */
.property-details-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-top: 60px;
}

/* Related Properties Section - Match property details background */
.properties-section.pdetails {
    background-color: #f8f9fa;
}

.property-details-section .table {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.property-details-section p.mb-3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}