/* Notice board — general list style */

.notice_board { margin-top: 8px; }

.notice_board .page_ttl.only_pc {
  font-size: 18px; font-weight: 800; color: #ebc79e;
  text-shadow: 0 1px 2px rgba(0,0,0,.8); padding: 12px 14px 0;
}
.notice_board .page_ttl.only_pc i { margin-right: 8px; color: #e5aa06; }

.notice_hero {
  margin: 10px 12px 0; padding: 16px 18px; border-radius: 12px;
  border: 1px solid rgba(235,199,158,.22);
  background: linear-gradient(135deg, rgba(58,42,28,.95), rgba(24,18,14,.98));
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.notice_hero_title {
  display: flex; align-items: center; gap: 10px; margin: 0 0 6px;
  color: #f3e6d0; font-size: 15px; font-weight: 800;
}
.notice_hero_title i { color: #e5aa06; font-size: 18px; }
.notice_hero_desc { margin: 0; color: #a69788; font-size: 12px; line-height: 1.55; }

.notice_board_head {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 12px; padding: 12px 14px 0;
}
.notice_board_count {
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(235,199,158,.28);
  background: rgba(229,170,6,.1); color: #ebc79e;
  font-size: 12px; font-weight: 700;
}

.notice_board .notice_board_list {
  padding: 12px !important;
  background: rgba(31,31,31,.25);
  border: 1px solid #353535;
  box-sizing: border-box;
}

.notice_table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.notice_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.notice_table thead th {
  height: 38px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: #ebc79e;
  text-align: center;
  background: linear-gradient(180deg, #262626 0%, #191919 49%, #000 51%, #181818 100%);
  border-bottom: 1px solid #444;
}

.notice_table thead th.notice-col-subject-head { text-align: left; }

.notice_table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid #333;
  vertical-align: middle;
  font-size: 12px;
  color: #c8b9a6;
}

.notice-col-no {
  width: 56px;
  text-align: center;
  color: #8f8478;
  font-weight: 700;
}

.notice-col-subject { text-align: left; }

.notice-row-link {
  display: block;
  text-decoration: none !important;
  color: inherit;
}

.notice-row-title {
  display: inline;
  color: #f0e2cc;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.notice-row-link:hover .notice-row-title { color: #ffd98a; }

.notice-row-summary {
  display: block;
  margin-top: 4px;
  color: #8f8478;
  font-size: 11px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(229,170,6,.16);
  color: #e5aa06;
  font-size: 10px;
  font-weight: 700;
  vertical-align: middle;
}

.notice-row--pin td { background: rgba(229,170,6,.04); }

.notice-col-date {
  width: 130px;
  text-align: center;
  white-space: nowrap;
  color: #9a8f82;
  font-size: 11px;
}
.notice-col-date i { margin-right: 4px; color: #b9a48d; }

.notice-col-hit {
  width: 72px;
  text-align: center;
  color: #9a8f82;
  font-size: 11px;
}
.notice-col-hit i { margin-right: 3px; color: #b9a48d; }

.notice-row-loading td,
.notice-row-empty td,
.notice-row-error td {
  padding: 48px 16px !important;
  text-align: center;
  color: #b9a48d;
  font-size: 14px;
}
.notice-row-loading i {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  color: #ebc79e;
  animation: notice-spin 1s linear infinite;
}
@keyframes notice-spin { to { transform: rotate(360deg); } }

@media (max-width: 767px) {
  .notice_board .page_ttl.only_pc { display: none; }
  .notice_hero { margin: 8px 8px 0; padding: 14px; border-radius: 10px; }
  .notice_hero_title { font-size: 14px; }
  .notice_hero_desc { font-size: 11px; }
  .notice_board_head { padding: 10px 10px 0; }
  .notice_board .notice_board_list { padding: 8px !important; }
  .notice_table .notice-col-no,
  .notice_table .notice-col-date { display: none !important; }
  .notice-col-hit { width: 52px; font-size: 10px; }
  .notice-row-title { font-size: 12px; }
  .notice-row-summary { display: none; }
  .notice-row-loading td,
  .notice-row-empty td,
}
