/* profile.css — 塾長プロフィールページ専用 */

.profile-hero-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.profile-photo {
  text-align: center;
}
.profile-photo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 3px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  overflow: hidden;
}
.profile-photo-circle svg { opacity: .7; }
.profile-photo-name {
  color: rgba(255,255,255,.85);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: .95em;
}
.profile-photo-role {
  color: rgba(255,255,255,.65);
  font-size: .78em;
  line-height: 1.6;
  margin-top: 4px;
}
.profile-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.profile-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: .78em;
  font-weight: 600;
}

/* ===== Profile content sections ===== */
.profile-section { padding: 72px 0; }
.profile-section:nth-child(even) { background: var(--bg-alt); }

.career-timeline {
  max-width: 760px;
  margin: 0 auto;
}
.career-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(74,144,217,.07);
  align-items: start;
}
.career-item:last-child { border-bottom: none; }
.career-year {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 800;
  color: var(--secondary);
  font-size: 1em;
  padding-top: 2px;
}
.career-body h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: .98em;
  margin-bottom: 4px;
}
.career-body p {
  font-size: .88em;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== Research block ===== */
.research-block {
  background: linear-gradient(135deg, rgba(74,144,217,.05), rgba(124,184,240,.04));
  border: 1px solid rgba(74,144,217,.12);
  border-radius: var(--radius);
  padding: 32px 36px;
  max-width: 800px;
  margin: 0 auto 32px;
}
.research-block__label {
  font-size: .76em;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.research-block__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.15em;
  margin-bottom: 14px;
  line-height: 1.5;
}
.research-block p {
  font-size: .9em;
  color: var(--text);
  line-height: 2.0;
}

/* ===== Society list ===== */
.society-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.society-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: .92em;
  color: var(--text);
  border-bottom: 1px solid rgba(74,144,217,.07);
}
.society-list li:last-child { border-bottom: none; }
.society-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

/* ===== Message block ===== */
.message-block {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  position: relative;
}
.message-block::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 4em;
  color: rgba(74,144,217,.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.message-block p {
  font-size: .95em;
  color: var(--text);
  line-height: 2.1;
  margin-bottom: 16px;
}
.message-block p:last-child { margin-bottom: 0; }
.message-author {
  text-align: right;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: .9em;
  margin-top: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .profile-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .profile-photo { margin: 0 auto 24px; }
  .profile-badges { justify-content: center; }
  .career-item {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }
  .research-block { padding: 24px 20px; }
  .message-block { padding: 28px 24px; }
}
