.our-team{
    padding:45px 0;
}
.employee-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    display: grid;
    grid-template-columns: auto auto auto auto;
}
.employee-cards .employee-card {
    padding: 20px;
    border-radius: 15px;
    background-image: linear-gradient(to top, #ffffff 3%, #F8F7F4 13%);
    position: relative;
}
.employee-cards .employee-card:hover .clickable{background:#f8f7f4;}
.employee-cards .employee-card .featured-image {
    z-index: 2;
    position: relative;
}
.employee-cards .employee-card h2,
.employee-cards .employee-card span,
.employee-cards .employee-card .social-media{z-index: 2;position: relative;}
.employee-cards .employee-bio {
    padding: 15px 6px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.employee-cards .employee-card h2 {
    color: #262626;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    margin: 0;
}
.employee-cards .employee-card span {
    color: #262626;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
}
.employee-cards .featured-image img {
    border-bottom-right-radius: 15px;
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.employee-cards .clickable {
    width: 100%;
    height: 100%;
    display: inline-block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
    border-radius: 15px;
}
@media screen and (min-width:768px) and (max-width:991px){
    .employee-cards {
        gap: 20px;
        grid-template-columns: auto auto auto;
    }

}

@media screen and (max-width:767px){
	.employee-cards .featured-image img {
    height: auto !important;
}
    .employee-cards {
        gap: 13px;        
		grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}