/* ============================================================
   PROJECTS LIST PAGE
   ============================================================ */

.projects-page-section {
    padding: 64px 0 96px;
}

.projects-page-header {
    margin-bottom: 52px;
    max-width: 560px;
}

.projects-page-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--ink-primary);
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-top: 6px;
    margin-bottom: 14px;
}

.projects-page-subtitle {
    font-size: var(--text-base);
    color: var(--ink-tertiary);
    line-height: 1.65;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

/* Loading / error state */
.projects-loading,
.projects-error {
    grid-column: 1 / -1;
    padding: 48px 0;
    text-align: center;
    color: var(--ink-tertiary);
    font-size: var(--text-sm);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .projects-page-section {
        padding: 48px 0 64px;
    }

    .projects-page-title {
        font-size: var(--text-2xl);
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
