/* BASIC css start */
<style>
/* 커뮤니티 페이지 래퍼 */
.community-content{
  max-width:1200px;
  margin:0 auto;
  padding:40px 0 30px;
}

/* =========================
   COMMUNITY (전체 공통 CSS)
   - 커뮤니티 메인 + 게시판 상단 탭 공통
   - 스킨 충돌 방지용 네임스페이스
========================= */

/* 커뮤니티 페이지 래퍼 */
.community-content{
  max-width:1200px;
  margin:0 auto;
  padding:40px 0 30px;
}

/* 제목 영역(필요시) */
.community-content .page-title-wrap{
  text-align:center;
  margin:0 0 6px;
}
.community-content .page-title-wrap h2{
  margin:0;
  font-size:26px;
  font-weight:700;
  color:#111;
  letter-spacing:-0.5px;
}

/* =========================
   탭 네비게이션
========================= */
/* COMMUNITY TAB NAV - centered + bigger */
.commTabs{
  width:100%;
  display:flex;
  justify-content:center !important;  /* 가운데 강제 */
  align-items:center;
  gap:18px;
  margin: 12px 0 26px;
  padding: 0 12px 18px;
  border-bottom: 1px solid #eee;
  font-size: 17px !important;         /* 글자 크게 강제 */
  line-height: 1.2;
  text-align:center;
}

/* 링크 글자/색상 */
.commTab{
  font-size: 17px !important;         /* 개별 링크에도 강제 */
  color:#b5b5b5;
  text-decoration:none;
  font-weight:400;
  white-space:nowrap;
}

/* 활성(현재 게시판) */
.commTab.is-active{
  color:#111;
  font-weight:700;
}

/* 구분자 */
.commSep{
  color:#ddd;
  user-select:none;
}

/* 모바일: 좌우 스크롤(줄바꿈 방지) */
@media (max-width:768px){
  .commTabs{
    justify-content:flex-start !important;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    white-space:nowrap;
    gap:14px;
    padding: 0 16px 14px;
    font-size: 16px !important;
  }
  .commTab{
    font-size: 16px !important;
  }
  .commTabs::-webkit-scrollbar{display:none;}
}

/* =========================
   커뮤니티 메인(설명 + 퀵링크)
========================= */
.community-content .community-hero{
  max-width:900px;
  margin:36px auto 0;
  text-align:center;
  padding:0 16px;
}

@media (max-width: 768px){
  .community-content .community-hero{
    margin-top:28px;
  }
}

/* 설명 문구 */
.community-content .community-hero .desc{
  margin:0 0 22px;
  color:#666;
  font-size:15px;
  line-height:1.6;
}

/* 퀵링크 래퍼 */
.community-content .community-hero .quick-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

/* 퀵링크 버튼 */
.community-content .community-hero .quick-links .q{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:110px;
  padding:12px 16px;
  border:1px solid #ddd;
  text-decoration:none;
  color:#111;
  font-size:14px;
  border-radius:999px;
  background:#fff;
  transition:all .2s ease;
}

/* 호버 */
.community-content .community-hero .quick-links .q:hover{
  background:#111;
  color:#fff;
  border-color:#111;
}

/* 모바일 버튼 사이즈 약간 조정 */
@media (max-width: 768px){
  .community-content .community-hero .quick-links .q{
    min-width:auto;
    padding:11px 14px;
    font-size:13px;
  }
}

/* =========================
   게시판 페이지에서 탭만 넣었을 때도
   레이아웃이 어색하지 않게 하는 보정(선택)
========================= */
.board-wrap .community-tabs,
.board-area .community-tabs{
  margin-top:18px;
}

</style>

/* BASIC css end */

