.projects-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.project-card {
    background: var(--surface0);
    border: 1px solid var(--surface1);
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-links a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
}

.project-description {
    color: var(--subtext1);
    font-size: 0.95rem;
}

.project-tech {
    font-size: 0.85rem;
    color: var(--subtext0);
}

.project-links a {
    margin-right: 1rem;
    text-decoration: none;
    color: var(--blue);
    font-weight: 500;
    font-size: 0.9rem;
}

.project-links a:hover {
    text-decoration: underline;
}
