.project-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.project-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.project-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.15) 45%,
        rgba(0,0,0,0.55) 100%
    );
    pointer-events: none;
}

.project-hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, calc(100% - 40px));
    text-align: center;
    color: #fff;
}

.project-hero-content .eyebrow {
    margin-bottom: 12px;
    color: #fff;
}

.project-hero-content h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.05;
}

.project-hero-lead {
    max-width: 950px;
    margin: 0 auto;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.5;
    color: #fff;
}

.project-test-images {
    display: grid;
    gap: 32px;
    max-width: 960px;
    margin: 48px auto 0;
}

.project-test-image {
    margin: 0;
    text-align: center;
}

.project-test-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.project-test-image figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.75;
}