/* Profile Detail Page Styles */
/* Base styles are loaded from base.css */

.profile-detail {
  padding-top: 80px;
}

.profile-detail__nav-area {
  padding: 24px 0;
}

/* Profile Hero */
.profile-hero {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 80px;
}

.profile-hero__image-wrapper {
  width: 240px;
  height: 240px;
  flex-shrink: 0;
}

.profile-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.profile-hero__text {
  flex: 1;
}

.profile-hero__job-title {
  display: block;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-size: 14px;
}

.profile-hero__name {
  font-size: 32px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.profile-hero__name-en {
  font-size: 18px;
  font-weight: 400;
  color: #888;
  margin-left: 8px;
}

.profile-hero__desc {
  line-height: 1.8;
  color: #666;
}

/* Section Common */
.section {
  margin-bottom: 80px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title__icon {
  color: var(--color-primary);
  width: 24px;
  height: 24px;
}

/* Values */
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.values__item {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid #eee;
}

.values__title {
  font-size: 18px;
  margin: 0 0 16px;
  color: var(--color-primary);
}

.values__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* Skills */
.skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.skill-item {
  background: var(--color-white);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.skill-item__icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.skill-item__icon {
  width: 20px;
  height: 20px;
}

.skill-item__content {
  flex: 1;
}

.skill-item__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.skill-item__name {
  font-weight: 700;
  font-size: 14px;
}

.skill-item__bar {
  width: 100%;
  height: 6px;
  background-color: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.skill-item__bar-fill {
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 3px;
}

/* Career Timeline */
.career__list {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid #eee;
}

.career__item {
  position: relative;
  margin-bottom: 40px;
}

.career__item:last-child {
  margin-bottom: 0;
}

.career__item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #eee;
}

.career__year {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.career__title {
  font-size: 18px;
  margin: 0 0 8px;
}

.career__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* CTA */
.cta-area {
  background-color: rgba(142, 173, 195, 0.1);
  padding: 60px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

.cta-area__title {
  font-size: 20px;
  margin: 0 0 12px;
}

.cta-area__desc {
  margin-bottom: 32px;
  color: #666;
}

.button--lg {
  padding: 16px 48px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-hero {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .profile-hero__image-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }
}