/* CEO Profile Page Styles */

.ceo-profile-main {
  padding-top: 60px;
}

/* 히어로 배너 */
.ceo-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 40px 0;
  text-align: center;
}

.ceo-hero-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0;
  letter-spacing: -0.5px;
}

.ceo-hero-text:first-child {
  color: #f59e0b;
}

/* 프로필 섹션 */
.ceo-detail-section {
  padding: 60px 0;
  background: var(--bg-primary);
}

.ceo-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* 왼쪽 영역 (상단 프로필) */
.ceo-left {
  text-align: center;
}

.ceo-basic-info {
  margin-bottom: 24px;
}

.ceo-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.ceo-role {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.ceo-name-large {
  font-size: 64px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -2px;
  line-height: 1.1;
}

.ceo-photo {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ceo-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 오른쪽 영역 - 이력 */
.ceo-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.career-section {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.career-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
}

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

.career-list li {
  font-size: 15px;
  color: var(--text-primary);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.career-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.career-list li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

/* 유튜브 영상 섹션 */
.youtube-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.youtube-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.youtube-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.youtube-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.youtube-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 5개 영상 - 마지막 하나 중앙 정렬 */
.youtube-grid .youtube-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

/* 돌아가기 버튼 */
.back-section {
  padding: 40px 0;
  background: var(--bg-primary);
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.back-button:hover {
  background: #2d4a7c;
  transform: translateY(-2px);
}

/* 반응형 */
@media (max-width: 900px) {
  .ceo-name-large {
    font-size: 48px;
  }
}

@media (max-width: 640px) {
  .ceo-hero {
    padding: 24px 0;
  }

  .ceo-hero-text {
    font-size: 14px;
  }

  .ceo-detail-section {
    padding: 40px 0;
  }

  .ceo-name-large {
    font-size: 40px;
  }

  .career-section {
    padding: 20px;
  }

  .career-title {
    font-size: 16px;
  }

  .career-list li {
    font-size: 14px;
    padding: 6px 0;
    padding-left: 16px;
  }

  .youtube-section {
    padding: 40px 0;
  }

  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .youtube-grid .youtube-item:last-child:nth-child(odd) {
    max-width: 100%;
  }

  .back-section {
    padding: 24px 0;
    text-align: center;
  }
}
