.project-categories-list {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
.project-cat-container {
    width: 33.33%;
    padding-bottom: 2rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.project-cat-header {
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.project-cat-thumbnail {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
.project-cat-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
}

.project-cat-container:hover img {
    transform: scale(1.1);
}
.project-cat-read-more {
    background-color: rgba(55,53,56,.72);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.project-cat-container:hover .project-cat-read-more {
    opacity: 1;
}

/* Staff Profiles */

.wp-block[data-title="Staff Profiles"] {
    max-width: 100%;
}
.staff-container.custom-block {
	display: flex;
    flex-wrap: wrap;
    padding-top: 3rem;
}
.staff-container .staff-profile {
    /* width: 373px;
    margin-right: 4rem; */
    width: calc(25% - 1.875rem);
    margin-right: 2.5rem;
    padding-bottom: 6rem;
}
.staff-container .staff-profile:nth-child(4n) {
    margin-right: 0;
}
/* .staff-container .staff-details {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
} */
.staff-container .staff-profile h2 {
	color: var(--primary-accent);
	font-family: var(--primary-font);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	margin: 0;
	padding-top: 1.5rem;
	text-transform: uppercase;
}

.staff-container .staff-profile h3 {
	color: var(--dark-grey);
	font-size: 1.125rem;
	font-style: italic;
	font-weight: 300;
	margin: 0;
}
.staff-container .staff-profile h4 {
	color: var(--dark-grey);
	font-size: 0.875rem;
	font-style: italic;
	font-weight: 300;
    margin: 0;
    /* padding-bottom: 1.5rem; */
    min-height: 3rem;
}
.staff-container .staff-bio {
    border-top: 1px solid #d1d1d1;
    padding-top: 1rem;
    max-height: 320px;
    overflow: hidden;
    position: relative;
}
.staff-container .staff-bio p {
	font-size: 1rem;
}

.staff-container .staff-bio .more { 
    position: absolute; 
    bottom: 0; 
    left: 0;
    width: 100%; 
    text-align: center; 
    margin: 0;
    padding: 2rem 0 0 0; 
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,1));
}
.staff-container .staff-bio .more a {
    color: var(--dark-grey);
}
.staff-container .staff-bio .more a:hover {
    color: var(--dark);
}

@media only screen and (max-width: 1366px) {
    .staff-container .staff-profile {
        width: calc(50% - 1.25rem);
    }
    .staff-container .staff-profile:nth-child(2n) {
        margin-right: 0;
    }
}
@media only screen and (max-width: 1100px) {
    .project-cat-container {
		width: 50%;
	}
}
@media only screen and (max-width: 768px) {
    .project-categories-list {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

}

@media only screen and (max-width: 480px) {
    .project-cat-container {
		width: 100%;
    }

    .staff-container .staff-profile {
		width: 100%;
		margin-right: 0;
    }
    .staff-container .staff-profile h4 {
        min-height: auto;
        padding-bottom: 1rem;
    }
}    