/* ===================================
   作家紹介ページ専用スタイル
   =================================== */

/* ===================================
   プロフィールセクション
   =================================== */
.profile-section {
  padding: 4rem 0 6rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

/* ポートレート */
.portrait-wrap {
  position: relative;
}

.portrait-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-hover);
  position: relative;
  z-index: 1;
}

.portrait-deco {
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 2px solid var(--ai-pale);
  border-radius: 4px;
  z-index: 0;
}

/* プロフィールテキスト */
.profile-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--akane);
  margin-bottom: 0.75rem;
}

.profile-name {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--ai);
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.profile-name-en {
  font-size: 0.8rem;
  color: var(--text-sub);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* プロフィールデータ */
.profile-data {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--kinari-dark);
  border-radius: 4px;
  border-left: 3px solid var(--ai);
}

.profile-data-row {
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 0.75rem;
  font-size: 0.84rem;
}

.profile-data dt {
  color: var(--text-sub);
  font-weight: 400;
}

.profile-data dd {
  color: var(--text);
  font-weight: 600;
}

/* 略歴 */
.profile-bio p {
  font-size: 0.88rem;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 1rem;
}

.profile-bio p:last-child {
  margin-bottom: 0;
}

/* 受賞歴 */
.profile-awards {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--kinari-dark);
}

.awards-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ai);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.awards-list {
  display: grid;
  gap: 0.5rem;
}

.awards-list li {
  font-size: 0.82rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
  line-height: 1.7;
}

.awards-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  background: var(--akane);
  border-radius: 50%;
}

/* ===================================
   こだわりセクション
   =================================== */
.commitment-section {
  padding: 5rem 0;
  background: var(--ai);
}

.commitment-section .section-title {
  color: var(--white);
}

.commitment-section .section-subtitle {
  color: var(--ai-pale);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.commitment-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
}

.commitment-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.commitment-img-wrap {
  overflow: hidden;
  height: 180px;
}

.commitment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.commitment-card:hover .commitment-img-wrap img {
  transform: scale(1.06);
}

.commitment-body {
  padding: 1.5rem 1.5rem 2rem;
}

.commitment-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.commitment-body p {
  font-size: 0.83rem;
  color: rgba(212,228,240,0.8);
  line-height: 1.95;
  font-weight: 400;
}

/* ===================================
   制作工程セクション
   =================================== */
.process-section {
  padding: 6rem 0;
  background: var(--kinari-dark);
}

.process-list {
  display: grid;
  gap: 4rem;
  margin-top: 1rem;
}

.process-item {
  position: relative;
}

.process-num {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--akane);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.process-content-reverse {
  direction: rtl;
}

.process-content-reverse > * {
  direction: ltr;
}

.process-img-wrap {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.process-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.process-item:hover .process-img-wrap img {
  transform: scale(1.04);
}

.process-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ai);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.process-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--akane);
}

.process-text p {
  font-size: 0.87rem;
  line-height: 2.1;
  color: var(--text);
}

/* コンタクトセクション追加 */
.contact-desc {
  font-size: 0.88rem;
  color: var(--ai-pale);
  line-height: 2;
  margin-top: 1rem;
}

/* ===================================
   レスポンシブ
   =================================== */
@media (max-width: 960px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portrait-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .portrait-deco {
    display: none;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .process-content,
  .process-content-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
}

@media (max-width: 600px) {
  .profile-section {
    padding: 3rem 0 4rem;
  }

  .process-section {
    padding: 4rem 0;
  }

  .commitment-section {
    padding: 4rem 0;
  }

  .profile-data-row {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}
