.project-hero {
    position: relative;
    min-height: 500px;
    height: auto;
    overflow: hidden;
    background: linear-gradient(101deg, rgba(1, 27, 43, 0.8) 10%, rgba(0, 130, 100, 0.65) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-hero-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.project-hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.project-hero-content-container {
    height: 100%;
    padding: 2rem 0;
    color: white;
}

.project-hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.project-hero-title {
    font-size: 1.75rem;
    font-weight: bold;
    padding-left: .5rem;
    border-left: 6px solid #1de883;
}

.project-hero-meta {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.project-hero-meta-vr {
    height: 100%;
    width: 2px;
    background-color: var(--cts-lightgreen);
}

.project-hero-summary {
    flex-basis: auto;
    font-size: 1.125rem;
}

@media screen and (min-width: 576px) {
    .project-hero {
        min-height: 600px;
    }

    .project-hero-content {
        padding: 2.5rem;
    }

    .project-hero-title {
        font-size: 2rem;
    }

    .project-hero-summary {
        font-size: 1.4rem;
    }
}

@media screen and (min-width: 992px) {
    .project-hero-content-container {
        padding: 3rem 0;
    }

    .project-hero-content {
        width: 66%;
    }

    .project-hero-title {
        font-size: 2.5rem;
    }
}

.project-content {
    margin-top: 5rem;
}

.project-content .wp-block-heading,
.project-h2 {
    font-weight: bold;
    color: var(--mt-darkblue);
    margin-bottom: 1rem;
}

.project-content :where(h1, h2).wp-block-heading {
    padding-left: .5rem;
    border-left: 4px solid #1de883;
}

.project-content :where(p, ul, ol) {
    line-height: 2em;
    margin-bottom: 2rem;
}

.project-content p a {
    color: #282828;
    text-decoration-thickness: 2px;
    text-decoration: underline;
}

.project-content p a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #43C9F7;
}

.project-content ul {
    margin-bottom: 2rem;
}

.project-content .wp-block-image {
    margin-bottom: 2rem;
}

.project-content .wp-block-columns {
    margin-bottom: 4rem;
}

@media (max-width: 575.98px) {
    .project-content .wp-block-columns {
        margin-bottom: 3rem;
        gap: 1rem;
    }
}

.project-awards {
    padding-top: 1em;
    padding-bottom: 1em;
}

.project-awards-list-item>a {
    color: white;
    text-underline-offset: .25em;
}

.more-projects-bg {
    background-color: #f2f2f2;
}

.project-more-projects {
    padding-top: 4rem;
    padding-bottom: 4rem;
}