/* Main Wrapper Grid */
.doctor-wrapper {
  display: grid;
  gap: 30px;
  margin: 20px 0;
}

/* Responsive Columns */
.doctor-wrapper.columns-1 {
  grid-template-columns: 1fr;
}
.doctor-wrapper.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.doctor-wrapper.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.doctor-wrapper.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .doctor-wrapper.columns-2,
  .doctor-wrapper.columns-3,
  .doctor-wrapper.columns-4 {
    grid-template-columns: 1fr;
  }
}

/* Card Design */
.doctor-card {
  display: flex;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #eee;
}

.doctor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Image Column */
.doctor-img {
  flex: 0 0 100px;
}

.doctor-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%; /* or 8px if square */
  display: block;
}

/* Content Column */
.doctor-content {
  flex: 1;
}

.doctor-content h3.H3-hospitals {
  margin: 0 0 5px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.doctor-content p {
  margin: 0 0 10px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.doctor-content p em {
  font-style: normal;
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

/* Appointment Link */
.doctor-content .appointment {
  margin-top: 15px;
  color: #0073aa;
  cursor: pointer;
}

.doctor-content .appointment strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.doctor-content .appointment i {
  font-size: 0.8em;
}

/* FontAwesome shim if not loaded */
.fa-angles-right:before {
  content: "\00BB"; /* Fallback to >> */
}
