/* ==========================================================================
   FUTURE WAVE ANALYSIS — About Us Stylesheet
   ========================================================================== */

/* ==========================================================================
   ABOUT TAB
   ========================================================================== */
.about-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.analyst-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  padding: 2rem;
  text-align: center;
}

.analyst-avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  border: 3px solid var(--tide);
  background: var(--bg-panel-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tide);
}

