/* ---------------------------
   ABOUT PAGE HERO LAYOUT
----------------------------*/

.about-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1rem 0 0.5rem;
  flex-wrap: wrap;
}

/* Portrait image wrapper */
.about-photo {
  flex: 0 0 180px;
  max-width: 180px;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 10px rgba(150, 90, 255, 0.32),
    0 0 22px rgba(40, 255, 245, 0.18);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.25rem;
  filter: contrast(1.03) saturate(1.08);
}

/* Soft neon edge effect */
.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.2rem;
  pointer-events: none;
  border: 2px solid rgba(150, 90, 255, 0.45);
  box-shadow: 
    inset 0 0 8px rgba(40, 255, 245, 0.15),
    0 0 12px rgba(255, 60, 170, 0.12);
}

/* Text side of the header */
.about-intro {
  flex: 1;
  min-width: 260px;
  color: var(--text-main);
}

.about-intro h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neon-teal);
  text-shadow: 0 0 8px rgba(38, 255, 230, 0.55);
}

.about-intro .intro {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  line-height: 1.55;
}

/* ---------------------------
   CARD + DARK ONIONCORE AESTHETIC
----------------------------*/

.card {
  background: rgba(22, 12, 38, 0.75);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(130, 85, 255, 0.28);
  box-shadow:
    0 0 20px rgba(150, 60, 255, 0.12),
    inset 0 0 12px rgba(40, 255, 245, 0.08);
  backdrop-filter: blur(12px);
}

/* Text styles */
.intro,
.muted {
  color: #dcd3f2;
}

/* Bullet lists */
.bullet-list li {
  margin-bottom: 0.6rem;
  padding-left: 1rem;
  position: relative;
}

.bullet-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--neon-teal);
  font-size: 1rem;
  text-shadow: 0 0 6px rgba(38, 255, 230, 0.75);
}

/* ---------------------------
   RESPONSIVE BEHAVIOR
----------------------------*/

@media (max-width: 720px) {
  .about-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-photo {
    margin-bottom: 1rem;
  }

  .about-intro {
    text-align: left;
    width: 100%;
  }
}
