/* Developer Box Container */
.houzez-developer-box {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    align-items: center;
}

/* Image Section */
.developer-image {
    flex: 0 0 200px;
}
.developer-image img {
    border-radius: 4px;
    width: 100%;
    height: auto;
    display: block;
}
.developer-image-placeholder {
    width: 200px;
    height: 150px;
    background: #f5f5f5;
    border-radius: 4px;
}

/* Content Section */
.developer-content {
    flex: 1;
}
.dev-byline {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.developer-name {
    font-size: 28px;
    color: #222;
    margin: 0 0 15px;
    line-height: 1.2;
    font-weight: 700;
}
.developer-description {
    margin-bottom: 20px;
    color: #000;
    line-height: 1.6;
}

/* Featured Projects */
.developer-featured-projects {
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.developer-featured-projects a {
    text-decoration: none;
    transition: color 0.3s;
}
.developer-featured-projects a:hover {
    color: var(--houzez-primary-dark);
    text-decoration: underline;
}
.project-separator {
    color: #000;
    margin: 0 5px;
    font-weight: normal;
}

/* Lightbox Styles */
.developer-image-lightbox {
    display: block;
    cursor: zoom-in;
    transition: all 0.3s ease;
}
.developer-image-lightbox:hover {
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .houzez-developer-box {
        flex-direction: column;
        gap: 20px;
    }
    .developer-image {
        width: 100%;
        margin-bottom: 20px;
    }
}