.doctors-wrapp .page-content {
  padding: 20px 0;
}
.doctors-wrapp .doctors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.doctors-wrapp .doctor-item {
  flex: 0 0 calc(100%);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: 1px solid var(--color-borderLight);
}
.doctors-wrapp .doctor-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--color-hover);
}
.doctors-wrapp .doctor-item .doctor-link {
  display: flex;
  align-items: center;
  padding: 15px;
  color: var(--color-text);
  text-decoration: none;
}
.doctors-wrapp .doctor-item .doctor-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-img);
  border: 2px solid var(--color-primaryLight);
  margin-left: 20px;
  flex-shrink: 0;
}
.doctors-wrapp .doctor-item .doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.doctors-wrapp .doctor-item .doctor-info {
  flex: 1;
}
.doctors-wrapp .doctor-item .doctor-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 5px 0;
}
.doctors-wrapp .doctor-item .doctor-name-en {
  font-size: 1rem;
  color: var(--color-textLight);
  margin-bottom: 8px;
}
.doctors-wrapp .doctor-item .doctor-specialty {
  font-size: 0.95rem;
  color: var(--color-secondary);
  background-color: var(--color-secondaryAlpha);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 15px;
  opacity: 0.8;
}
.doctors-wrapp .doctor-item .doctor-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-primaryAlpha);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-right: 10px;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}
.doctors-wrapp .doctor-item .doctor-action:hover {
  background-color: var(--color-primary);
  color: #fff;
}

@media screen and (min-width: 768px) {
  .doctors-wrapp .doctor-item {
    flex: 0 0 calc(50% - 10px);
  }
}
@media screen and (min-width: 1200px) {
  .doctors-wrapp .doctor-item {
    flex: 0 0 calc(33.333% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .doctors-wrapp .doctor-item .doctor-link {
    padding: 10px;
  }
  .doctors-wrapp .doctor-item .doctor-image {
    width: 80px;
    height: 80px;
    margin-left: 15px;
  }
  .doctors-wrapp .doctor-item .doctor-name {
    font-size: 1.1rem;
  }
  .doctors-wrapp .doctor-item .doctor-name-en {
    font-size: 0.9rem;
  }
  .doctors-wrapp .doctor-item .doctor-specialty {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 480px) {
  .doctors-wrapp .doctor-item .doctor-image {
    width: 60px;
    height: 60px;
    margin-left: 10px;
  }
  .doctors-wrapp .doctor-item .doctor-name {
    font-size: 1rem;
  }
  .doctors-wrapp .doctor-item .doctor-name-en {
    font-size: 0.8rem;
  }
  .doctors-wrapp .doctor-item .doctor-specialty {
    font-size: 0.75rem;
    padding: 2px 8px;
  }
  .doctors-wrapp .doctor-item .doctor-action {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}