/* ══════════════════════════════════════
   ABOUT PAGE — Side-by-side layout
   ══════════════════════════════════════ */

/* Main layout */
.about-layout {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 40px 60px;
}

/* ── About content ── */
.about-content {
  position: relative;
}

/* ── Dashboard orbit section ── */
.dashboard-orbit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 60px;
}

.orbit-section-title {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.4rem;
  color: var(--ll-gold);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 32px;
  opacity: 0.8;
}

/* ── Intro: photo + text side by side ── */
.about-intro {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 36px;
}

.about-photo-wrap {
  flex-shrink: 0;
}

.about-photo-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-photo-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.about-intro-text {
  flex: 1;
}

/* ── Headings ── */
.about-heading {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.4rem;
  color: var(--ll-gold);
  letter-spacing: 0.03em;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-heading-icon {
  color: var(--ll-amber);
  opacity: 0.6;
}

/* ── Content text — bigger, more readable ── */
.about-text {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-text em {
  color: rgba(255, 215, 0, 0.85);
  font-style: italic;
}

.about-text strong {
  color: var(--ll-amber);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 180, 0, 0.2);
}

/* ── Section divider ── */
.about-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 180, 0, 0.15) 30%,
    rgba(255, 180, 0, 0.15) 70%,
    transparent 100%
  );
  margin: 32px 0;
}

/* ── Sections ── */
.about-section {
  margin-bottom: 36px;
}

.about-section:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .about-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    text-align: left;
  }

  .about-heading {
    justify-content: center;
  }
}
