.doctors-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

@media (max-width: 1024px){
  .doctors-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .doctors-grid{
    grid-template-columns: 1fr;
  }
}

.doctor-card-link{
  text-decoration: none;
  color: inherit;
  display: block;
}

.doctor-card{
  background: #fff;
  border-radius: 16px;
  border: 1px solid #EDECEB;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  font-family: IRANSans, sans-serif;
  transition: transform .3s ease;
  height: 100%;
}

.doctor-card:hover{
  transform: translateY(-6px);
}

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

.doctor-body{
  padding: 20px;
  text-align: right;
}

.doctor-name{
  font-size: 16px;
  margin: 0 0 6px;
  color: #222223;
  font-weight: 400;
}

.doctor-category{
  color: rgba(198, 170, 118, 1);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 6px;
}

.doctor-specialty{
  color: #f5c400;
  font-size: 14px;
  margin-bottom: 14px;
}

.doctor-divider{
  height: 1px;
  background: #EDECEB;
  margin: 16px 0;
}

.doctor-info{
  list-style: none;
  padding: 0;
  margin: 0;
}

.doctor-info li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #222223;
}

.doctor-info .dot{
  width: 8px;
  height: 8px;
  background: #C6AA76;
  border-radius: 50%;
  flex: 0 0 8px;
}
