@charset "UTF-8";
main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Professor 프로필 커스텀 스타일 */
.professor-card {
  background: #f8fcfd;
  border: 2px solid #e2e8ed;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.professor-card-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
}

.professor-photo img {
  display: flex;
  align-items: center; /* 내부 이미지 세로 중앙 정렬 */
  justify-content: center; /* 필요시 가로 중앙 정렬 */
  height: 100%;
  width: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.professor-info {
  margin-left: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.professor-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.professor-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.professor-bio {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .professor-card-link {
    flex-direction: column;
    align-items: center;
  }
  .professor-info {
    margin-left: 0;
    margin-top: 1.5rem;
    align-items: center;
    text-align: center;
  }
  .professor-photo img {
    width: 160px;
    height: 200px;
  }
}
.project-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.project-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.project-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.project-card-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  background: #1b2c3b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 2rem;
}

.project-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.project-card-summary {
  font-size: 1.05rem;
  color: #222;
  line-height: 1.7;
}

/*# sourceMappingURL=main.css.map */