* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Plus Jakarta Sans", "Noto Sans KR", sans-serif;
  color: #18181b;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.lg-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #e4e4e7;
  z-index: 10;
}
.lg-nav-in {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lg-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.lg-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #18181b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lg-logo-mark span {
  font-family: "Bebas Neue";
  font-size: 19px;
  color: #fb7427;
}
.lg-logo-text {
  font-size: 16px;
  font-weight: 800;
  color: #18181b;
  letter-spacing: -0.4px;
}
.lg-back {
  font-size: 14px;
  color: #52525b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.lg-back:hover {
  color: #fb7427;
}
.nw-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}
.nw-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: #c2410c;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.nw-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #fb7427;
}
.nw-title {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.nw-sub {
  font-size: 16px;
  color: #52525b;
  margin-bottom: 18px;
}
.nw-tabs {
  display: flex;
  gap: 8px;
  margin: 30px 0 8px;
  border-bottom: 2px solid #18181b;
  padding-bottom: 0;
}
.nw-tab {
  font-size: 14px;
  font-weight: 700;
  color: #a1a1aa;
  background: none;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s;
}
.nw-tab.on {
  color: #18181b;
  border-bottom-color: #fb7427;
}
.nw-tab:hover {
  color: #18181b;
}
.nw-list {
  margin-top: 8px;
}
.nw-item {
  display: block;
  padding: 26px 4px;
  border-bottom: 1px solid #e4e4e7;
  text-decoration: none;
  transition:
    background 0.15s,
    padding 0.15s;
}
.nw-item:hover {
  background: #fafafa;
  padding-left: 14px;
  padding-right: 14px;
}
.nw-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}
.nw-tag {
  font-size: 11px;
  font-weight: 800;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  background: #fff4ed;
  color: #c2410c;
}
.nw-tag.notice {
  background: #18181b;
  color: #fff;
}
.nw-date {
  font-family: "DM Mono", monospace;
  font-size: 12.5px;
  color: #a1a1aa;
}
.nw-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #18181b;
  letter-spacing: -0.4px;
  line-height: 1.45;
  margin-bottom: 7px;
  word-break: keep-all;
}
.nw-item:hover .nw-item-title {
  color: #c2410c;
}
.nw-item-desc {
  font-size: 14px;
  color: #52525b;
  line-height: 1.7;
  word-break: keep-all;
  max-width: 680px;
}
.lg-foot {
  border-top: 1px solid #e4e4e7;
  padding: 30px 24px;
  text-align: center;
  font-size: 12px;
  color: #a1a1aa;
  font-family: "DM Mono", monospace;
}
.nw-write {
  margin-left: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fb7427;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 5px;
}
.nw-write:hover {
  background: #c2410c;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(251, 116, 39, 0.3);
}
.nw-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.nw-modal.on {
  display: flex;
}
.nw-modal-box {
  background: #fff;
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  padding: 28px 28px 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: nwpop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes nwpop {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.nw-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.nw-modal-head h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nw-modal-note {
  font-size: 12px;
  color: #a1a1aa;
  margin-bottom: 16px;
  line-height: 1.6;
}
.nw-x {
  background: none;
  border: none;
  font-size: 19px;
  color: #a1a1aa;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.nw-x:hover {
  color: #18181b;
}
.nw-modal form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #52525b;
  margin: 14px 0 6px;
}
.nw-input {
  width: 100%;
  border: 1px solid #e4e4e7;
  border-radius: 9px;
  padding: 11px 13px;
  font-family: inherit;
  font-size: 14px;
  color: #18181b;
  background: #fafafa;
  transition:
    border 0.15s,
    background 0.15s;
}
.nw-input:focus {
  outline: none;
  border-color: #fb7427;
  background: #fff;
}
textarea.nw-input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.nw-modal-btns {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.nw-btn-c {
  flex: 1;
  background: #f4f4f5;
  color: #52525b;
  border: none;
  border-radius: 9px;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.nw-btn-c:hover {
  background: #e4e4e7;
}
.nw-btn-s {
  flex: 1.4;
  background: #18181b;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.nw-btn-s:hover {
  background: #fb7427;
}
.nw-del {
  margin-left: auto;
  background: none;
  border: 1px solid #e4e4e7;
  color: #a1a1aa;
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 3px 9px;
  border-radius: 6px;
  transition: all 0.15s;
  flex-shrink: 0;
}
.nw-del:hover {
  color: #fff;
  background: #ef4444;
  border-color: #ef4444;
}
@media (max-width: 640px) {
  .nw-wrap {
    padding: 44px 20px 70px;
  }
  .nw-item-title {
    font-size: 16px;
  }
  .nw-write {
    font-size: 12px;
    padding: 8px 12px;
  }
}
