.about-section {
  border-top: 2px solid var(--cyan);
  border-bottom: 2px solid var(--magenta);
  color: var(--cyan);
  text-align: left;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--magenta);
  object-fit: cover;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 2rem;
}

.about-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--magenta);
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.4);
}

.photo-caption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #bbb;
  text-align: center;
  line-height: 1.3;
  font-style: italic;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.social-links img {
  width: 32px;
  height: 32px;
  filter: brightness(1.2) saturate(1.2);
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .avatar {
    width: 80px;
    height: 80px;
  }

  .about-section h2 {
    text-align: center;
  }
}