/* ==========================================================================
   ABOUT.CSS — Dedicated Styles for About Us & Our Doctors Pages
   ========================================================================== */

/* About & Doctors Hero Section */
.about-hero, .doctors-hero {
  padding-block: 56px 44px;
  background: var(--gradient-hero-bg);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero .eyebrow, .doctors-hero .eyebrow {
  margin-top: 4px;
  margin-bottom: 16px;
  color: #ecfdf5 !important;
  background: rgba(6, 78, 59, 0.85) !important;
  border-color: rgba(52, 211, 153, 0.5) !important;
}
.about-hero h1, .doctors-hero h1 {
  color: #fff;
  margin-block: 10px 14px;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  font-weight: 800;
}
.about-hero p, .doctors-hero p {
  color: #dcfce7;
  max-width: 660px;
  margin-inline: auto;
  font-size: 1.02rem;
}

/* Clinic Showcase Full-Width Card */
.clinic-showcase-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 50px;
}
.clinic-showcase-card .showcase-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(4, 120, 87, 0.15);
}
.clinic-showcase-card .showcase-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Doctor Profiles Showcase Grid */
.doctors-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.doctor-showcase-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.doctor-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d);
}

.doctor-img-frame {
  width: 180px;
  height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  border: 3px solid #4ade80;
}
.doctor-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-name {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}
.doctor-qual {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary-light);
  margin-bottom: 12px;
}
.doctor-bio {
  color: var(--color-text-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

@media (max-width: 992px) {
  .clinic-showcase-card {
    grid-template-columns: 1fr;
  }
  .doctors-showcase-grid {
    grid-template-columns: 1fr;
  }
}
