.member {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 52px rgb(39 71 181 / 10%);
}

.member-photo {
  min-height: 450px;
  height: auto;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.03);
  transform: none;
}

.member:hover .member-photo img {
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.025);
}

.member-body {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 36px);
}

.member-body .member-quote {
  margin: 0 0 30px;
  color: #cf5f8d;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
}

.member-identity {
  display: grid;
  gap: 6px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.member-identity span {
  color: var(--muted);
  font-size: 0.72rem;
}

.member-identity strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 500;
}

.member-body .member-profile {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1.85;
}

.member-interest {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.member-interest span {
  color: #cf5f8d;
  font-size: 0.68rem;
}

.member-interest strong {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .member {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

@media (max-width: 767px) {
  .member {
    grid-template-columns: 1fr;
  }

  .member-photo {
    min-height: 0;
    height: min(112vw, 500px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .member-photo img {
    transition: none;
  }
}
