/* =====================
   メンバーページ
   ===================== */

.member-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #eee;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.member-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s;
}
.member-card:hover {
  border-color: #ccc;
}

.member-card-inner {
  padding: 1.25rem;
}

.member-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.member-avatar {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.member-name-block {
  flex: 1;
  min-width: 0;
}

.member-kana {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 2px;
}

.member-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.member-role-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 4px;
  background: #e8f0fb;
  color: #2d5fa6;
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.member-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f5f5f5;
  color: #666;
  border: 1px solid #eee;
}

.member-bio {
  font-size: 12px;
  color: #111;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .3s;
}

.member-bio.open {
  display: block;
  -webkit-line-clamp: unset;
}

.member-expand {
  margin-top: 8px;
  font-size: 11px;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.member-expand:hover {
  color: #666;
}