/* ====================================
   Member Page Specific Styles - Minimal
   ==================================== */

/* Member Intro */
.member-intro {
  padding: var(--spacing-5xl) 0;
  background-color: var(--bg-white) !important;
  background-image:
    linear-gradient(135deg, transparent 25%, rgba(150, 194, 226, 0.08) 25%, rgba(150, 194, 226, 0.08) 50%, transparent 50%, transparent 75%, rgba(150, 194, 226, 0.08) 75%) !important;
  background-size: 80px 80px;
}

.intro-image-wrapper {
  max-width: 900px;
  margin: 0 auto var(--spacing-4xl) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.intro-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-image-wrapper:hover .intro-image {
  transform: scale(1.02);
}

.intro-text {
  font-size: var(--text-2xl);
  line-height: 2.2;
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  color: var(--text-gray);
  font-weight: var(--weight-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(150, 194, 226, 0.15);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-text:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(150, 194, 226, 0.3);
}

/* Member Profile */
.member-profile {
  padding: var(--spacing-5xl) 0;
  background: var(--bg-gray-light);
  position: relative;
  overflow: hidden;
}

.member-profile::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(150, 194, 226, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.profile-header {
  margin-bottom: var(--spacing-3xl);
}

.profile-role {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--text-black);
  text-align: center;
  letter-spacing: 0.05em;
}

.profile-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--spacing-3xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(150, 194, 226, 0.15);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.profile-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(150, 194, 226, 0.3);
}

.profile-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--flowcial-blue), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.profile-info {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
  border-bottom: 1px solid rgba(150, 194, 226, 0.2);
  position: relative;
}

.profile-name-ja {
  font-size: var(--text-5xl);
  font-weight: var(--weight-extra-bold);
  margin-bottom: var(--spacing-md);
  color: var(--text-black);
  letter-spacing: -0.01em;
}

.profile-name-en {
  font-size: var(--text-xl);
  font-family: var(--font-en);
  color: var(--text-gray);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--weight-light);
  letter-spacing: 0.05em;
}

.profile-title {
  font-size: var(--text-lg);
  color: var(--text-gray);
  font-weight: var(--weight-light);
}

.profile-career h3,
.profile-message h3 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--spacing-lg);
  color: var(--text-black);
}

.profile-career p,
.profile-message p {
  font-size: var(--text-base);
  line-height: 2.2;
  color: var(--text-gray);
  font-weight: var(--weight-light);
  margin-bottom: var(--spacing-xl);
}

.profile-career ul {
  list-style: none;
}

.profile-career ul li {
  font-size: var(--text-base);
  line-height: 2;
  color: var(--text-gray);
  font-weight: var(--weight-light);
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
  position: relative;
}

.profile-career ul li:before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-gray-light);
}

.profile-message {
  margin-top: var(--spacing-3xl);
  padding-top: var(--spacing-3xl);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 767px) {
  .profile-name-ja {
    font-size: var(--text-4xl);
  }
}
