/**
 * FO 공통 스타일
 * 피그마 디자인 기반 (우리아이 2.0)
 */

/* ================================
   Scroll Reveal Animation
   ================================ */

/* 초기 상태 - 숨김 */
.ua-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 활성화 상태 - 보임 */
.ua-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger 딜레이 */
.ua-reveal[data-delay="1"] { transition-delay: 0.1s; }
.ua-reveal[data-delay="2"] { transition-delay: 0.2s; }
.ua-reveal[data-delay="3"] { transition-delay: 0.3s; }
.ua-reveal[data-delay="4"] { transition-delay: 0.4s; }
.ua-reveal[data-delay="5"] { transition-delay: 0.5s; }

/* 방향별 변형 */
.ua-reveal--left {
  transform: translateX(-40px);
}
.ua-reveal--left.is-visible {
  transform: translateX(0);
}

.ua-reveal--right {
  transform: translateX(40px);
}
.ua-reveal--right.is-visible {
  transform: translateX(0);
}

.ua-reveal--scale {
  transform: scale(0.95);
}
.ua-reveal--scale.is-visible {
  transform: scale(1);
}

/* ================================
   Layout
   ================================ */
#fo-header,
#fo-footer {
  position: relative;
  z-index: 100;
}

#fo-content {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}

/* ================================
   Header 드롭다운 메뉴 (Figma 디자인 기반)
   ================================ */
.ua-nav__dropdown {
  position: relative;
}

.ua-nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  padding: 0;
  transition: opacity 0.2s ease;
}

.ua-nav__dropdown:hover .ua-nav__link--dropdown {
  opacity: 0.8;
}

.ua-nav__dropdown-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ua-nav__dropdown:hover .ua-nav__dropdown-icon {
  transform: rotate(180deg);
}

.ua-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 90px;
  padding: 20px 10px;
  background: #ffde00;
  border-radius: 10px;
  z-index: 1000;

  /* 초기 상태 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transform-origin: top center;
  transition:
    opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;

  /* 상위 메뉴와 연결을 위한 가상 영역 */
}

/* 상위 메뉴와 하위 메뉴 사이 간격을 채우는 가상 요소 */
.ua-nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.ua-nav__dropdown:hover .ua-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.ua-nav__dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 70px;
  height: 25px;
  margin: 0 auto;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  text-align: center;
  letter-spacing: -0.32px;
  border-radius: 5px;
  transition:
    background 0.2s ease,
    font-weight 0.2s ease;
}

.ua-nav__dropdown-item + .ua-nav__dropdown-item {
  margin-top: 16px;
}

.ua-nav__dropdown-item:hover {
  background: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

/* ================================
   공지사항 - 목록 페이지
   ================================ */
.ua-notice {
  width: 100%;
}

/* 히어로 섹션 */
.ua-notice-hero {
  position: relative;
  width: 100%;
  padding: 70px 20px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.ua-notice-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.3;
}

.ua-notice-hero__bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
}

.ua-notice-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ua-notice-hero__title {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
}

.ua-notice-hero__desc {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* 컨텐츠 영역 */
.ua-notice__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px 80px;
}

/* 검색 영역 */
.ua-notice-search {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 16px;
  border: 1px solid #ffde00;
  border-radius: 12px;
  margin-bottom: 50px;
}

.ua-notice-search__select {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
}

.ua-notice-search__select-text {
  font-family: Pretendard, sans-serif;
  font-size: 17px;
  color: #575757;
  text-align: center;
}

.ua-notice-search__divider {
  width: 1px;
  height: 24px;
  background: #b5b5b5;
}

.ua-notice-search__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ua-notice-search__input {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  font-family: Pretendard, sans-serif;
  font-size: 17px;
  color: #000;
  outline: none;
}

.ua-notice-search__input::placeholder {
  color: #b1b8be;
  letter-spacing: -0.51px;
}

.ua-notice-search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: #ffde00;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ua-notice-search__btn:hover {
  background: #e6c800;
}

.ua-notice-search__btn svg {
  width: 13px;
  height: 13px;
}

/* ================================
   공통 게시판 테이블
   ================================ */
/* 목록 섹션 */
.ua-board-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ua-board-list__title {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* 테이블 */
.ua-board-table {
  width: 100%;
}

.ua-board-table__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  border-top: 1px solid #b5b5b5;
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}

.ua-board-table__header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ua-board-table__col {
  display: flex;
  align-items: center;
}

.ua-board-table__col--no {
  width: 40px;
  flex-shrink: 0;
}

.ua-board-table__col--type {
  width: 60px;
  flex-shrink: 0;
}

.ua-board-table__col--title {
  width: 550px;
  flex-shrink: 0;
}

.ua-board-table__col--author {
  width: 50px;
  flex-shrink: 0;
  text-align: center;
  justify-content: center;
}

.ua-board-table__col--date {
  width: 82px;
  flex-shrink: 0;
}

.ua-board-table__col--views {
  width: 50px;
  text-align: right;
  justify-content: flex-end;
  flex-shrink: 0;
}

.ua-board-table__body {
  display: flex;
  flex-direction: column;
}

.ua-board-table__loading,
.ua-board-table__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 40px 20px;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  color: #767676;
  text-align: center;
  border-top: 1px solid #b5b5b5;
  border-bottom: 1px solid #b5b5b5;
}

.ua-board-table__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  border-top: 1px solid #b5b5b5;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.ua-board-table__row:last-child {
  border-bottom: 1px solid #b5b5b5;
}

.ua-board-table__row-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ua-board-table__row:hover {
  background: rgba(255, 222, 0, 0.05);
}

.ua-board-table__row--highlight {
  background: rgba(255, 222, 0, 0.1);
}

.ua-board-table__row--highlight:hover {
  background: rgba(255, 222, 0, 0.15);
}

.ua-board-table__row--highlight .ua-board-table__col--title {
  font-size: 18px;
  font-weight: 700;
}

.ua-board-table__row .ua-board-table__col--no {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.ua-board-table__row .ua-board-table__col--title {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ua-board-table__row .ua-board-table__col--author {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #b5b5b5;
}

.ua-board-table__row .ua-board-table__col--date {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #b5b5b5;
}

.ua-board-table__row .ua-board-table__col--views {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #b5b5b5;
}

/* 게시판 뱃지 (공통) */
.ua-board-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 2px 8px;
  border-radius: 5px;
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

/* 공지사항 뱃지 */
.ua-board-badge--notice {
  background: #c2a900;
}

.ua-board-badge--check {
  background: #af1524;
}

.ua-board-badge--info {
  background: #44c200;
}

.ua-board-badge--event {
  background: #006bc2;
}

/* FAQ 뱃지 */
.ua-board-badge--member {
  background: #c2a900;
}

.ua-board-badge--credit {
  background: #44c200;
}

.ua-board-badge--membership {
  background: #006bc2;
}

/* 페이지네이션 */
.ua-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 20px;
}

.ua-pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  padding: 7px;
  background: rgba(47, 43, 61, 0.08);
  border: none;
  border-radius: 4px;
  color: rgba(47, 43, 61, 0.9);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ua-pagination__btn:hover {
  background: rgba(115, 103, 240, 0.16);
  color: #7367f0;
}

.ua-pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ua-pagination__btn svg {
  width: 24px;
  height: 24px;
}

.ua-pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 6px;
  background: rgba(47, 43, 61, 0.08);
  border: none;
  border-radius: 4px;
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(47, 43, 61, 0.9);
  text-align: center;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ua-pagination__page:hover {
  background: rgba(115, 103, 240, 0.16);
  color: #FFDE00;
}

.ua-pagination__page.is-active {
  background: #FFDE00;
  color: #fff;
  box-shadow: 0 2px 6px rgba(115, 103, 240, 0.3);
}

/* ================================
   FAQ - 목록 페이지
   ================================ */
.ua-faq {
  width: 100%;
}

.ua-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px 80px;
}

/* FAQ 검색 영역 */
.ua-faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 16px;
  border: 1px solid #ffde00;
  border-radius: 12px;
  margin-bottom: 50px;
}

.ua-faq-search__select {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
}

.ua-faq-search__select-text {
  font-family: Pretendard, sans-serif;
  font-size: 17px;
  color: #575757;
  text-align: center;
}

.ua-faq-search__divider {
  width: 1px;
  height: 24px;
  background: #b5b5b5;
}

.ua-faq-search__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ua-faq-search__input {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  font-family: Pretendard, sans-serif;
  font-size: 17px;
  color: #000;
  outline: none;
}

.ua-faq-search__input::placeholder {
  color: #b1b8be;
  letter-spacing: -0.51px;
}

.ua-faq-search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: #ffde00;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ua-faq-search__btn:hover {
  background: #e6c800;
}

.ua-faq-search__btn svg {
  width: 13px;
  height: 13px;
}

/* ================================
   공지사항 - 상세 페이지
   ================================ */
.ua-notice-detail {
  width: 100%;
  padding: 40px 0 80px;
}

.ua-notice-detail__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 목록 돌아가기 */
.ua-notice-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  line-height: 1.4;
}

.ua-notice-detail__back:hover {
  opacity: 0.7;
}

.ua-notice-detail__back svg {
  width: 30px;
  height: 30px;
}

/* 헤더 */
.ua-notice-detail__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ua-notice-detail__title {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: -0.4px;
}

.ua-notice-detail__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.ua-notice-detail__meta-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ua-notice-detail__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.32px;
}

.ua-notice-detail__meta-label {
  color: #b5b5b5;
}

.ua-notice-detail__meta-value {
  color: #000;
}

.ua-notice-detail__meta-icon {
  flex-shrink: 0;
}

/* 구분선 */
.ua-notice-detail__divider {
  width: 100%;
  height: 1px;
  background: #b5b5b5;
  border: none;
  margin: 0;
}

/* 본문 */
.ua-notice-detail__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ua-notice-detail__image {
  width: 100%;
}

.ua-notice-detail__image-placeholder {
  width: 100%;
  height: 400px;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #8f8f8f;
}

.ua-notice-detail__body {
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #8f8f8f;
  line-height: 1.4;
}

.ua-notice-detail__body p {
  margin: 0 0 8px 0;
}

.ua-notice-detail__body p:last-child {
  margin-bottom: 0;
}

/* 배너 */
.ua-notice-detail__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 44px;
  background: url('/fo/images/banner-bg.png') center / cover no-repeat;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  min-height: 116px;
}

.ua-notice-detail__banner-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ua-notice-detail__banner-text {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.ua-notice-detail__banner-highlight {
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #ffde00;
  margin: 0;
  line-height: 1.2;
}

.ua-notice-detail__banner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 15px 20px;
  background: linear-gradient(100.3deg, #ffde00 5.37%, #fff088 49.02%, #ffde00 92.66%);
  border-radius: 150px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #287bef;
  text-decoration: none;
  text-align: center;
  letter-spacing: -0.32px;
  line-height: 1.2;
}

.ua-notice-detail__banner-btn:hover {
  opacity: 0.9;
}

.ua-notice-detail__banner-btn-bold {
  font-weight: 700;
}

/* 이전/다음 네비게이션 */
.ua-notice-detail__nav {
  display: flex;
  flex-direction: column;
}

.ua-notice-detail__nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #b5b5b5;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.ua-notice-detail__nav-item:last-child {
  border-bottom: 1px solid #b5b5b5;
}

.ua-notice-detail__nav-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.ua-notice-detail__nav-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.ua-notice-detail__nav-label svg {
  width: 30px;
  height: 30px;
}

.ua-notice-detail__nav-title {
  flex: 1;
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-left: 20px;
}

.ua-notice-detail__nav-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #b5b5b5;
}

/* ================================
   FAQ - 상세 페이지 네비게이션
   ================================ */
.ua-faq-detail__nav {
  display: flex;
  flex-direction: column;
}

.ua-faq-detail__nav-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #b5b5b5;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.ua-faq-detail__nav-item:last-child {
  border-bottom: 1px solid #b5b5b5;
}

.ua-faq-detail__nav-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.ua-faq-detail__nav-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.ua-faq-detail__nav-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.ua-faq-detail__nav-label svg {
  width: 30px;
  height: 30px;
}

.ua-faq-detail__nav-title {
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.ua-faq-detail__nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ua-faq-detail__nav-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Gmarket Sans TTF', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #b5b5b5;
}

.ua-faq-detail__nav-meta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ================================
   반응형 - 공지사항 / FAQ
   ================================ */
@media (max-width: 768px) {
  .ua-notice-hero {
    padding: 50px 20px;
  }

  .ua-faq__inner {
    padding: 20px 16px 60px;
  }

  .ua-faq-search {
    height: 48px;
    padding: 0 12px;
    gap: 8px;
    margin-bottom: 30px;
  }

  .ua-faq-search__select {
    width: auto;
  }

  .ua-faq-search__select-text {
    font-size: 15px;
  }

  .ua-faq-search__input {
    font-size: 15px;
  }

  .ua-faq-search__btn {
    width: 24px;
    height: 24px;
  }

  .ua-faq-search__btn svg {
    width: 13px;
    height: 13px;
  }

  .ua-notice-hero__title {
    font-size: 28px;
  }

  .ua-notice-hero__desc {
    font-size: 14px;
  }

  .ua-notice__inner {
    padding: 20px 16px 60px;
  }

  .ua-notice-search {
    height: 48px;
    padding: 0 12px;
    gap: 8px;
    margin-bottom: 30px;
  }

  .ua-notice-search__select {
    width: auto;
  }

  .ua-notice-search__select-text {
    font-size: 15px;
  }

  .ua-notice-search__input {
    font-size: 15px;
  }

  /* 공통 게시판 테이블 반응형 */
  .ua-board-table__header {
    display: none;
  }

  .ua-board-table__row {
    flex-wrap: wrap;
    padding: 16px 10px;
    gap: 8px;
  }

  .ua-board-table__row-left {
    width: 100%;
    flex-wrap: wrap;
    order: 1;
    margin-bottom: 8px;
  }

  .ua-board-table__col--no {
    display: none;
  }

  .ua-board-table__col--type {
    width: auto;
    margin-bottom: 8px;
  }

  .ua-board-table__col--title {
    width: 100%;
  }

  .ua-board-table__col--author {
    order: 2;
    width: auto;
    justify-content: flex-start;
  }

  .ua-board-table__col--date {
    order: 3;
    width: auto;
    margin-left: 10px;
  }

  .ua-board-table__col--views {
    order: 4;
    width: auto;
    margin-left: 10px;
  }

  .ua-notice-detail__inner {
    gap: 24px;
  }

  .ua-notice-detail__title {
    font-size: 18px;
  }

  .ua-notice-detail__meta {
    flex-direction: column;
    gap: 8px;
  }

  .ua-notice-detail__meta-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .ua-notice-detail__meta-item {
    font-size: 14px;
  }

  .ua-notice-detail__image-placeholder {
    height: 200px;
  }

  .ua-notice-detail__banner {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    text-align: center;
  }

  .ua-notice-detail__banner-content {
    align-items: center;
  }

  .ua-notice-detail__banner-text {
    font-size: 14px;
  }

  .ua-notice-detail__banner-highlight {
    font-size: 20px;
  }

  .ua-notice-detail__nav-item {
    flex-wrap: wrap;
    gap: 8px;
  }

  .ua-notice-detail__nav-title {
    width: 100%;
    margin-left: 0;
    order: 2;
  }

  .ua-notice-detail__nav-date {
    order: 3;
    font-size: 14px;
  }

  /* FAQ 상세 네비게이션 반응형 */
  .ua-faq-detail__nav-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 12px;
  }

  .ua-faq-detail__nav-left {
    gap: 8px;
  }

  .ua-faq-detail__nav-label svg {
    width: 20px;
    height: 20px;
  }

  .ua-faq-detail__nav-title {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }

  .ua-faq-detail__nav-right {
    gap: 12px;
  }

  .ua-faq-detail__nav-meta span {
    font-size: 13px;
  }
}

/* ================================
   게시글 상세
   ================================ */
.fo-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.fo-article-header {
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 32px;
}

.fo-article-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.4;
}

.fo-article-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #888;
}

.fo-article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.fo-article-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

.fo-article-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

/* 첨부파일 */
.fo-attachments {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.fo-attachments-title {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 12px;
}

.fo-attachment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #3182f6;
  text-decoration: none;
}

.fo-attachment-item:hover {
  text-decoration: underline;
}

/* 이전/다음 글 */
.fo-article-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.fo-article-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.fo-article-nav-item:hover {
  background: #e9ecef;
}

.fo-article-nav-label {
  width: 60px;
  font-size: 13px;
  color: #888;
}

.fo-article-nav-title {
  flex: 1;
  font-size: 15px;
}

/* 목록 버튼 */
.fo-btn-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.fo-btn-list:hover {
  background: #333;
}

/* ================================
   1:1 문의
   ================================ */
.fo-inquiry-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.fo-form-group {
  margin-bottom: 24px;
}

.fo-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.fo-form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.fo-form-textarea {
  width: 100%;
  min-height: 200px;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  resize: vertical;
}

.fo-form-input:focus,
.fo-form-textarea:focus {
  outline: none;
  border-color: #3182f6;
}

.fo-form-file {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fo-form-file-btn {
  height: 40px;
  padding: 0 20px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.fo-form-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.fo-form-file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 4px;
  font-size: 13px;
}

.fo-form-file-remove {
  width: 20px;
  height: 20px;
  background: #ddd;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
}

.fo-form-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.fo-btn-submit {
  height: 52px;
  padding: 0 48px;
  background: #3182f6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.fo-btn-submit:hover {
  background: #1b64da;
}

.fo-btn-cancel {
  height: 52px;
  padding: 0 48px;
  background: #fff;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.fo-btn-cancel:hover {
  background: #f8f9fa;
  border-color: #ccc;
}

/* ================================
   마이페이지
   ================================ */
.fo-mypage {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.fo-mypage-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, #3182f6 0%, #1b64da 100%);
  border-radius: 16px;
  color: #fff;
  margin-bottom: 32px;
}

.fo-mypage-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.fo-mypage-info h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.fo-mypage-info p {
  font-size: 14px;
  opacity: 0.8;
}

.fo-mypage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.fo-mypage-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
}

.fo-mypage-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

/* ================================
   반응형
   ================================ */
@media (max-width: 768px) {
  .fo-board-title {
    font-size: 24px;
  }

  .fo-table-header {
    display: none;
  }

  .fo-table-row {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .fo-table-col--no {
    display: none;
  }

  .fo-table-col--title {
    width: 100%;
    margin-bottom: 8px;
  }

  .fo-table-col--author,
  .fo-table-col--date,
  .fo-table-col--views {
    width: auto;
    font-size: 13px;
  }

  .fo-article-title {
    font-size: 22px;
  }

  .fo-article-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .fo-mypage-header {
    flex-direction: column;
    text-align: center;
  }
}
