/* Georeferencing Project Page Specific Styles */

.project-container {
    max-width: 900px;
}

.page-hero {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.page-title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.page-hook {
    font-family: var(--sans);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray);
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.page-meta {
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
}

.page-meta span:not(:last-child)::after {
    content: "·";
    margin: 0 0.75rem;
    color: var(--light-gray);
}

/* Section Structure */
.project-section {
    padding-top: 3.5rem;
    margin-bottom: 1rem;
}

.section-label {
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.75rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--black);
}

.project-section h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.project-section p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--black);
    margin-bottom: 1.25rem;
    max-width: 720px;
}

.project-section p:last-child {
    margin-bottom: 0;
}

/* Dash bullet lists, matching CV page convention */
.dash-list {
    list-style: none;
    margin: 1.25rem 0;
}

.dash-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    line-height: 1.7;
    max-width: 700px;
}

.dash-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--black);
}

.dash-list li:last-child {
    margin-bottom: 0;
}

/* Stat row */
.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 1.75rem 0;
}

.stat {
    min-width: 140px;
}

.stat-value {
    font-family: var(--sans);
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Tag pills for tools/tech */
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.tag-pill {
    font-family: var(--mono);
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--black);
    letter-spacing: 0.02em;
}

/* Callout box, matching chapter page convention */
.callout {
    background-color: #f5f5f5;
    border-left: 4px solid var(--black);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.callout p {
    margin-bottom: 0;
    font-family: var(--mono);
    font-size: 0.9rem;
    color: var(--gray);
}

/* Collaborations / recognition list */
.plain-list {
    list-style: none;
    margin: 1.25rem 0;
}

.plain-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--light-gray);
    line-height: 1.6;
}

.plain-list li:last-child {
    border-bottom: none;
}

/* Back link */
.back-nav {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.back-link {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.back-link:hover {
    color: var(--black);
}

@media (max-width: 768px) {
    .project-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
