/* ============================
   기본 섹션 스타일
============================ */
.fullscreen-section {
  width: 100vw;
  min-height: auto;
  background: var(--bg-dark);
  display: flex;
  align-items: flex-start;
  padding: 4rem 2rem;
  color: var(--text-light);
}

.intro-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  /* 전체 가운데 정렬 */
}

/* ----------------------------
   좌측 블록: 프로필+태그
---------------------------- */
.intro-left {
  width: 280px;
  /* 고정폭 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.profile-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
  box-shadow: 0 0 20px rgba(0, 246, 255, 0.4);
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.intro-tags span {
  background: var(--tag-bg);
  border: 1px solid var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--accent);
}

/* ----------------------------
   우측 블록: 자기소개+이력
---------------------------- */
.intro-right {
  width: 600px;
  /* 최대폭 제한 */
  max-width: 100%;
  padding-left: 2rem;
}

.intro-right h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--color-text-white);
  line-height: 1.3;
}

.intro-right .highlight {
  -webkit-text-fill-color: var(--color-text-white) !important;
  font-weight: bold;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-subtle);
}

.intro-career {
  display: block;
}

.intro-career h3 {
  margin-bottom: 0.8rem;
  color: var(--accent);
}

.intro-career ul {
  list-style: none;
  padding: 0;
}

.intro-career li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* ============================
   모바일 레이아웃 (768px 이하)
============================ */
@media (max-width: 768px) {
  .intro-wrapper {
    flex-direction: column !important;
    /* 세로 배치 */
    align-items: center !important;
    /* 전체 블록 가운데 정렬 */
  }

  .intro-left,
  .intro-right {
    flex: 0 0 auto !important;
    /* flex 초기화 */
    width: 100% !important;
    /* 화면 폭 맞춤 */
    max-width: 600px !important;
    /* 최대 폭 제한 */
  }

  .intro-left {
    margin-bottom: 2rem;
  }

  .intro-right {
    padding-left: 0;
    text-align: left;
    /* 글자 왼쪽 정렬 */
  }

  .intro-right h1 {
    font-size: 2rem;
  }
}