.expert-grid {display:grid; grid-template-columns:1fr 1fr 1fr; gap:2rem;}

.expert-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--border-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--text-light);
  font-weight: 700;
}

/* 전문위원 모달 스타일 */
.expert-modal {
  display: none;
}

/* 빈 상태 메시지 스타일 */
.expert-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.expert-empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.expert-empty-state .empty-title {
  font-size: 24px;
  margin: 0 0 8px 0;
  color: var(--text-primary);
}

.expert-empty-state .empty-description {
  font-size: 16px;
  margin: 0;
}

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