.vd-doctors-grid {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 30px;
}
.vd-doctors-grid > div {
    width: calc(33% - 30px);
}
.vd-doctor__card {
  display: flex;
  position: relative;
  gap: 30px;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  padding: 15px 10px;    
  background-size: contain;
  background-position: right 0px center;
  background-blend-mode: overlay;
  background-image: url(https://www.veindoctor.com/wp-content/uploads/2022/11/Vein-Doctor-Logo-watermark.png);
  background-color: rgba(255, 255, 255, 0.9);
  transition: background-color 300ms ease 0ms, background-image 300ms ease 0ms;
  background-size: 50% !important;
  background-repeat:no-repeat
}
.vd-doctor__photo {
  max-width: 110px;
  min-height: 170px;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.vd-doctor__card h3 {
  color: #601DA7;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2em;
}
.vd-doctor__card ul {
  margin-left: 10px;
  list-style-type: none;
  padding: 0 !important;
}
.vd-doctor__card li {
  display: flex;
  color: #404040;
  font-family: 'Roboto';
  font-size: 14px;
  line-height: 1.7em;
}
.vd-doctor__card li::before {
  font-family: "Font Awesome 6 Pro";
  margin-right: 5px;
  color: #8D0087;
}
.vd-doctor__card li:nth-child(1)::before {
  content: '\f2bd';
}
.vd-doctor__card li:nth-child(2)::before {
  content: "\f19c";
}
.vd-doctor__card li:nth-child(3)::before {
  content: "\f3c5";
}
.vd-doctor__card a {
  color: #404040;
  font-family: 'Roboto';
  font-size: 12px;
  text-decoration: underline;
  position: absolute;
  bottom: 15px;
}

/* Card animation */
.vd-doctor__card {
  transition: all .3s ease-in-out !important;
  border-radius: 5px;
}
.vd-doctor__card:hover { 
  transform: scale(1.1); 
  cursor: pointer;
}

/* Call to action card */
.vd-buttons-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.vd-buttons-card .vd-button--pink {
  background-color: #8D0087;
  max-width: 275px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-family: 'Roboto';
  padding: 25px 30px;
  border-radius: 100vw;
}
.vd-buttons-card .vd-button--pink:hover {
  background-color: #631DA5;
}
.vd-buttons-card .vd-link--purple {
  text-align: center;
  color: #47236D;
  font-size: 18px;
  font-family: 'Roboto';
  text-decoration: underline;
}

/* Mobile optimization */
@media only screen and (max-width: 1100px){
  .vd-doctors-grid {
        gap: 30px;
  }
  .vd-doctors-grid > div {
    width: calc(50% - 30px);
	}
  .vd-doctor__card {
    gap: 10px;   
  }
  .vd-doctor__card ul {
    margin-left: 0;
  }
} 
@media only screen and (max-width: 800px){
  .vd-doctors-grid > div {
    width: 100%;
	}
  .vd-doctor__card {
      background-size: 35% !important;
      background-position-x: 60%;
  }
}
@media only screen and (max-width: 600px){
    .vd-doctor__card {
        background-size: 50% !important;
        background-position-x: 100%;
      min-height: 200px;
    }
}