  

.clb_staff_collection-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr 1fr;
     gap: 20px;
}

.clb-single-staff-card {
     transition: all ease-in-out .25s;
    position: relative;
    text-align: center;
}

.clb-single-staff-card .single-staff-body {
     position: absolute;
    bottom: 12px;
    text-align: center;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    color: var(--white);
    z-index: 100;
}

.clb-single-staff-card .clb-single-staff-name {
     font-size: 15px;
     font-weight: 700;
}

.clb-single-staff-card:hover .clb-single-staff-name {
     display: none;
}

.clb-single-staff-card .clb-single-staff-title {
     display: none;
     font-size: 15px;
     line-height: 1.2;
}

.clb-single-staff-card:hover .clb-single-staff-title {
     display: block;
     margin-top: -2px;
}

.clb-single-staff-card .single-staff-img-wrapper img {
	position: relative;
}

.clb-single-staff-card:before {
	transition: all ease-in-out .25s;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(to bottom, transparent 75%, rgba(0,0,0,.4) 100%);
	z-index: 10;
}

.clb-single-staff-card:hover:before {
	transition: all ease-in-out .25s;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background:
		linear-gradient(to right, rgba(255,255,255,.2), rgba(255,255,255,.2)),
		linear-gradient(to right,  var(--orange),  var(--orange));
	mix-blend-mode: multiply;
	z-index: 30;
}




.single-staff-modal .modal-body {
     display: grid;
     grid-template-columns: 1fr 3fr;
     gap: 40px;
}

.single-staff-modal .clb-single-staff-title {
     font-weight: 700;
     font-size: 16px;
     margin-left: 20px;
     margin-top: -12px;
     margin-bottom: 0;
}

.single-staff-modal .clb-single-staff-email {
     font-size: 16px;
     margin-top: 12px;
}



@media screen and (max-width: 1580px) and (min-width: 1080px) {

     .clb_postcard-wrapper {
          max-width: 1180px;
     }

}
