.projects-container {
    max-width: var(--container-max-width);
    margin: 40px auto;
    padding: 0 24px;
}

.projects-header {
    margin-bottom: 32px;
}

.projects-header h1 {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.project-item {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.project-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.project-header {
    margin-bottom: 12px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.project-date {
    font-size: 14px;
    color: var(--text-light);
}

.project-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--background-color);
    border-radius: 8px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-label {
    color: var(--text-light);
    font-size: 15px;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.empty-state {
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.empty-icon {
    width: 64px;
    height: 64px;
    background: var(--background-color);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    color: var(--text-light);
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .project-stats {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .stat-item {
        justify-content: space-between;
    }
}
