.project-page {
    padding-top: 120px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--spacing-unit);
    padding-right: var(--spacing-unit);
}

.project-content {
    max-width: 1000px;
    margin: 0 auto;
}

.project-header {
    margin-bottom: 4rem;
}

.project-header h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    gap: 2rem;
    color: #666;
}

.project-meta span {
    position: relative;
}

.project-meta span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -1.2rem;
    color: #999;
}

.project-intro {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 4rem;
    max-width: 800px;
}

.project-gallery {
    margin-bottom: 4rem;
}

.project-image {
    margin-bottom: 2rem;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-image figcaption {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.project-details {
    max-width: 800px;
    margin-bottom: 4rem;
}

.project-details h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.project-details p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-navigation {
    border-top: 1px solid var(--accent-color);
    padding-top: 2rem;
    margin-top: 4rem;
}

.next-project {
    display: block;
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

.next-project span {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.next-project h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.next-project:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .project-header h1 {
        font-size: 2.5rem;
    }

    .project-intro {
        font-size: 1.2rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .project-meta span::after {
        display: none;
    }
} 