/* ===================================================
   member.css — MEMBERページ専用スタイル
   =================================================== */

body { background-color: #f2f4f8; color: #2c3545; }

.section-head { padding: 60px 0 48px; }

/* ===== MEMBER GRID ===== */
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 80px; }
.member-card { background: transparent; cursor: default; }
.member-photo {
  width: 100%; aspect-ratio: 3 / 2; background: #e2e8f0;
  border-radius: 12px; overflow: hidden; margin-bottom: 20px;
  position: relative; display: flex; align-items: flex-end; justify-content: center;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.member-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  background: linear-gradient(160deg, #dde4f0 0%, #c8d3e8 100%);
}
.member-photo-placeholder .initials {
  width: 72px; height: 72px; border-radius: 50%;
  background: #1a1a2e; display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700;
  color: #fff; letter-spacing: 0.05em;
}
.member-info { padding: 0 4px; }
.member-role { font-size: 11px; color: #718096; letter-spacing: 0.06em; line-height: 1.5; margin-bottom: 6px; }
.member-name { font-size: 20px; font-weight: 700; color: #1a1a2e; letter-spacing: 0.04em; margin-bottom: 12px; line-height: 1.3; }
.member-name .name-en { display: block; font-size: 11px; font-weight: 500; color: #a0aec0; letter-spacing: 0.12em; font-family: 'Poppins', sans-serif; margin-top: 4px; }
.member-social { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.member-social a { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-family: 'Poppins', sans-serif; color: #718096; letter-spacing: 0.06em; transition: color 0.2s; }
.member-social a:hover { color: #1a1a2e; }
.member-social .x-icon { width: 14px; height: 14px; fill: currentColor; }
.member-bio { font-size: 12px; color: #4a5568; line-height: 1.9; margin-top: 14px; padding-top: 14px; border-top: 1px solid #e2e8f0; }
.interview-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-family: 'Poppins', sans-serif; font-weight: 600;
  color: #4a6fa5; letter-spacing: 0.08em;
  border-bottom: 1px solid #4a6fa5; padding-bottom: 1px;
}
.interview-link .material-icons { font-size: 12px; }

/* ===== MANAGEMENT TEAM ===== */
.mgmt-section { padding-bottom: 80px; }
.mgmt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.mgmt-card .member-photo { aspect-ratio: 1 / 1; }
.mgmt-card .member-name { font-size: 16px; }

@media (max-width: 1024px) {
  .member-grid,
  .mgmt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section-head {
    padding-top: 40px;
  }

  .member-grid,
  .mgmt-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  .member-photo {
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
  }

  .member-name {
    font-size: 19px;
  }

  .member-bio {
    font-size: 12px;
    line-height: 1.85;
  }

}
