/* ==== BASE ==== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f4f6;
  color: #111827;
}

/* ==== HEADER / NAV / HERO – same as other pages ==== */
header {
  background: linear-gradient(135deg, #020617, #111827, #0f766e);
  color: #f9fafb;
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}

nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0.75rem 2rem;
}

nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  color: #38bdf8;
}

.hero {
  text-align: center;
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 0 1rem 2.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  background: linear-gradient(120deg, #38bdf8, #a855f7, #22c55e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle,
.hero-tagline {
  margin: 0.2rem 0;
  font-size: 1rem;
  color: #e5e7eb;
}

/* ==== ABOUT LAYOUT ==== */

.about-wrapper {
  max-width: 1200px;
  margin: 3rem auto 3.5rem;
  padding: 0 1rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.profile-card,
.bio-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.profile-card {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
}

.bio-card {
  flex: 2;
  min-width: 320px;
}

/* ==== PROFILE CARD ==== */

.profile-card h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.role {
  font-weight: 600;
  color: #0f766e;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.profile-contact p {
  margin: 0.15rem 0;
  font-size: 0.95rem;
}

.profile-contact a {
  color: #0f766e;
  text-decoration: none;
}

.profile-contact a:hover {
  text-decoration: underline;
}

.tag-list,
.details-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.tag-list li {
  display: inline-block;
  margin: 0.15rem 0.35rem 0.15rem 0;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.85rem;
}

.details-list li {
  margin-bottom: 0.25rem;
}

/* ==== RIGHT COLUMN / BIO ==== */

.bio-card h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.bio-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.experience-item {
  margin-top: 1.3rem;
}

.experience-item h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #0f172a;
}

.experience-item .org {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0.15rem 0;
}

.experience-item .dates {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0.1rem 0 0.4rem;
}

.experience-item ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: #4b5563;
}

/* ==== RESPONSIVE ==== */

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

  .profile-card,
  .bio-card {
    max-width: 100%;
  }
}

/* ==== FOOTER ==== */

footer {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: #9ca3af;
  background: #020617;
}
