/* === Staff Page === */
.page-staff {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
}

.page-staff h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Grid Layout */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Staff Card */
.staff-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.staff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Staff Photo */
.staff-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--burgundy);
}

/* Text Styling */
.staff-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: .3rem;
}
.staff-card .role {
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .5rem;
}
.staff-card .desc {
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}
/* 그리드 */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

/* 카드 */
.staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

/* 이미지 영역 — ★ 핵심 */
.staff-photo {
  width: 160px;          /* 디폴트 이미지 기준 */
  height: 160px;
  margin-bottom: 16px;
  border-radius: 50%;    /* 원형 유지 */
  overflow: hidden;
  background: #f3f3f3;
  flex-shrink: 0;
}

/* 이미지 자체 */
.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* 비율 유지 + 중앙 크롭 */
  object-position: center;
}

/* 텍스트 영역 */
.staff-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.staff-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.staff-card .role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.staff-card .desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.45;
}
.staff-photo.is-default img {
  opacity: 0.9;
  filter: grayscale(100%);
}
