.about-section {
  padding-top: 3rem;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;   /* ✅ top align */
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.about-caption {
  margin-top: 1rem;
  text-align: left;
  color: var(--text-dark);
}

.about-caption span {
  font-size: 0.9rem;
  color: var(--text-soft);
  display: block;
}

.about-caption strong {
  font-size: 1.1rem;
}

.about-content h2 {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.about-tagline {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.about-content p {
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.btn-cta-aboutme {
    margin-top: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-caption {
    text-align: center;
  }
}