.project-detail {
    min-height: 100vh;
    padding-top: calc(150px + 2.5rem);
    padding-bottom: 6rem;
}

/* ── Back link ───────────────────────────────── */

.project-back {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warm-grey);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

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

/* ── Card ────────────────────────────────────── */

.project-card-detail {
    background-color: var(--near-white);
    border: 1px solid var(--primary);
    border-radius: 4px;
    overflow: hidden;
    max-width: 610px;
}

/* ── Hero image / icon ───────────────────────── */

.project-hero__banner {
    height: 280px;
    width: 100%;
    display: block;
    flex-shrink: 0;
}

.project-hero__banner--img {
    height: auto;
}

.project-hero__icon {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    flex-shrink: 0;
}

.project-hero__icon img {
    width: 192px;
    height: 192px;
    object-fit: contain;
}

/* ── Body ────────────────────────────────────── */

.project-card-detail__body {
    padding: 1.75rem 2rem 2rem;
}

.project-title {
    font-family: 'Oliver', serif;
    font-weight: 300;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--near-black);
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.project-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    margin-bottom: 1.75rem;
}

.project-link {
    display: inline-block;
    width: fit-content;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warm-grey);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.project-desc {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.project-desc p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--near-black);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
