/* Featured tenants Section */
.featured-tenants-section {
    padding: 2rem;
    padding-top: 4rem;
    background: #ffffff !important;
}
.featured-tenants-header {
    margin-bottom: 2rem;
    text-align: center;
    color: #000;
    padding: 20px 30px;
}

.featured-tenants-header-content .heading-sm{
    margin-bottom: 0;
    width: 100%;
}
.featured-tenants-header-content {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.featured-tenants-header-line {
    flex-grow: 1;
    height: 2px;
    background-color: #000;
}

.tenants-content {
    padding: 0px;
    padding-top: 0;
}

.tenants-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.tenants-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-tenants-grid {
  display: grid;
  gap: 1.5rem;
  padding: 0;
}

/* Exactly 5 columns */
.featured-tenants-grid-six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}


.featured-tenant-item .tenants-item {
    width: 350px !important;
}

.featured-tenant-item {
    width: 100% !important;
    margin: 1rem 0;
}
@media (max-width: 1200px) {
    .featured-tenants-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px,1fr));

        gap: 1rem;
    }

}
@media (max-width: 1024px) {
    .featured-tenants-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px,1fr));

        gap: 1rem;
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    /* .featured-tenants-header {
        text-align: center;
    }
    
    .featured-tenants-header-content {
        flex-direction: column;
        align-items: center;
    } */
    .featured-tenants-section {
        padding-top: calc(56px + 1rem);
    }
    .featured-tenants-header {
        margin-bottom: 1rem;
    }
    .featured-tenants-header-content {
        gap: 2rem;
    }
    .featured-tenants-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
        gap: 1rem;
    }
    .featured-tenant-item .tenants-item {
        width: 200px !important;
    }
}

@media (max-width: 576px) {
    .featured-tenants-section {
        padding: calc(56px + 1rem) 1rem 1rem;
    }
    .featured-tenants-grid {
        gap: 1rem;
    }
}