:root {
  --accent-strong: #118612;   /* 진한 초록색 */
  --accent-light: #45c056;    /* 연한 초록색 */
  --background: #0a0a0a;
  --text: #f5f5f5;
  --muted: #6b7280;
  --max-width: 800px;
}

/* 기본 설정 */
body {
  background: var(--background);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

/* 중앙 컨테이너 */
.container {
  max-width: var(--max-width);
  margin: 60px auto;
  padding: 0 24px;
}

/* 박스형 카드 */
.box {
  background-color: #111111;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* 사진 + 텍스트 수평 정렬 */
.profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* 프로필 사진 크기 */
.profile-img-left {
  width: 170px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* 이름 (진한 초록색) */
.name-color {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-light);
}

/* 부제목 (연한 초록색, 덜 굵게) */
.subtitle {
  margin: 0.35rem 0 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent-strong);
  line-height: 1.35;
}

/* 본문 */
.profile-bio {
  margin-top: 1.5rem;
}

.profile-bio p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* 하단 링크들 (진한 초록색) */
.accent-link {
  color: var(--accent-strong);
  font-weight: 500;
  text-decoration: none;
}

.accent-link:hover {
  text-decoration: underline;
}

/* footer */
footer {
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  color: var(--muted);
}



