/* .single-developer {
    margin-top: 100px;
} */

.single-developer .elementor-section {
    margin-top: 100px;
}

/* Title */
.developer-title {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
    color: #930708;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 5px;
}

.developer-found-year,
.developer-content {
    font-family: 'Switcher', sans-serif;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
}

/* Property CSS */

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 25px;
    /* space between cards */
    margin: 30px 0px;
}

.property-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    font-family: "Switzer", Sans-serif;
    padding: 20px;
    border: 1px solid #2225;
}

.property-media {
    position: relative;
}

.property-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-play:hover {
    background-color: #930708;
}

.property-play img {
    width: 30px;
    height: 30px;
}

img.property-img.wp-post-image {
    border-radius: 20px;
}

.property-media video {
    border-radius: 20px;
}

.property-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #222;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.property-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #222;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.property-content {
    padding: 15px 15px 0px;
}

.property-price {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
    margin-bottom: 20px;
}

.property-name {
    font-size: 14px;
    margin: 4px 0;
    font-weight: 600;
}

.property-name a {
    text-decoration: none;
    color: inherit;
    /* same color as parent */
}

.property-name a:hover {
    color: #930708;
    /* or your brand color */
}

.property-location {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.property-features {
    display: flex;
    justify-content: left;
    font-size: 13px;
    margin-bottom: 20px;
}

.property-features span {
    margin-right: 30px;
}

.property-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.property-actions .btn {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    color: #222;
    background: #f4f4f4;
}

.property-actions img {
    vertical-align: middle;
    margin-right: 5px;
}