/* 서브 카테고리 영역 */
.sub-visual {
  position: relative;
  width: 100%;
  height: 290px;        /* 필요하면 360~400px까지 가능 */
  overflow: hidden;
}

/* 배경 이미지 */
.sub-visual-bg {
  position: absolute;
  inset: 0;
  background-image: url("/static/img/intro.png");
  background-size: cover;
  background-position: center;
}

/* 텍스트 영역 */
.sub-visual-content {
  position: relative;
  z-index: 1;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.25); /* 가독성용 */
}

/* 페이지 제목 */
.sub-visual-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 44px;
}

/* 하위 메뉴 */
.sub-nav {
  display: flex;
  gap: 30px;
}

.sub-nav a {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.sub-nav a:hover {
  color: #fff;
}

.sub-nav a.active {
  color: #fff;
  border-bottom: 2px solid #fff;
}

/* 본문 제목 */
.company-content {
  padding: 80px 0;
}

.company-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 6px;
}
