/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Tokens ── */
:root {
  --bg:    #FBFCFE;
  --text:  #1E3047;
  --muted: #50627C;
  --font:  'Sora', sans-serif;
}

/* ── Base ── */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Page ── */
.page {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: max(100vh, 768px);
  padding: 192px 72px 72px;
  gap: 202px;
  max-width: 2048px;
  margin: 0 auto;
}

/* ── Content ── */
.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
}

.text-block {
  display: flex;
  flex-direction: column;
}

.name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -1.28px;
  line-height: 1.2;
  color: var(--text);
  white-space: nowrap;
}

.title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -1.28px;
  line-height: 1.2;
  color: var(--text);
  white-space: nowrap;
}

.bio {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.24px;
  line-height: 1.36;
  color: var(--muted);
  white-space: pre-wrap;
  width: min-content;
  min-width: 100%;
}

/* ── Photo ── */
.photo {
  position: absolute;
  left: 48px;
  bottom: 0;
  width: 130px;
  height: 172px;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* ── LinkedIn ── */
.linkedin {
  position: absolute;
  right: 48px;
  top: 48px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.linkedin img {
  width: 100%;
  height: 100%;
}

/* ── Responsive (mobile < 1280px) ── */
@media (max-width: 1279px) {
  .page {
    min-height: max(100vh, 480px);
    padding: 72px 48px;
    gap: 540px;
  }

  .name {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  .title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  .content {
    gap: 16px;
  }

  .bio {
    font-size: 12px;
    letter-spacing: -0.12px;
    line-height: 1.36;
  }

  .photo {
    width: 100px;
    height: 132px;
    left: 48px;
  }
}
