/* ============================================================
   expert.css — Meet the Expert Page Styling
   ============================================================ */

/* Page Hero Adjustments */
.page-hero {
  position: relative;
  padding: 160px 22px var(--space-xl) 22px;
  overflow: hidden;
}

.page-hero__orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.15;
}

.page-hero__orb--1 {
  background: var(--primary-on-dark);
  top: -50px;
  left: 10%;
  animation: ag-glow-pulse 8s ease-in-out infinite;
}

.page-hero__orb--2 {
  background: var(--primary);
  bottom: -50px;
  right: 15%;
  animation: ag-glow-pulse 6s ease-in-out infinite alternate;
}

.page-hero__floater {
  position: absolute;
  font-size: 28px;
  color: var(--primary-on-dark);
  opacity: 0.15;
  animation: ag-float 5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.page-hero__floater--2 {
  font-size: 36px;
  top: 40%;
  right: 12%;
  animation-duration: 7s;
  animation-name: ag-float-reverse;
}

.page-hero__floater--3 {
  font-size: 24px;
  bottom: 25%;
  left: 15%;
  animation-duration: 6s;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* Expert Profile Grid Layout */
.expert-profile-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.2fr;
  gap: var(--space-xxl);
  align-items: center;
  text-align: left;
  margin-top: var(--space-xl);
}

/* Photo Container */
.expert-photo-container {
  width: 100%;
  border-radius: var(--rounded-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.22) 3px 5px 30px;
  background: var(--canvas-parchment);
  line-height: 0;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.expert-photo-container:hover {
  transform: scale(1.02);
}

.expert-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Bio Content Panel */
.expert-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.expert-name {
  font-family: var(--font-display);
  font-size: 48px; /* SF Pro Display style */
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 0;
}

.expert-career-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.expert-career-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 var(--space-xxs) 0;
}

.expert-career-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.expert-career-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 17px;
  line-height: 1.47;
  color: var(--ink-muted-80);
}

.expert-career-list li .bullet {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.2;
  user-select: none;
}

.expert-career-list li .list-item-content {
  flex: 1;
  font-family: var(--font-body);
  letter-spacing: -0.374px;
}

.expert-career-list li .list-item-content strong {
  color: var(--ink);
  font-weight: 600;
}

.expert-career-list li .list-item-subtext {
  font-size: 15px;
  color: var(--ink-muted-48);
  margin-top: 4px;
  line-height: 1.4;
}

/* CTA */
.expert-cta-wrap {
  margin-top: var(--space-sm);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .expert-profile-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .expert-photo-container {
    max-width: 440px;
    margin: 0 auto;
  }
  .expert-name {
    font-size: 38px;
    text-align: center;
  }
  .expert-career-title {
    text-align: center;
  }
  .expert-cta-wrap {
    text-align: center;
  }
}
