/* =============================
   기본 초기화 + 폰트
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
}

body {
  background-color: #edb6c2; /* 전체 통일된 핑크 배경 */
  color: #111;
  line-height: 1.7;
  padding-bottom: 60px;
}

/* =============================
   헤더 (my.html 스타일과 완전 동일)
============================= */
header {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 25px 40px;
  position: sticky;
  top: 0;
  z-index: 100;

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: 0.25s;
}

nav a:hover {
  color: #d46aff;
  border-bottom: 2px solid #d46aff;
}

/* 반응형 */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 10px;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* =============================
   교수진 제목
============================= */
.professors-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin: 60px 0 40px;
  color: #111;
}

/* =============================
   교수 카드 전체 레이아웃
============================= */
.professors-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  padding: 0 20px;
}

/* =============================
   교수 카드 개별 스타일
============================= */
.professor-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  text-align: center;
  transition: 0.25s;
}

.professor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* 교수 사진 */
.professor-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 15px;
}

/* 교수 이름 */
.professor-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111;
}

.professor-info p {
  text-align: left;
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.6;
}


/* =============================
   푸터
============================= */
footer {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 80px;
  font-size: 0.95rem;
  color: #111;
}

