.employee__inner-header-container {
	max-width: 100%;
	margin-bottom: 40px;
}

.employee__content-pre-heading{
	font-weight: 600;
	letter-spacing: 2.88px;
	text-transform: UPPERCASE;
	margin-bottom: 12px;
}

.employee__section-grid-items-lists{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 32px 56px;
}

.employee__content-featured-image {
	width: 100%;
	height: 342px;
	overflow: hidden;
	border-radius: 4px;
	margin-bottom: 12px;
}

.employee__content-featured-image img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.employee__name {
	margin-bottom: 8px;
}

.employee__content-details-header{
	margin-bottom: 12px;
}

.employee__content-social-info p{
	margin-bottom: 8px;
}
.employee__content-social-info p a{
	text-decoration: none;
}

.employee__content-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.employee__content-social a{
	display: block;
	width: 40px;
	height: 40px;
	display: flex;
	align-items:center;
	justify-content: center;
	border-radius: 100%;
	background-color: var(--green-800);
	color: #fff;
	transition: all 0.3s ease;
}

.employee__content-social a:hover{
	background-color: var(--green-400);
}



@media screen and (min-width: 480px){
	.employee__content-featured-image {
		width: 100%;
		margin-bottom: 24px;
	}
	.employee__section-grid-items-lists{
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
}

@media screen and (min-width: 769px){
	.employee__inner-header-container {
		max-width: 696px;
		margin-bottom: 56px;
	}

	.employee__section-grid-items-lists{
		grid-template-columns: repeat(2, 1fr);
		gap: 56px 32px;
	}
	
	.employee__content-featured-image {
		width: 100%;
		height: 384px;
		margin-bottom: 24px;
	}

	.employee__content-details-header{
		margin-bottom: 24px;
	}

}


@media screen and (min-width: 1025px){
	.employee__section-grid-items-lists{
		grid-template-columns: repeat(3, 1fr);
	}

	.employee__content-featured-image {
		width: 100%;
		height: 384px;
	}
}