.jw-about-page .jw-nav-outer {
  animation: fadeIn 0.4s ease both;
}

.jw-about-wrap {
  display: flex;
  min-height: calc(100vh - 65px);
}

.jw-about-photo-col {
  width: 42%;
  flex-shrink: 0;
  position: sticky;
  top: 65px;
  height: calc(100vh - 65px);
  overflow: hidden;
}

.jw-about-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: fadeIn 0.6s ease both;
}

.jw-about-content-col {
  flex: 1;
  padding: 72px 64px 80px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #bbb;
  animation: fadeUp 0.5s ease 0.2s both;
}

.jw-about-eyebrow {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}

.jw-about-name {
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #111;
  margin-bottom: 8px;
}

.jw-about-role {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #bbb;
}

.jw-about-bio {
  margin-bottom: 56px;
}

.jw-about-bio p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  max-width: 560px;
  margin-bottom: 20px;
  text-wrap: pretty;
}

.jw-about-bio p:last-child {
  margin-bottom: 0;
}

.jw-about-section {
  margin-bottom: 48px;
}

.jw-about-section-label,
.jw-about-contact-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
}

.jw-about-section-label {
  margin-bottom: 16px;
}

.jw-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jw-skill {
  padding: 7px 14px;
  border: 1px solid #666;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
}

.jw-about-contact {
  margin-top: auto;
  padding-top: 48px;
  border-top: 1px solid #bbb;
}

.jw-about-contact-label {
  margin-bottom: 12px;
}

.jw-about-email {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.jw-about-email:hover {
  color: #49B649;
}

.jw-about-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.jw-about-links a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.jw-about-links a:hover {
  color: #111;
}

@media (max-width: 900px) {
  .jw-about-wrap {
    flex-direction: column;
  }

  .jw-about-photo-col {
    width: 100%;
    position: relative;
    top: 0;
    height: 60vw;
    max-height: 480px;
  }

  .jw-about-content-col {
    padding: 48px 32px 64px;
    border-left: none;
    border-top: 1px solid #bbb;
  }

  .jw-about-name {
    font-size: 48px;
  }
}

@media (max-width: 600px) {
  .jw-about-photo-col {
    height: 75vw;
  }

  .jw-about-content-col {
    padding: 36px 20px 56px;
  }

  .jw-about-name {
    font-size: 36px;
  }

  .jw-about-email {
    font-size: 18px;
  }
}
