/* 공지사항/공시정보 페이지 스타일 - 모바일/데스크탑 완전 분리 */

/* 배경 이미지 설정 */
.noticebg-ol {
  background: url(image/noticebg.png) center/cover no-repeat;
}

/* 공지사항 섹션 기본 스타일 */
.notice-sec1,
.notice-sec2 {
  padding: 80px 0 120px;
}

/* 공지사항 부제목 스타일 */
.notice-subtitle {
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #222222;
  line-height: 1.2;
  letter-spacing: -0.288px;
  margin-bottom: 40px;
}

/* 공지사항 리스트 컨테이너 - 공통 기본 스타일 */
.notice-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  overflow: hidden;
  background: white;
  margin-bottom: 32px;
}

/* 데스크탑/모바일 리스트 표시/숨김 제어 */
.notice-list-desktop {
  display: flex !important; /* 기본적으로 데스크탑 버전 표시 */
}

.notice-list-mobile {
  display: none !important; /* 기본적으로 모바일 버전 숨김 */
}

/* 모바일 (860px 이하)에서 반대로 설정 - 해상도 변경시에만 트랜지션 없음 */
@media screen and (max-width: 860px) {
  .notice-list-desktop {
    display: none !important; /* 모바일에서 데스크탑 버전 숨김 */
    transition: none !important; /* 해상도 변경시에만 트랜지션 제거 */
  }

  .notice-list-mobile {
    display: flex !important; /* 모바일에서 모바일 버전 표시 */
    transition: none !important; /* 해상도 변경시에만 트랜지션 제거 */
  }
}

/* ===== 데스크탑 전용 스타일 ===== */
.desktop-notice-item {
  display: flex;
  flex-direction: row; /* 가로 배치 */
  align-items: center; /* 세로 중앙 정렬 */
  justify-content: flex-start;
  height: 64px; /* Figma h-16 = 64px */
  padding: 0;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.2s ease;
  cursor: pointer;
  position: relative;
}

.desktop-notice-item:last-child {
  border-bottom: none;
}

.desktop-notice-item:hover {
  background-color: #f8f9fa;
}

/* 데스크탑 날짜 영역 - Figma 기반 (120px 고정) */
.desktop-notice-item .notice-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 120px; /* w-[120px] 고정 너비 */
  height: 64px; /* h-16 = 64px */
  padding: 10px; /* p-[10px] */
  gap: 10px; /* gap-2.5 */
  flex-shrink: 0; /* shrink-0 */
  box-sizing: border-box;

  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  line-height: 1.5;
  letter-spacing: -0.192px;
  text-align: left;
  white-space: nowrap;
}

/* 데스크탑 콘텐츠 영역 - Figma 기반 */
.desktop-notice-item .notice-info {
  flex: 1 1 0%; /* basis-0 grow */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 64px; /* h-16 = 64px */
  padding: 10px 16px; /* py-2.5 px-4 */
  gap: 10px; /* gap-2.5 */
  min-height: 1px;
  min-width: 1px;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* 데스크탑 제목 행 - 가로 배치 컨테이너 */
.desktop-notice-item .notice-title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; /* 양쪽 끝 정렬 */
  padding: 0;
  width: 100%;
  flex-shrink: 0;
  gap: 10px; /* gap-2.5 */
}

/* 데스크탑 뱃지와 제목 컨테이너 - 왼쪽 정렬 */
.desktop-notice-item .notice-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  gap: 10px; /* gap-2.5 */
  flex-shrink: 0;
}

/* 데스크탑 뱃지 스타일 */
.desktop-notice-item .notice-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #0199e5;
  border-radius: 20px;
  padding: 2px 10px;
  gap: 10px;
  flex-shrink: 0;

  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.168px;
  white-space: nowrap;
}

/* 데스크탑 제목 스타일 */
.desktop-notice-item .notice-title {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  line-height: 1.5;
  letter-spacing: -0.192px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  max-width: 600px;
}

/* 데스크탑 첨부파일 아이콘 */
.desktop-notice-item .notice-attachment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.desktop-notice-item .notice-attachment svg {
  width: 100%;
  height: 100%;
  fill: #888888;
}

/* ===== 모바일 전용 스타일 ===== */
.mobile-notice-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  height: 80px; /* h-20 */
  padding: 0;
  border-bottom: 1px solid #eeeeee;
  gap: 10px; /* gap-2.5 */
  background: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: relative;
}

.mobile-notice-item:last-child {
  border-bottom: none;
}

.mobile-notice-item:hover {
  background-color: #f8f9fa;
}

/* 모바일 뱃지 컨테이너 */
.mobile-notice-item .notice-badge-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px 0;
  gap: 10px;
  flex-shrink: 0;
}

/* 모바일 뱃지 스타일 */
.mobile-notice-item .notice-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #0199e5;
  border-radius: 20px;
  padding: 2px 10px;
  gap: 10px;
  flex-shrink: 0;

  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.168px;
  white-space: nowrap;
}

/* 모바일 콘텐츠 컨테이너 */
.mobile-notice-item .notice-content-container {
  flex: 1 1 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 10px 0;
  gap: 10px;
  min-height: 1px;
  min-width: 1px;
  flex-shrink: 0;
}

/* 모바일 텍스트 영역 */
.mobile-notice-item .notice-text-area {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  min-height: 1px;
  min-width: 1px;
  flex-shrink: 0;

  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  line-height: 0;
  letter-spacing: -0.192px;
  font-style: normal;
  text-align: left;
  white-space: nowrap;
}

/* 모바일 제목 스타일 */
.mobile-notice-item .notice-title {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: 1.5;
  letter-spacing: inherit;
  white-space: pre;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 모바일 날짜 텍스트 */
.mobile-notice-item .notice-date-text {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: 1.5;
  letter-spacing: inherit;
  white-space: pre;
}

/* 모바일 첨부파일 아이콘 */
.mobile-notice-item .notice-attachment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.mobile-notice-item .notice-attachment svg {
  width: 100%;
  height: 100%;
  fill: #888888;
}

/* ===== 모바일 더보기 버튼 스타일 ===== */
.mobile-load-more-container {
  display: none; /* 기본적으로 숨김 - 모바일에서만 표시 */
  justify-content: center;
  align-items: center;
  padding: 32px 0;
  margin-top: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-load-more-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-load-more-btn:hover {
  background: #333333;
  transform: translateY(-1px);
}

.mobile-load-more-btn:active {
  transform: translateY(0);
}

/* ===== 페이지네이션 & 더보기 버튼 반응형 제어 ===== */
@media screen and (max-width: 860px) {
  /* 모바일/태블릿: 더보기 버튼 표시, 페이지네이션(검색 포함) 숨김 */
  .mobile-load-more-container {
    display: flex;
    opacity: 1;
  }
  .pagination {
    display: none !important;
  }
}

/* ===== 페이지네이션 스타일 ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  user-select: none;
}

.pagination-left {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 8px;
  gap: 8px;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 0;
}

.page-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 10px;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.168px;
  line-height: 1.5;
  user-select: none;
}

.page-number:hover {
  color: #222222;
}

.page-number.active {
  color: #000000;
  font-weight: 400;
}

.prev-arrow,
.next-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  user-select: none;
}

.prev-arrow:hover,
.next-arrow:hover {
  opacity: 0.7;
}

.prev-arrow.disabled,
.next-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ===== 검색 박스 스타일 ===== */
.search-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 48px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0 12px 0 6px;
  background: white;
  transition: border-color 0.2s ease;
  gap: 0px;
}

.search-container:hover {
  border-color: #0199e5;
}

.search-input {
  flex: 1;
  max-width: 148px;
  border: none;
  outline: none;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  color: #222222;
  background: transparent;
  padding: 0 6px;
  overflow: visible;
}

.search-input::placeholder {
  color: #888888;
}

.search-container svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.search-box svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* =================================== */
/* ========== 반응형 스타일 ========== */
/* =================================== */

/* ===== 태블릿 (860px 이하) ===== */
@media (max-width: 860px) {
  .notice-sec1,
  .notice-sec2 {
    padding: 120px 0 80px;
  }

  .notice-list {
    max-width: 375px;
    margin: 0 auto;
  }

  /* 페이지네이션 숨김 */
  .pagination {
    display: none !important;
  }

  /* 더보기 버튼 표시 */
  .mobile-load-more-container {
    display: flex;
    opacity: 1;
  }

  /* --- 상세보기 --- */
  .notice-detail-view-figma .notice-detail-category,
  .notice-detail-view-figma .notice-detail-title-section {
    margin-bottom: 16px;
  }

  .notice-detail-view-figma .notice-detail-attachment-section,
  .notice-detail-view-figma .notice-detail-content-section,
  .notice-detail-view-figma .notice-detail-navigation {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .notice-detail-view-figma .notice-detail-main-title {
    font-size: 24px;
    letter-spacing: -0.288px;
    /* max-width: calc(100% - 32px); */
    padding: 0 16px;
  }

  .notice-detail-view-figma .notice-detail-category-text,
  .notice-detail-view-figma .notice-detail-date-text,
  .notice-detail-view-figma .notice-detail-content-text,
  .notice-detail-view-figma .notice-nav-label {
    font-size: 16px;
  }

  .notice-detail-view-figma .notice-detail-content-text {
    width: 100%;
    max-width: 640px;
  }

  /* 이전/다음글 제목 숨김 */
  .notice-detail-view-figma .notice-nav-title {
    display: none;
  }
}

/* ===== 모바일 (768px 이하) ===== */
@media (max-width: 768px) {
  /* --- 상세보기 --- */
  .notice-detail-view-figma .notice-detail-category,
  .notice-detail-view-figma .notice-detail-title-section {
    margin-bottom: 16px;
  }

  .notice-detail-view-figma .notice-detail-date-section {
    margin-bottom: 20px;
  }

  .notice-detail-view-figma .notice-detail-attachment-item {
    padding: 12px 16px;
    height: 56px;
  }

  .notice-detail-view-figma .notice-detail-attachment-name {
    font-size: 14px;
  }

  .notice-detail-view-figma .notice-detail-content-section {
    padding: 40px 0;
  }

  .notice-detail-view-figma .notice-detail-content-text {
    padding: 0 16px;
  }

  .notice-detail-view-figma .notice-detail-navigation {
    height: auto;
    gap: 16px;
    padding: 20px 16px;
    margin-bottom: 60px;
    align-items: stretch;
  }

  .notice-detail-view-figma .notice-nav-item {
    gap: 12px;
  }

  .notice-detail-view-figma .notice-detail-list-btn {
    font-size: 16px;
    padding: 12px 36px;
    width: 160px;
    height: 48px;
  }

  .notice-detail-view-figma .notice-detail-list-btn-section {
    margin-bottom: 32px;
  }
}

/* ===== 작은 모바일 (480px 이하) ===== */
@media (max-width: 480px) {
  .notice-list {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* --- 상세보기 --- */
  .notice-detail-view-figma .notice-detail-category-text,
  .notice-detail-view-figma .notice-detail-date-text,
  .notice-detail-view-figma .notice-nav-label {
    font-size: 14px;
  }

  .notice-detail-view-figma .notice-detail-main-title {
    font-size: 20px;
    letter-spacing: -0.24px;
  }

  .notice-detail-view-figma .notice-detail-attachment-item {
    padding: 10px 12px;
    height: 48px;
  }

  .notice-detail-view-figma .notice-detail-attachment-name {
    font-size: 13px;
  }

  .notice-detail-view-figma .notice-detail-content-section {
    padding: 32px 0;
  }

  .notice-detail-view-figma .notice-detail-content-text {
    font-size: 14px;
    padding: 0 12px;
  }

  .notice-detail-view-figma .notice-detail-navigation {
    padding: 16px 12px;
    margin-bottom: 48px;
  }

  .notice-detail-view-figma .notice-detail-list-btn {
    font-size: 14px;
    padding: 10px 28px;
    width: 140px;
    height: 44px;
  }
}

/* 공지사항 상세보기 모달 */
.notice-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.notice-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.notice-modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
}

.notice-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #e5e5e5;
}

.notice-modal-title {
  flex: 1;
}

.notice-modal-title h2 {
  font-family: "Pretendard", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222222;
  line-height: 1.4;
  margin: 0;
}

.notice-modal-title .notice-badge {
  margin-bottom: 8px;
  display: inline-block;
}

.notice-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #888888;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.notice-modal-close:hover {
  background-color: #f5f5f5;
  color: #222222;
}

.notice-modal-body {
  padding: 24px;
}

.notice-modal-date {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  color: #888888;
  margin-bottom: 20px;
}

.notice-modal-content-text {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  color: #222222;
  line-height: 1.6;
  margin-bottom: 20px;
  white-space: pre-wrap;
}

.notice-modal-attachment {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  color: #0199e5;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #0199e5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 모바일 반응형 */
@media (max-width: 480px) {
  .notice-modal-content {
    width: 95%;
    max-height: 85vh;
  }

  .notice-modal-header,
  .notice-modal-body {
    padding: 16px;
  }

  .notice-modal-title h2 {
    font-size: 18px;
  }

  .notice-modal-content-text {
    font-size: 14px;
  }
}

/* 피그마 디자인 기반 공지사항 상세보기 스타일 */
.notice-detail-view-figma {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notice-detail-category {
  margin-bottom: 24px;
}

.notice-detail-category-text {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0055d4;
  text-align: center;
  letter-spacing: -0.216px;
}

/* 제목 섹션 */
.notice-detail-title-section {
  margin-bottom: 24px;
  text-align: center;
}

.notice-detail-main-title {
  font-family: "Pretendard", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #222222;
  line-height: normal;
  letter-spacing: -0.384px;
  margin: 0;
  text-align: center;
  max-width: 1040px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 날짜 섹션 */
.notice-detail-date-section {
  margin-bottom: 50px;
  text-align: center;
}

.notice-detail-date-text {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #888888;
  letter-spacing: -0.216px;
}

/* 첨부파일 섹션 */
.notice-detail-attachment-section {
  max-width: 1040px;
  width: 100%;
  margin-bottom: 0;
}

.notice-detail-attachment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid #222222;
  height: 64px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.notice-detail-attachment-item:hover {
  background-color: #f8f9fa;
}

.notice-detail-attachment-item:active {
  background-color: #e9ecef;
}

/* 다운로드 중 상태 스타일 */
.notice-detail-attachment-item.downloading {
  background-color: #f0f0f0;
  opacity: 0.7;
}

.notice-detail-attachment-item.downloading:hover {
  background-color: #f0f0f0; /* 다운로드 중일 때는 hover 효과 무시 */
}

/* 다운로드 로딩 스피너 */
.download-loading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #e0e0e0;
  border-top: 2px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  flex-shrink: 0;
}

/* 다운로드 중 텍스트 스타일 */
.downloading-text {
  color: #666666 !important;
  font-style: italic;
}

/* 스피너 애니메이션 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.notice-detail-attachment-name {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  letter-spacing: -0.192px;
  line-height: 1.5;
}

/* 본문 섹션 */
.notice-detail-content-section {
  max-width: 1040px;
  width: 100%;
  border-top: 1px solid #222222; /* 기본은 진한 보더 */
  border-bottom: 1px solid #eeeeee;
  padding: 60px 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

/* 첨부파일이 있을 경우, 본문 상단 보더는 흐리게 처리 */
.notice-detail-attachment-section + .notice-detail-content-section {
  border-top-color: #eeeeee;
}

.notice-detail-content-text {
  width: 640px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  line-height: 1.5;
  letter-spacing: -0.216px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 이전글/다음글 네비게이션 */
.notice-detail-navigation {
  max-width: 1040px;
  width: 100%;
  padding: 0 16px;
  border-bottom: 1px solid #222222;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 80px;
}

.notice-nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.notice-nav-prev .notice-nav-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-nav-next .notice-nav-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-nav-label {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #222222;
  letter-spacing: -0.216px;
  line-height: 1.5;
}

.notice-nav-title {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  letter-spacing: -0.216px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

/* 목록 버튼 섹션 */
.notice-detail-list-btn-section {
  margin-bottom: 40px;
}

.notice-detail-list-btn {
  background: #000000;
  border: none;
  border-radius: 8px;
  padding: 16px 46px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease;
  line-height: 20px;
  height: 56px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-detail-list-btn:hover {
  background: #333333;
}

/* 빈 상태 메시지 스타일 */
.notice-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: 200px;
  background: white;
}

.notice-empty-message {
  text-align: center;
  color: #666666;
}

.notice-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.notice-empty-text {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #999999;
  letter-spacing: -0.216px;
  line-height: 1.5;
}

/* 모바일에서 빈 상태 스타일 조정 */
@media screen and (max-width: 860px) {
  .notice-empty-state {
    padding: 60px 20px;
    min-height: 150px;
  }

  .notice-empty-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .notice-empty-text {
    font-size: 16px;
  }
}
