/* ==================== */
/* Projects Section - Clean Professional Style */
/* ==================== */

.projects-source-container {
    display: none;
}

/* Ensure original list is hidden if it exists as .projects-list */
.projects-list {
    display: none;
}

.project-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 25px;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.project-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.project-type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    padding-top: 5px;
}

.project-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ccd6f6;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-details h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.project-details h3:hover {
    color: #00bfff;
}

.project-details h3 svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.2s;
}

.project-item:hover .project-details h3 svg {
    opacity: 1;
}

.project-details p {
    color: #8892b0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    font-size: 12px;
    color: #00bfff;
    background: rgba(0, 191, 255, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* Responsive */
@media (max-width: 640px) {
    .project-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .project-type {
        padding-top: 0;
    }
}
