/* MODERN PROJECT CARD v2 */


.project-card-clean {


    background: white;


    border-radius: 16px;


    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);


    /* Yumuşak gölge */


    cursor: pointer;


    transition: all 0.3s ease;


    border: 1px solid rgba(0, 0, 0, 0.04);


    display: flex;


    flex-direction: column;


    padding: 24px;


    height: 100%;


    min-height: 240px;


    position: relative;


    overflow: hidden;


    background: linear-gradient(to bottom right, #ffffff, #fdfdfd);


}





.project-card-clean:hover {


    transform: translateY(-8px);


    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);


    border-color: rgba(0, 0, 0, 0.1);


}





/* Header: Logo Left, Tag Right */


.card-clean-top {


    display: flex;


    justify-content: space-between;


    align-items: center;


    margin-bottom: 24px;


}





/* Elegant Circular Logo */


.card-logo-circle {


    width: 56px;


    height: 56px;


    border-radius: 50%;


    color: white;


    display: flex;


    align-items: center;


    justify-content: center;


    font-weight: 800;


    font-size: 1.25rem;


    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);


    flex-shrink: 0;


    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);


}





/* Pill Badge for Tags */


.card-custom-tag {


    font-size: 0.7rem;


    font-weight: 700;


    color: white;


    padding: 6px 14px;


    border-radius: 100px;


    text-transform: uppercase;


    letter-spacing: 0.8px;


    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);


    height: fit-content;


}





/* Content Area */


.card-clean-body {


    flex: 1;


    display: flex;


    flex-direction: column;


    justify-content: space-between;


}





/* Developer Name */


.card-developer-label {


    font-size: 0.75rem;


    color: #94a3b8;


    /* Cool Gray */


    font-weight: 700;


    text-transform: uppercase;


    letter-spacing: 1.2px;


    margin-bottom: 6px;


}





/* Title */


.card-title-clean {


    margin: 0 0 12px 0;


    font-size: 1.35rem;


    /* Larger title */


    font-weight: 800;


    color: #1e293b;


    /* Slate Dark */


    line-height: 1.25;


    letter-spacing: -0.5px;


}





/* Meta Info (Location & Price) */


.card-meta-row {


    margin-top: auto;


    /* Push to bottom */


    padding-top: 20px;


    border-top: 1px solid #f1f5f9;


    display: flex;


    flex-direction: column;


    gap: 8px;


}





.card-location-clean {


    font-size: 0.9rem;


    color: #64748b;


    display: flex;


    align-items: center;


    gap: 8px;


    font-weight: 500;


}





.card-location-clean i {


    color: #ef4444;


    /* Red accent for pin */


}





.card-price-clean {


    font-size: 1.5rem;


    font-weight: 800;


    color: #0f172a;


    /* Darkest Slate */


    letter-spacing: -0.5px;


    margin-top: 4px;


    display: flex;


    align-items: baseline;


    gap: 4px;


}