.project-page{
    padding: 34px 0 18px;
}

.project-hero{
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 430px);
    gap: 34px;
    align-items: start;
}

.project-hero__content{
    padding: 30px 32px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.project-hero__eyebrow{
    display: inline-flex;
    align-items: center;
    padding: .45rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.82);
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.project-hero__title{
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: .2px;
}

.project-hero__lead{
    margin: 0 0 18px;
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(255,255,255,.96);
}

.project-hero__text p{
    margin: 0 0 16px;
    line-height: 1.85;
    color: rgba(255,255,255,.84);
    font-size: 1.02rem;
}

.project-hero__text p:last-child{
    margin-bottom: 0;
}

.project-hero__closing{
    margin-top: 10px !important;
    font-size: 1.08rem;
    color: rgba(255,255,255,.98) !important;
}

.project-hero__media{
    display: flex;
    justify-content: flex-end;
    position: sticky;
    top: calc(var(--header-h, 84px) + 24px);
}

.project-photoCard{
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    box-shadow:
            0 24px 60px rgba(0,0,0,.28),
            0 0 0 1px rgba(255,255,255,.03) inset;
}

.project-photoCard::after{
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 22%;
    background: linear-gradient(to top, rgba(8,10,28,.42), rgba(8,10,28,0));
    pointer-events: none;
}

.project-photoCard__img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 1100px){
    .project-hero{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-hero__media{
        position: static;
        justify-content: center;
    }

    .project-photoCard{
        max-width: 380px;
    }
}

@media (max-width: 720px){
    .project-page{
        padding-top: 22px;
    }

    .project-hero__content{
        padding: 22px 18px;
        border-radius: 22px;
    }

    .project-hero__title{
        margin-bottom: 14px;
    }

    .project-hero__lead{
        font-size: 1.03rem;
        line-height: 1.7;
    }

    .project-hero__text p{
        font-size: .98rem;
        line-height: 1.75;
    }
}