/* ===== CLEAN MODERN PROJECT CARD ===== */
.project-card-clean-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.project-card-clean-link:hover {
    transform: translateY(-4px);
}

.project-card-clean {
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.project-card-clean-link:hover .project-card-clean {
    border-color: #d1d5db;
}

.project-card-clean-image {
    position: relative;
    width: 100%;
    height: 168px;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
}

.project-card-clean-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card-clean-link:hover .project-card-clean-image img {
    transform: scale(1.05);
}

.project-card-clean-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 2.5rem;
}

.project-card-clean-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    justify-content: space-between;
}

.project-card-clean-badge {
    display: inline-block;
    padding: 0;
    background: transparent;
    color: #FF8C42;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    width: fit-content;
    margin-bottom: 4px;
}

.project-card-clean-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.project-card-clean-developer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
}

.project-card-clean-developer .developer-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Info Items - Unified Style with Border Stroke */
.project-card-clean-info-item {
    display: inline-block;
    padding: 3px 8px;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    width: auto;
    max-width: fit-content;
}

.project-card-clean-info-item.project-card-clean-info-price {
    color: #FF8C42;
    font-weight: 600;
}

.project-card-clean-info-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

/* Remove old location and price label styles */
.project-card-clean-location,
.project-card-clean-price-label,
.project-card-clean-stats,
.project-card-clean-price,
.project-card-clean-meta,
.meta-item {
    display: none;
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    .project-card-clean {
        padding: 12px;
        min-height: auto;
    }
    
    .project-card-clean-image {
        height: 150px;
        margin-bottom: 8px;
    }
    
    .project-card-clean-content {
        gap: 6px;
        justify-content: flex-start;
    }
    
    .project-card-clean-badge {
        font-size: 0.7rem;
    }
    
    .project-card-clean-title {
        font-size: 1rem;
    }
    
    .project-card-clean-developer {
        font-size: 0.8rem;
    }
    
    .project-card-clean-info-item {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .project-card-clean-info-row {
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .project-card-clean {
        padding: 10px;
        min-height: auto;
    }
    
    .project-card-clean-image {
        height: 135px;
        margin-bottom: 6px;
    }
    
    .project-card-clean-content {
        gap: 4px;
        justify-content: flex-start;
    }
    
    .project-card-clean-badge {
        font-size: 0.65rem;
    }
    
    .project-card-clean-title {
        font-size: 0.95rem;
    }
    
    .project-card-clean-developer {
        font-size: 0.75rem;
    }
    
    .project-card-clean-info-item {
        font-size: 0.65rem;
        padding: 3px 7px;
    }
    
    .project-card-clean-info-row {
        gap: 4px;
    }
}
