:root {
  --primary: #002147;
  --bg: #f8f8f8;
  --white: #fff;
}

/* 공통 리셋 */
* { box-sizing: border-box; margin:0; padding:0; }
body {
  font-family: 'Pretendard', sans-serif;
  background: var(--bg);
  color: #333;
  line-height: 1.5;
}
a { color: inherit; }

/* Header & Footer 스타일은 이미 style.css 에서 관리 */

/* 섹션 제목 */
.section-title {
  text-align: center;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 24px;
}

/* 전문가 그리드 */
.experts-section {
  padding: 60px 20px;
}
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* 카드 */
.expert-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform .3s;
}
.expert-card:hover {
  transform: translateY(-6px);
}
.expert-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.expert-name {
  font-size: 20px;
  margin: 16px 0 8px;
}
.expert-role {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}
.expert-bio {
  font-size: 14px;
  padding: 0 16px 24px;
  color: #666;
}

/* 반응형 */
@media (max-width: 768px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }
}
