.doctors{display:flex;flex-wrap:wrap;justify-content:center;gap:80px;}
.doctor{text-align:center; width: 200px;}
.doctor a{text-decoration:none; display: flex; flex-direction: column;    height: 100%;}
.doctor figure{margin:0 0 15px;}
.doctor figure img{width:150px;height:150px;transition:box-shadow .25s ease-out;border-radius:50%;    object-fit: cover;}
.doctor a:hover img{box-shadow:4px 5px 17px 1px rgba(0, 0, 0, .2);}
.doctor a:hover h4 {text-decoration:underline;}
.doctor h4{font-size:18px;font-family:"museo-slab", serif;font-weight:bold;margin-bottom:10px;}
.doctor h4 span{font-weight:500;}
.doctor p{font-size:14px;color:var(--Brand-Gray); margin-top: auto;}

@media (max-width: 600px) {
	.doctors {  gap: 40px;}
}