/*
|--------------------------------------------------------------------------
| TechPackHub Client Portal v2
| Project Details
|--------------------------------------------------------------------------
*/

/* Project Wrapper */
.tph-project{
    display:flex;
    flex-direction:column;
    gap:24px;
}

/* Header */
.tph-project-header{
    background:var(--tph-card);
    border:1px solid var(--tph-border);
    border-radius:var(--tph-radius-lg);
    box-shadow:var(--tph-shadow-sm);
    padding:32px;
}

.tph-project-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:24px;
}

.tph-project-meta{
    display:flex;
    gap:16px;
    align-items:center;
    margin-top:12px;
    flex-wrap:wrap;
}

.tph-project-thumbnail{
    width:110px;
    height:110px;
    border-radius:12px;
    overflow:hidden;
    border:1px solid var(--tph-border);
    background:#fff;
}

.tph-project-thumbnail img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.tph-project-progress{
    margin-top:24px;
}

.tph-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.tph-info-item{
    border:1px solid var(--tph-border);
    border-radius:12px;
    padding:18px;
    background:#fff;
}

.tph-info-label{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    color:var(--tph-text-light);
    margin-bottom:8px;
}

.tph-download-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.tph-download-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px solid var(--tph-border);
    border-radius:12px;
    padding:16px 20px;
    background:#fff;
}

.tph-note-card{
    border-left:4px solid var(--tph-primary);
    padding:20px;
    background:#fff;
    border-radius:12px;
    border:1px solid var(--tph-border);
}

.tph-stepper{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-top:16px;
}

.tph-step{
    flex:1;
    text-align:center;
}

.tph-step-circle{
    width:36px;
    height:36px;
    border-radius:50%;
    margin:0 auto 8px;
    background:#dbeafe;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

.tph-step.active .tph-step-circle{
    background:var(--tph-primary);
    color:#fff;
}

.tph-activity-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.tph-activity-item{
    display:flex;
    gap:16px;
    border-bottom:1px solid var(--tph-border);
    padding-bottom:16px;
}

@media(max-width:991px){
    .tph-info-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .tph-project-top{
        flex-direction:column;
    }
    .tph-info-grid{
        grid-template-columns:1fr;
    }
    .tph-download-row{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }
    .tph-stepper{
        flex-direction:column;
    }
}
