/* ============================================================
   ABOUT PAGE
   ============================================================ */

body.about-page {
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
}

body.about-page .bg-video { display: none; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.about-main {
  margin-left: 190px; /* matches nav overlay at typical screen size; JS fine-tunes */
  padding: 20px 48px 40px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0px;
  align-items: start;
  width: 100%;
  max-width: 960px;
}

/* ============================================================
   PHOTO
   ============================================================ */
.about-photo-wrap {
  position: sticky;
  top: 60px;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #aaa;
}

/* When a real photo is added, replace placeholder with: */
.about-photo-wrap img:first-child {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* ============================================================
   TEXT
   ============================================================ */
.about-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #111;
  margin-bottom: 0;
}

.about-location-img {
  height: 200px;
  width: auto;
  display: block;
  margin-top: -25px;
  margin-bottom: -50px;
  opacity: 1;
}

.about-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.85;
  color: #333;
  margin-bottom: 12px;
}

.about-divider {
  width: 32px;
  height: 1px;
  background: #ddd;
  margin: 16px 0;
}

.about-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.about-specialties span {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #aaa;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-photo-wrap {
    position: static;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  /* margin-left still set by JS — just adjust layout */
  .about-main {
    padding: 20px 16px 60px;
    align-items: flex-start;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-photo-wrap {
    position: static;
    max-width: 100%;
  }

  .about-name { font-size: 1rem; }
  .about-bio  { font-size: 0.8rem; }
}
