/* === About Section === */
#aboutMe {
  background: var(--bg-vivid);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 200px 1fr;
    gap: var(--sp-2xl);
  }
}

/* Photo */
.about-photo {
  justify-self: center;
}

@media (min-width: 768px) {
  .about-photo {
    position: sticky;
    top: calc(var(--sp-2xl) + 60px);
  }
}

.about-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  /* background-color: #bccbde;  */ /* f4f5f7 */
  transition:
    transform var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out);
}

.about-photo img:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Text */
.about-text h4 {
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-xs);
  position: relative;
  padding-left: 14px;
}

.about-text h4::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 6px;
  height: 8px;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 4px rgba(var(--accent-rgb), 0.4));
  background: linear-gradient(to bottom right, var(--accent), rgba(var(--accent-rgb), 0.25));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12'%3E%3Cpath d='M1.5 1 L8 6 L1.5 11' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12'%3E%3Cpath d='M1.5 1 L8 6 L1.5 11' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.about-text h4:first-child {
  margin-top: 0;
}

.about-text p {
  text-align: left;
  font-size: 0.92rem;
}
