/* Styles for the project listing page */
.project-list {
    margin-top: 2rem;
}

.project-list-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.project-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.project-list-item h2 a {
    text-decoration: none;
    color: var(--text-primary);
}

.project-list-item h2 a:hover {
    text-decoration: underline;
}

.project-list-item .project-list-status {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.project-list-item p {
    margin-top: 0.5rem;
}

/* Styles for individual project pages */
.main-project .project-title {
    margin-bottom: 0.5rem;
}

.main-project .project-status {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

/* Style for the "Back to Projects" link on individual posts */
.back-to-projects {
    display: inline-block;
    margin-top: 2rem;
    text-decoration: none;
    font-weight: bold;
    color: var(--accent); /* A bright link color */
}

.back-to-projects:hover {
    text-decoration: underline;
}