/* Property Grid Layout */
.uros-property-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default for mobile */
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .uros-property-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet */
    }
}

@media screen and (min-width: 1024px) {
    .uros-property-grid {
        grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns for desktop */
    }
}

/* Property Item */
.uros-property-item {
    border-radius: 8px;
    overflow: hidden;
    background: #0A0A0A;
	padding:25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
	color: #fff;
	border-radius:15px;
}

.uros-property-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Property Image */
.uros-property-image {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
	border-radius:15px;
}

.uros-property-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Property Content */
.uros-property-content {
    padding: 1.5rem 0;
}

.uros-property-title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.uros-property-title a {
    color: #fff;
    text-decoration: none !important;
}

.uros-property-title a:hover {
    color: #FFE512;
}

.uros-property-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.uros-property-address {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.uros-property-price {
    font-size: 1.5rem;
    color: #0073aa;
    margin-bottom: 1rem;
}

/* Property Features */
.uros-property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
	justify-content:space-between;
	border-radius: 10px;
	border: 1px solid rgba(255, 229, 18, 0.25);
	padding:15px;
	margin-bottom:30px;
}
.uros-property-features-inner{
	display: flex;
    align-items: center;
    gap: 1.25rem;
}

.uros-property-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;


}

/* Icons */
.dashicons {
    font-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
}
.uros-property-features span{
	color:#fff;
	
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .uros-property-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0.75rem;
    }

    .uros-property-content {
        padding: 1rem;
    }

    .uros-property-title {
        font-size: 1.1rem;
    }

    .uros-property-price {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .uros-property-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }

    .uros-property-features {
        gap: 0.75rem;
    }
}

/* Slider Styles */
.uros-property-slider {
    padding: 2rem 1rem;
    position: relative;
}

.uros-property-slider .swiper-slide {
    height: auto;
}

.uros-property-slider .uros-property-item {
    height: 100%;
    margin: 0;
}

/* Navigation Buttons */
.uros-property-slider .swiper-button-next,
.uros-property-slider .swiper-button-prev {
    color: #0073aa;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
}

.uros-property-slider .swiper-button-next:after,
.uros-property-slider .swiper-button-prev:after {
    font-size: 1.5rem;
}

/* Pagination */
.uros-property-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #0073aa;
    opacity: 0.5;
}

.uros-property-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .uros-property-slider {
        padding: 1.5rem 0.75rem;
    }
    
    .uros-property-slider .swiper-button-next,
    .uros-property-slider .swiper-button-prev {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .uros-property-slider {
        padding: 1rem 0.5rem;
    }
    
    .uros-property-slider .swiper-button-next,
    .uros-property-slider .swiper-button-prev {
        display: none;
    }
} 