/* ============================================================
   NYU ALUMNI STORIES — PROFILE PAGE STYLES
   ============================================================ */

/* HERO ---------------------------------------------------- */

.profile-hero {
  background: linear-gradient(150deg, var(--nyu-violet-deep) 0%, var(--nyu-black) 60%);
  color: var(--nyu-white);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.profile-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(87,6,140,0.45) 0%, transparent 65%);
  pointer-events: none;
}

.profile-header {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--space-10);
  align-items: flex-start;
}

@media (max-width: 700px) {
  .profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* PHOTO */
.profile-photo-wrap {
  flex-shrink: 0;
}

.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-xl);
  background: var(--nyu-violet-dark);
}

@media (max-width: 700px) {
  .profile-photo { width: 160px; height: 160px; }
}

/* INTRO */
.profile-intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-2);
}

.profile-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C084E8;
  background: rgba(87,6,140,0.4);
  border: 1px solid rgba(192,132,232,0.3);
  border-radius: var(--radius-full);
  padding: 0.3em 0.9em;
}

@media (max-width: 700px) {
  .profile-badge { align-self: center; }
}

.profile-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--nyu-white);
}

.profile-role {
  font-size: var(--text-xl);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.profile-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .profile-meta { justify-content: center; }
}

.meta-sep { opacity: 0.4; }

.profile-links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-top: var(--space-2);
}

@media (max-width: 700px) {
  .profile-links { justify-content: center; }
}

/* BODY ---------------------------------------------------- */

.profile-body {
  padding-top: var(--space-12);
  padding-bottom: var(--space-20);
}

/* QUOTE */
.profile-quote {
  margin-bottom: var(--space-12);
  border-left: 4px solid var(--nyu-violet);
  padding: var(--space-5) var(--space-8);
  background: var(--nyu-violet-pale);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.profile-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.profile-quote cite {
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--text-muted);
  font-weight: 400;
}

/* TWO COLUMN */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 880px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

/* BIO */
.profile-bio h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  color: var(--text-primary);
}

.profile-bio p {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--text-secondary);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

/* ACHIEVEMENTS */
.profile-achievements {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.profile-achievements h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.achievements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0;
}

.achievements-list li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.5;
}

.achievements-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nyu-violet);
}

/* MINI CARD */
.alumni-card-mini {
  background: var(--nyu-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2) var(--space-4);
  align-items: baseline;
}

.acm-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.acm-value {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 400;
}

/* FOOTER -------------------------------------------------- */

.profile-footer {
  background: var(--nyu-black);
  color: rgba(255,255,255,0.5);
  padding: var(--space-8) 0;
  font-size: var(--text-sm);
}

.profile-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.back-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  font-size: var(--text-sm);
}

.back-link:hover { color: var(--nyu-white); }

.footer-copy a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.profile-header { animation: fadeUp 0.5s var(--ease) both; }
.profile-quote  { animation: fadeUp 0.5s 0.1s var(--ease) both; }
.profile-grid   { animation: fadeUp 0.5s 0.2s var(--ease) both; }
