:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #142033;
  --muted: #5b677a;
  --line: #dbe3ef;
  --navy: #07162d;
  --navy-2: #0d2446;
  --blue: #2f80ed;
  --cyan: #23c7d9;
  --orange: #ff8a3d;
  --green: #25a56a;
  --shadow: 0 18px 45px rgba(8, 23, 50, 0.12);
  --radius: 22px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Pretendard, "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.68;
  display: flex;
  flex-direction: column;
}

body.modal-open {
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.poster-modal[hidden] {
  display: none;
}

.poster-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.poster-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 45, 0.72);
  backdrop-filter: blur(6px);
}

.poster-modal-panel {
  position: relative;
  width: min(96vw, 860px);
  max-height: calc(100vh - 40px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,0.35);
}

.poster-modal--single .poster-modal-panel,
.poster-modal--gallery .poster-modal-panel {
  width: min(92vw, 720px);
}

.poster-modal--gallery .poster-modal-panel {
  width: max-content;
  max-width: 96vw;
}

.poster-modal-image-wrap {
  min-height: 0;
  overflow: auto;
  background: #07162d;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 14px;
  padding: 18px;
}

.poster-modal--single .poster-modal-image-wrap {
  display: block;
}

.poster-modal-image {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  margin: 0;
  max-width: 100%;
}

.poster-modal--gallery .poster-modal-image {
  width: auto;
  height: calc(100vh - 140px);
  max-width: none;
  max-height: calc(100vh - 140px);
}

.poster-modal--single .poster-modal-image {
  max-width: none;
}

.poster-modal-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.poster-modal-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.poster-modal-button.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.poster-modal-button.secondary {
  background: #fff;
  color: var(--navy);
}

/* 브랜드 로고 및 글씨 */
.brand-logo {
  width: 100px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--navy);
  min-width: 0;
}
.brand span {
  font-size: 20px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid;
  place-items: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(47,128,237,0.28);
}

/* 상단 메뉴 바 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(219,227,239,0.8);
}

.navbar {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 700;
  color: #23324a;
}
.nav-menu a { opacity: 0.86; }
.nav-menu a:hover, .nav-menu a.active { color: var(--blue); opacity: 1; }
.nav-menu .apply-link {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  opacity: 1;
}
.nav-menu a.apply-link:hover,
.nav-menu a.apply-link.active {
  color: #fff;
}
.nav-menu a.apply-link.active {
  background: var(--blue);
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font-size: 20px;
}

/* .hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(35,199,217,0.24), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(255,138,61,0.2), transparent 28%),
    linear-gradient(135deg, #07162d 0%, #0d2446 55%, #102b52 100%);
  color: white;
} */
 .hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 22, 45, 0.62), rgba(7, 22, 45, 0.62)),
    url("../assets/banner2.jpg") center/cover no-repeat;
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 22px 76px;
  display: grid;
  gap: 40px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.hero-title-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}
.hero-title-copy {
  min-width: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  color: #b6f3ff;
  font-size: 14px;
  font-weight: 800;
}
.hero h1 {
  margin: 30px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.065em;
}
.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}
.hero p {
  margin: 0;
  color: #d7e6fa;
  font-size: 19px;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  padding-bottom: 8px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}
.button.primary { background: var(--orange); color: #fff; }
.button.secondary { border-color: rgba(255,255,255,0.26); color: #fff; background: rgba(255,255,255,0.08); }
.button.light { background: #fff; color: var(--navy); border-color: var(--line); }
.button.blue { background: var(--blue); color: #fff; }

.hero-panel {
  width: 100%;
}

.event-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.event-card h3 {
  margin: 0 0 22px;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.event-info-list {
  display: grid;
  margin: 0;
  gap: 14px;
  grid-template-rows: repeat(4, minmax(54px, 1fr));
}

.event-info-primary {
  grid-template-columns: 1fr;
}

.event-info-secondary {
  grid-template-columns: 1fr;
}

.event-info-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
}

.event-info-list dt {
  color: #b6f3ff;
  font-weight: 900;
}

.event-info-list dd {
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: break-word;
}
/* .orbit-card {
  min-height: 300px;
  border-radius: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,0.22), transparent 12%),
    radial-gradient(circle at 50% 40%, rgba(35,199,217,0.36), transparent 20%),
    linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  position: relative;
  overflow: hidden;
} */

/* .orbit-card {
  min-height: 300px;
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(rgba(10, 24, 48, 0.35), rgba(10, 24, 48, 0.65)),
    url("../assets/arena.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.orbit-card h3 { margin: 0; font-size: 22px; letter-spacing: -0.03em; }
.orbit-card p { font-size: 15px; color: #cfe2fb; }
*/

.orbit-card {
  min-height: 300px;
}

.orbit-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

/* .orbit-photo {
  min-height: 250px;
  border-radius: 18px;
  background: url("../assets/arena.jpg") center/cover no-repeat;
} */

.orbit-card::before,
.orbit-card::after,
.rover-dot {
  display: none;
} 

.rover-dot {
  position: absolute;
  right: 48px; bottom: 52px;
  width: 74px; height: 42px;
  border-radius: 14px 14px 10px 10px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,0.24);
}



.rover-dot::before, .rover-dot::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
}
.rover-dot::before { left: 8px; }
.rover-dot::after { right: 8px; }

main {
  flex: 1 0 auto;
}
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 22px;
}

.section.compact { padding: 22px 22px; }

.schedule-notice {
  padding-top: 48px;
  padding-bottom: 16px;
}

.section.compact.schedule-list {
  padding-top: 32px;
  padding-bottom: 48px;
}

.schedule-list .timeline-item {
  grid-template-columns: 210px 1fr;
}

.faq-list-section {
  padding-bottom: 26px;
}
.qna-section {
  padding-top: 30px;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}
.eyebrow {
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.055em;
}
h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: -0.03em; }
p { margin: 0; }
.lead { color: var(--muted); font-size: 18px; max-width: 760px; }

.grid { display: grid; gap: 22px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 26px rgba(8,23,50,0.06);
}
.card.emphasis {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  border-color: transparent;
}
.card.emphasis p { color: #d7e6fa; }
.card .meta { color: var(--blue); font-weight: 900; font-size: 14px; margin-bottom: 8px; }
.card p, li { color: var(--muted); }

.quick-info {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.quick-info .card {
  padding-inline: 20px;
  box-shadow: var(--shadow);
}
.quick-info .stat-value {
  white-space: nowrap;
}
.stat-value { font-size: 24px; font-weight: 850; letter-spacing: -0.045em; color: var(--navy); }
.stat-label { font-size: 14px; color: var(--muted); font-weight: 700; }

.band {
  background: #eef4fb;
  border-block: 1px solid var(--line);
}
.timeline { position: relative; display: grid; gap: 16px; }
.timeline-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 38px;
  align-items: center;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.timeline-date {
  align-self: center;
  color: var(--blue);
  font-weight: 950;
  font-size: 16px;
  line-height: 1.55;
  white-space: nowrap;
}
.timeline-date span {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.timeline-title { font-weight: 950; color: var(--navy); }

.process-timeline .timeline-item {
  grid-template-columns: 150px 1fr;
  gap: 28px;
}

.process-timeline .timeline-date {
  justify-self: center;
  text-align: center;
}

.application-timeline .timeline-date {
  justify-self: center;
  text-align: center;
}

.page-hero {
  background:
    radial-gradient(circle at 12% 0%, rgba(35,199,217,0.23), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 66px 22px;
}
.page-hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.06em;
}
.page-hero p { max-width: 820px; color: #d7e6fa; font-size: 18px; }

.list { padding-left: 20px; margin: 14px 0 0; }
.list li { margin: 8px 0; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill { padding: 8px 12px; border-radius: 999px; background: #edf5ff; color: #1557a8; font-weight: 800; font-size: 14px; }

.table-wrap { overflow-x: auto; border-radius: 18px; border: 1px solid var(--line); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; }
th { background: #f0f5fb; color: var(--navy); font-weight: 950; }
td { color: var(--muted); }
tr:last-child td { border-bottom: 0; }

.notice-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.notice-toolbar h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.notice-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.qna-toolbar {
  justify-content: flex-end;
}

.notice-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.notice-board-head,
.notice-board .notice-link {
  display: grid;
  grid-template-columns: 72px 92px minmax(0, 1fr) 132px;
  gap: 18px;
  align-items: center;
}

.qna-board-head,
.notice-board .qna-link {
  grid-template-columns: 72px 96px minmax(0, 1fr) 120px 132px;
}

.notice-board-head span:nth-child(1),
.notice-board-head span:nth-child(2),
.notice-link span:nth-child(1),
.notice-link span:nth-child(2),
.qna-board-head span:nth-child(1),
.qna-board-head span:nth-child(2),
.qna-link span:nth-child(1),
.qna-link span:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.notice-board-head {
  padding: 15px 22px;
  background: #f0f5fb;
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
  border-bottom: 1px solid var(--line);
}

.notice-board .notice-item {
  margin: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}

.notice-board .notice-item:last-child {
  border-bottom: 0;
}

.notice-board .notice-link {
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 900;
}

.notice-board .notice-link:hover {
  background: #fbfdff;
}

.notice-empty {
  padding: 34px 22px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.pagination button {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.pagination button:hover,
.pagination button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pagination button:disabled:hover {
  border-color: var(--line);
  background: #fff;
  color: var(--navy);
}

.notice-no,
.notice-date {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.notice-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notice-no:first-child {
  min-width: 0;
}

.pinned-notice-badge {
  padding: 3px 8px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #1557a8;
  font-size: 12px;
  font-weight: 950;
}

.notice-title {
  min-width: 0;
}

.notice-board .notice-body {
  padding: 0 22px 20px 204px;
  background: #fbfdff;
  border-top: 1px solid #edf2f8;
}

.notice-post {
  max-width: 920px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.notice-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 16px;
}

.notice-post h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.notice-post p {
  color: var(--muted);
  font-size: 17px;
}

.notice-post-content {
  display: grid;
  gap: 16px;
}

.notice-post-content h3,
.notice-post-content h4,
.notice-post-content h5 {
  margin: 8px 0 0;
  color: var(--navy);
  line-height: 1.35;
}

.notice-post-content h3 { font-size: 24px; }
.notice-post-content h4 { font-size: 21px; }
.notice-post-content h5 { font-size: 18px; }

.notice-post-content ul,
.notice-post-content ol {
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
}

.notice-post-content li {
  margin: 6px 0;
}

.notice-post-content a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-content-image {
  width: min(100%, 760px);
  height: auto;
  margin: 6px auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.notice-attachments {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.notice-attachments h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 20px;
}

.notice-attachment-list {
  display: grid;
  gap: 10px;
}

.notice-attachment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--navy);
  font-weight: 900;
}

.notice-attachment::after {
  content: "다운로드";
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 13px;
}

.notice-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.qna-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.qna-form,
.qna-answer-form,
.qna-answer-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.qna-form {
  padding: 24px;
}

.qna-write-form {
  max-width: 820px;
  margin: 0 auto;
}

.qna-form h3,
.qna-form h2,
.qna-answer-form h3,
.qna-answer-box h3 {
  margin: 0 0 18px;
  color: var(--navy);
}

.qna-form label,
.qna-answer-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--navy);
  font-weight: 900;
}

.qna-form input,
.qna-form textarea,
.qna-answer-form input,
.qna-answer-form textarea,
.qna-delete-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.qna-form textarea,
.qna-answer-form textarea {
  resize: vertical;
  line-height: 1.65;
}

.field-counter {
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field-help {
  margin: -7px 0 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.field-counter.is-over {
  color: #d33b2f;
}

.qna-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.qna-answer-box {
  margin-top: 28px;
  padding: 24px;
  background: #fbfdff;
}

.qna-answer-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.qna-answer-head h3 {
  margin: 0;
}

.qna-admin-toggle {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 9px 12px;
  color: var(--blue);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.qna-answer-form {
  margin-top: 24px;
  padding: 24px;
}

.qna-answer-form input,
.qna-answer-form textarea {
  max-width: 640px;
}

.qna-answer-form .button {
  margin-top: 4px;
}

.qna-delete-form {
  display: grid;
  grid-template-columns: minmax(0, 260px) auto;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
}

.qna-delete-form .admin-message {
  grid-column: 1 / -1;
}

.tag-blue {
  background: #e8f2ff;
  color: #1557a8;
}

.admin-shell {
  display: grid;
  gap: 20px;
}

.admin-login,
.admin-panel,
.admin-form,
.admin-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-login {
  max-width: 460px;
  padding: 28px;
}

.admin-login h2,
.admin-panel h2,
.admin-list h3 {
  margin: 0 0 18px;
  color: var(--navy);
}

.admin-panel {
  padding: 28px;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 22px;
  align-items: start;
}

.admin-form,
.admin-list {
  padding: 22px;
}

.admin-login label,
.admin-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 900;
}

.admin-login input,
.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.admin-form textarea {
  resize: vertical;
  line-height: 1.65;
}

.admin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0 18px;
}

.admin-checks label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.admin-checks input {
  width: auto;
}

.admin-actions,
.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-notice-list {
  display: grid;
  gap: 12px;
}

.admin-notice-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.admin-notice-item strong,
.admin-notice-item span {
  display: block;
}

.admin-notice-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.admin-row-actions button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 9px 11px;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.notice-item, .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
}
.notice-head, .faq-question {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 20px 22px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  color: var(--navy);
}
.notice-body, .faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}
.notice-item.open .notice-body, .faq-item.open .faq-answer { display: block; }
.tag {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff0e8;
  color: #b64d13;
  font-size: 12px;
  font-weight: 900;
  margin-right: 8px;
}
/*
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.partner {
  min-height: 84px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(8, 23, 50, 0.06);
  color: var(--navy);
}

.partner-logo-slot {
  width: 118px;
  height: 56px;
  border: 1px dashed #cbd7e8;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8fa2bd;
  font-size: 13px;
  font-weight: 900;
}

.partner-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.partner-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.partner strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.partner small {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #edf5ff;
  color: #1557a8;
  font-size: 14px;
  font-weight: 900;
} */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.management-partner-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner {
  min-height: 88px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 14px rgba(8, 23, 50, 0.06);
  color: var(--navy);
}

.partner-logo-slot {
  width: 124px;
  height: 66px;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.partner-logo-slot img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-slot span {
  color: #8fa2bd;
  font-size: 13px;
  font-weight: 900;
}

.partner-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.partner strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.partner small {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #edf5ff;
  color: #1557a8;
  font-size: 14px;
  font-weight: 900;
}

.partner.pending-partner {
  background: #fbfdff;
  border: 1px dashed #c9d8ea;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.pending-partner .partner-info {
  align-items: center;
}

.pending-partner strong {
  font-size: 24px;
  line-height: 1.2;
  color: #2b5f9f;
}

.logo-kasa {
  max-width: 100px;
  max-height: 44px;
}

.logo-kaeri {
  max-width: 98px;
  max-height: 58px;
}

.logo-kaist {
  max-width: 108px;
  max-height: 38px;
}

.logo-sacheon {
  max-width: 66px;
  max-height: 56px;
}

.logo-uel {
  max-width: 96px;
  max-height: 42px;
}

.award-benefit-grid {
  margin-top: 22px;
}

.award-benefit-card {
  grid-column: 1 / -1;
}

/*
@media (max-width: 980px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 84px;
    padding: 10px 12px;
  }

  .partner-logo-slot {
    width: 120px;
    height: 60px;
  }
}

@media (max-width: 420px) {
  .partner {
    grid-template-columns: 112px minmax(0, 1fr);
    text-align: left;
    justify-items: stretch;
  }

  .partner-logo-slot {
    width: 112px;
    height: 58px;
  }

  .partner-info {
    align-items: flex-start;
  }

  .partner small {
    justify-self: start;
  }

  .partner strong {
    font-size: 17px;
  }
} */

@media (max-width: 980px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 84px;
    padding: 10px 12px;
  }

  .partner-logo-slot {
    width: 120px;
    height: 60px;
  }
}

@media (max-width: 420px) {
  .partner {
    grid-template-columns: 112px minmax(0, 1fr);
    text-align: left;
    justify-items: stretch;
  }

  .partner-logo-slot {
    width: 112px;
    height: 58px;
  }

  .partner-info {
    align-items: flex-start;
  }

  .partner small {
    justify-self: start;
  }

  .partner strong {
    font-size: 17px;
  }
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.official-download {
  align-items: center;
  padding: 30px;
}
.download-card .button {
  min-width: 96px;
  white-space: nowrap;
}
.download-card.official-download .button {
  min-width: 180px;
  min-height: 54px;
  font-size: 16px;
}

.single-line-note {
  max-width: none;
  margin-top: 18px;
  white-space: nowrap;
}

.evaluation-grid {
  align-items: stretch;
}

.evaluation-grid .card {
  overflow: hidden;
}

.evaluation-table-wrap {
  overflow: visible;
}

.evaluation-table {
  min-width: 0;
  table-layout: fixed;
}

.evaluation-table th {
  width: 34%;
}

.evaluation-table th,
.evaluation-table td {
  vertical-align: middle;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.site-footer {
  background: #07162d;
  color: #cdd8e8;
  flex-shrink: 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}
.footer-inner h3 { color: white; }
.footer-inner p, .footer-inner a { color: #aebed4; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 22px;
  text-align: center;
  color: #8fa2bd;
}

.alert {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff9ed;
  border: 1px solid #ffe1b8;
  color: #7b4a12;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 22px;
    right: 22px;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .menu-button { display: block; }
}

@media (max-width: 1120px) {
  .hero-title-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-actions {
    justify-content: flex-start;
    padding-bottom: 0;
  }
}

@media (max-width: 980px) {
  .hero-inner { padding-top: 70px; }
  .hero h2 {
    font-size: clamp(30px, 6vw, 52px);
  }
  .event-info-primary,
  .event-info-secondary {
    grid-template-columns: 1fr;
  }
  .grid.cols-4, .grid.cols-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .partner-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .award-benefit-card { grid-column: 1 / -1; }
}
@media (max-width: 1240px) {
  .quick-info .grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .quick-info .stat-value {
    white-space: normal;
    line-height: 1.35;
  }
}
@media (max-width: 760px) {
  .event-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .navbar { gap: 12px; }
  .poster-modal {
    padding: 14px;
  }
  .poster-modal-panel {
    width: min(100%, 420px);
    max-height: calc(100vh - 28px);
    border-radius: 14px;
  }
  .poster-modal-image {
    max-height: calc(100vh - 132px);
  }
  .poster-modal-actions {
    grid-template-columns: 1fr;
  }
  .brand {
    gap: 12px;
  }
  .brand span {
    font-size: 18px;
  }
  .hero-inner {
    padding: 56px 16px 58px;
    gap: 28px;
  }
  .hero-copy {
    gap: 22px;
  }
  .badge {
    font-size: 13px;
  }
  .hero h2 {
    margin-bottom: 12px;
    font-size: clamp(20px, 6.2vw, 30px);
  }
  .hero p {
    font-size: 16px;
    line-height: 1.55;
  }
  .event-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .event-info-primary,
  .event-info-secondary {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .event-info-list div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .partner {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .partner-logo-slot {
    width: 104px;
    height: 58px;
  }
  .partner strong {
    font-size: 16px;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .partner small {
    min-height: 24px;
    padding: 2px 8px;
    font-size: 13px;
  }
  .section-title { display: block; }
  .section-title .button { margin-top: 14px; }
  /* .timeline-item { grid-template-columns: 1fr; }
  .schedule-list .timeline-item { grid-template-columns: 1fr; } */
  .timeline-item {
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  padding: 16px 20px;
  min-height: auto;
}
.timeline-date {
  line-height: 1.35;
  transform: none;
}
.timeline-title {
  line-height: 1.35;
}
.timeline-item p {
  margin-top: 2px;
  line-height: 1.45;
}

.schedule-list .timeline-item {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 16px 20px;
  min-height: auto;
}
  .hero-actions {
    flex-direction: row;
    gap: 10px;
  }
  .hero-actions .button {
    width: auto;
    min-width: 0;
    padding-inline: 16px;
  }
  .button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .download-card { align-items: flex-start; flex-direction: column; }
  .single-line-note { white-space: normal; }
  .admin-panel-head,
  .admin-notice-item {
    grid-template-columns: 1fr;
    display: grid;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .qna-layout,
  .qna-form-grid {
    grid-template-columns: 1fr;
  }
  .qna-delete-form {
    grid-template-columns: 1fr;
  }
  .qna-answer-head {
    display: grid;
    align-items: stretch;
  }
  .notice-toolbar {
    display: grid;
    align-items: stretch;
  }
  .notice-toolbar .button {
    width: 100%;
  }
  .notice-board-head {
    display: none;
  }
  .notice-board .notice-link {
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
  }
  .notice-board .qna-link {
    grid-template-columns: auto 1fr;
  }
  .notice-no {
    display: none;
  }
  .notice-title {
    grid-column: 2;
  }
  .notice-date {
    grid-column: 2;
  }
  .qna-link .notice-date {
    grid-column: 2;
  }
  .notice-board .notice-body {
    padding: 0 22px 20px;
  }
}
