.doctor-details {
  color: #6d6f71;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
}
.doctor-details .details-top {
  margin-bottom: 1rem;
}
.doctor-details .doctor-details-image {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  aspect-ratio: 3/4;
  min-height: 10rem;
  max-height: 25rem;
  background-color: white;
}
.doctor-details .doctor-details-image[title="GHC Logo"], .doctor-details .doctor-details-image[alt="GHC Logo"] {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.144);
}
.doctor-details .doctor-name {
  font-size: var(--step-2);
  font-weight: bold;
  color: var(--primary-01);
}
.doctor-details .label-title {
  color: var(--primary-01);
  font-size: var(--step-0);
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-wrap: balance;
}
.doctor-details .voucher {
  max-height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width >= 768px) {
  .doctor-details .voucher {
    height: 100%;
    max-height: 4rem;
  }
}

.doctor-listing-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.doctor-item {
  background-color: #dfeef3;
  padding: 1rem;
  border-radius: 0.5rem;
  flex: 1 0 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (width >= 576px) {
  .doctor-item {
    max-width: calc(50% - 0.5rem);
  }
}
@media screen and (width >= 768px) {
  .doctor-item {
    max-width: calc(33.3333333333% - 0.6666666667rem);
  }
}
@media screen and (width >= 992px) {
  .doctor-item {
    max-width: calc(25% - 0.75rem);
  }
}
.doctor-item .doctor-item-main-info {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
@media screen and (width >= 576px) {
  .doctor-item .doctor-item-main-info {
    flex-wrap: wrap;
  }
}
.doctor-item .doctor-item-name {
  font-size: var(--step-1);
  font-weight: bold;
  color: var(--primary-01);
}
.doctor-item .voucher {
  width: 4rem;
}
@media screen and (width >= 768px) {
  .doctor-item .voucher {
    height: 2rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.doctor-item .doctor-item-image-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 40%;
  display: flex;
  align-items: center;
  background-color: white;
}
.doctor-item .doctor-item-image-wrapper img[title="GHC Logo"],
.doctor-item .doctor-item-image-wrapper img[alt="GHC Logo"] {
  padding: 0 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (width >= 576px) {
  .doctor-item .doctor-item-image-wrapper {
    max-width: none;
  }
}
.doctor-item .doctor-item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=doctor-details.css.map */