/* Case Study Layout */
.project-case-study {
    padding: var(--space-xl) 5%;
    max-width: 900px;
    margin: 0 auto;
}

.project-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.project-category {
    color: var(--gray-mid);
    border: 1px solid var(--gray-dark);
    padding: 0.2rem 0.8rem;
    border-radius: var(--border-radius-pill);
}

.project-link {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.project-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
}

.project-focus {
    font-size: 1.25rem;
    color: var(--gray-light);
}

.project-hero-image.large {
    min-height: 500px;
    margin-bottom: var(--space-xxl);
    border-radius: 12px;
    overflow: hidden;
}

.project-metrics {
    display: flex;
    justify-content: space-around;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
    margin-bottom: var(--space-xl);
}

.project-section {
    margin-bottom: var(--space-xl);
}

.project-section h2 {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-dark);
    padding-bottom: var(--space-sm);
}

.project-section p {
    color: var(--gray-light);
    font-size: 1.1rem;
}

/* Feature & Tech Lists */
.feature-list, .tech-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li, .tech-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-light);
}

.feature-list li::before, .tech-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--white);
}

.tech-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-list li {
    padding-left: 0;
    background-color: var(--off-black);
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--gray-dark);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

.tech-list li::before {
    display: none;
}

/* Gallery */
.gallery-section {
    margin-top: var(--space-xxl);
}

.project-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.gallery-image {
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
}
