/* --- 폰트 & 기본 설정 --- */
html, body {
  margin: 0;
  padding: 0;
  background: #181818;
  font-family: 'Pretendard Variable','Noto Sans KR','Apple SD Gothic Neo','Malgun Gothic',sans-serif;
  color: #fff;
  letter-spacing: 0.01em;
  height: 100%;
}

/* ---- 전체 페이지 그리드 래핑 ---- */
.page-main-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0 80px 0;
}

.side-photo {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.side-photo img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 2px 16px #0006;
}

.main-content {
  flex: 2;
  min-width: 340px;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}


/* === Heading 스타일 === */
article h1,
aside h1,
nav h1,
section h1 {
  font-size: 2rem;
  line-height: 1.3;
}