.about-main {
  flex: 1;
  width: min(94%, 1240px);
  margin: 0 auto;
  padding: 10.5rem 1.5rem 4rem;
}

.about-main section {
  margin-bottom: 5rem;
}

.about-main section:last-child {
  margin-bottom: 2rem;
}

.section-title {
  text-align: left;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 2.5rem;
}

.social-row {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--card-border);
  box-shadow: 0 2px 6px var(--icon-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--icon-shadow);
}

.social-icon img {
  display: block;
  width: 18px;
  height: 18px;
}

/* Intro */
.about-intro {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-portrait {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 122%;
  height: auto;
  z-index: 0;
  opacity: 0.85;
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 255px;
  height: auto;
  filter: drop-shadow(0 12px 28px var(--icon-shadow));
}

.about-intro-text h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
}

.about-intro-text .lede {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.about-intro-text p {
  color: var(--text-secondary);
  line-height: 1.65;
}

.about-intro-text p:not(:last-child) {
  margin-bottom: 1rem;
}

.reach-out {
  margin-top: 1.5rem;
}

.reach-out p {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--text);
}

/* About Me */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.ring-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  width: min(100%, 285px);
  aspect-ratio: 1 / 1;
}

.ring-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  z-index: 0;
  opacity: 0.9;
}

.about-item img {
  position: relative;
  z-index: 1;
  width: 128%;
  height: 128%;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.about-item img:hover {
  transform: scale(1.04);
}

.about-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.about-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 700px) {
  .about-main {
    padding: 8.5rem 1.25rem 3rem;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-portrait {
    width: 150px;
    margin: 0 auto;
  }

  .about-portrait img {
    max-width: 150px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .experience-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* Work Experience */
.experience-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.experience-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--card-border);
}

.experience-list li:last-child {
  border-bottom: none;
}

.experience-role {
  font-size: 1rem;
  color: var(--text);
}

.experience-year {
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
