/* Hermes 문서 사이트 공통 스타일 */
#hermes-nav {
  background: #191A29;
  padding: 0 16px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
#hermes-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
#hermes-nav a:hover, #hermes-nav a.active {
  color: #fff;
  border-bottom-color: #0748FF;
}
#hermes-footer {
  text-align: center;
  color: #8B95A1;
  font-size: 13px;
  padding: 40px 16px 60px;
}
#hermes-footer a {
  color: #8B95A1;
  text-decoration: none;
}
#hermes-footer a:hover {
  color: #0748FF;
}
