@import "https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@600;700;900&display=swap";
/* [project]/src/app/(public)/public.css [app-client] (css) */
:root {
  --bg-1: #252423;
  --bg-2: #2a2928;
  --bg-3: #2f2e2d;
  --bg-4: #353433;
  --bg-5: #3a3938;
  --bg-6: #3f3e3d;
  --bg-7: #444342;
  --fg-1: #f6f4f2;
  --fg-2: #d5d3d1;
  --fg-3: #b4b1af;
  --fg-4: #93908e;
  --fg-5: #625d5b;
  --fg-6: #474543;
  --fg-7: #393735;
  --red-1: #ff4b4b;
  --red-2: #d34343;
  --red-3: #883534;
  --red-5: #5d2d2c;
  --red-6: #4b2a29;
  --red-7: #3c2726;
  --orange-1: #ffa828;
  --orange-2: #d38e27;
  --orange-7: #3c3123;
  --turquoise-1: #0fa;
  --turquoise-7: #203b31;
  --king-1: #4d9cff;
  --king-7: #28303a;
  --lavender-1: #a369ff;
  --green-1: #8dff55;
  --hdr-h: 3.5rem;
  --r-xs: .125rem;
  --r-s: .25rem;
  --r-m: .5rem;
  --r-l: .75rem;
}

@media (min-width: 900px) {
  :root {
    --hdr-h: 4rem;
  }
}

.pub * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pub a {
  color: inherit;
  text-decoration: none;
}

.pub {
  background: var(--bg-1);
  min-height: 100vh;
  color: var(--fg-3);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: break-word;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: .9375rem;
  line-height: 1.6;
  display: flex;
}

.pub ::selection {
  background: var(--fg-4);
  color: var(--bg-1);
}

.pub-w {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 900px) {
  .pub-w {
    padding: 0 1.5rem;
  }
}

.pub-hdr {
  z-index: 100;
  background: var(--bg-1);
  position: sticky;
  top: 0;
}

.pub-hdr-in {
  height: var(--hdr-h);
  border-bottom: 1px solid var(--bg-4);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.pub-hdr-logo {
  color: var(--fg-1);
  font-size: 1rem;
  font-weight: 700;
}

.pub-hdr-logo:hover {
  color: var(--fg-2);
}

.pub-hdr-nav {
  align-items: center;
  height: 100%;
  display: flex;
}

.pub-hdr-nav a {
  height: 100%;
  color: var(--fg-4);
  align-items: center;
  gap: .375rem;
  padding: 0 .75rem;
  font-size: .8125rem;
  font-weight: 700;
  display: flex;
  position: relative;
}

.pub-hdr-nav a:hover {
  color: var(--fg-1);
}

.pub-hdr-nav a:after {
  content: "";
  background: none;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: .75rem;
  right: .75rem;
}

.pub-hdr-nav a:hover:after {
  opacity: .5;
  background: currentColor;
}

.pub-hdr-nav .nav-accent, .pub-hdr-nav .nav-accent:hover {
  color: var(--red-1);
}

.pub-hero {
  padding: 3rem 0 2.5rem;
}

@media (min-width: 900px) {
  .pub-hero {
    padding: 4.5rem 0 3.5rem;
  }
}

.pub-hero h1 {
  color: var(--fg-1);
  letter-spacing: .02em;
  margin-bottom: .75rem;
  font-family: Noto Serif SC, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.3;
}

.pub-hero h1 .dot {
  color: var(--red-1);
}

.pub-hero p {
  color: var(--fg-3);
  max-width: 24rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.pub-hero-btns {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.btn {
  height: 2.75rem;
  font: inherit;
  color: var(--fg-4);
  border: 1px solid var(--fg-5);
  border-radius: var(--r-s);
  cursor: pointer;
  background: none;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 0 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  transition: color .1s, border-color .1s, background .1s, transform .1s;
  display: inline-flex;
}

.btn:hover {
  color: var(--fg-2);
  border-color: var(--fg-4);
}

.btn:active {
  transform: scale(.98);
}

.btn-red {
  color: var(--red-1);
  background: var(--red-5);
  border: none;
}

.btn-red:hover {
  background: var(--red-3);
}

.btn:disabled {
  pointer-events: none;
  opacity: .4;
}

.pub-sec {
  padding: 1.5rem 0;
}

@media (min-width: 900px) {
  .pub-sec {
    padding: 2.5rem 0;
  }
}

.pub-sec-title {
  color: var(--fg-5);
  border-bottom: 1px solid var(--bg-4);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: .75rem;
  font-size: .8125rem;
  font-weight: 700;
  display: flex;
}

.ll {
  list-style: none;
}

.ll-item {
  background: var(--bg-2);
  width: 100%;
  min-height: 2.75rem;
  color: var(--fg-3);
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  transition: background .1s, color .1s;
  display: flex;
  overflow: hidden;
}

.ll > li:first-child .ll-item {
  border-radius: var(--r-s) var(--r-s) 0 0;
}

.ll > li:last-child .ll-item {
  border-radius: 0 0 var(--r-s) var(--r-s);
}

.ll > li:only-child .ll-item {
  border-radius: var(--r-s);
}

.ll > li:not(:last-child) .ll-item {
  margin-bottom: 1px;
}

.ll-item:hover {
  background: var(--bg-3);
  color: var(--fg-1);
}

.ll-item:active {
  transform: scale(.999);
}

.ll-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  display: inline-block;
}

.ll-body {
  flex: 1;
  min-width: 0;
}

.ll-title {
  color: var(--fg-2);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .875rem;
  font-weight: 700;
  overflow: hidden;
}

.ll-item:hover .ll-title {
  color: var(--fg-1);
}

.ll-desc {
  color: var(--fg-4);
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 3px;
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.ll-arrow {
  width: 18px;
  height: 18px;
  color: var(--fg-5);
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform .1s;
}

.ll-item:hover .ll-arrow {
  color: var(--fg-4);
  transform: translateX(2px);
}

.ll-reply {
  background: var(--bg-3);
  border-radius: var(--r-s);
  border-left: 2px solid var(--red-1);
  margin-top: .625rem;
  padding: .625rem .75rem;
}

.ll-reply-label {
  color: var(--red-1);
  letter-spacing: .04em;
  margin-bottom: 2px;
  font-size: .6875rem;
  font-weight: 700;
}

.ll-reply-body {
  color: var(--fg-3);
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.5;
}

.ll-badge {
  height: 1.125rem;
  color: var(--fg-3);
  background: var(--bg-4);
  border-radius: var(--r-xs);
  white-space: nowrap;
  vertical-align: middle;
  align-items: center;
  margin-left: .375rem;
  padding: 0 .375rem;
  font-size: .625rem;
  font-weight: 700;
  display: inline-flex;
}

.ll-grid {
  flex-wrap: wrap;
  gap: 1px;
  list-style: none;
  display: flex;
}

.ll-grid > li {
  width: 100%;
}

.ll-grid > li .ll-item {
  border-radius: 0;
  margin-bottom: 0;
}

.ll-grid > li:first-child .ll-item {
  border-radius: var(--r-s) var(--r-s) 0 0;
}

.ll-grid > li:last-child .ll-item {
  border-radius: 0 0 var(--r-s) var(--r-s);
}

@media (min-width: 600px) {
  .ll-grid {
    gap: .375rem;
  }

  .ll-grid > li {
    width: calc(50% - .1875rem);
  }

  .ll-grid > li .ll-item {
    border-radius: var(--r-s);
    min-height: 2.75rem;
  }
}

@media (min-width: 900px) {
  .ll-grid > li {
    width: calc(33.333% - .25rem);
  }
}

.pub-cols {
  gap: 1.5rem;
  display: grid;
}

@media (min-width: 700px) {
  .pub-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .pub-cols-sidebar {
    grid-template-columns: 320px 1fr;
  }
}

.ann {
  background: var(--bg-2);
  border-radius: var(--r-s);
  border-left: 2px solid var(--orange-1);
  padding: .75rem 1rem;
  overflow: hidden;
}

.ann:not(:last-child) {
  margin-bottom: 1px;
}

.ann:hover {
  background: var(--bg-3);
}

.ann h4 {
  color: var(--fg-2);
  margin-bottom: 2px;
  font-size: .875rem;
  font-weight: 700;
}

.ann p {
  color: var(--fg-4);
  white-space: pre-wrap;
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.5;
}

.pub-ft {
  background: var(--bg-1);
  margin-top: auto;
  padding: 1rem;
}

@media (min-width: 900px) {
  .pub-ft {
    padding: 1.5rem;
  }
}

.pub-ft-in {
  border-top: 1px solid var(--bg-4);
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1rem;
}

.pub-ft-row {
  gap: 1.5rem;
  padding-bottom: 1rem;
  display: grid;
}

@media (min-width: 600px) {
  .pub-ft-row {
    grid-template-columns: 1fr 1fr;
  }
}

.pub-ft-h {
  color: var(--fg-5);
  padding: .5rem 0;
  font-size: .8125rem;
  font-weight: 700;
}

.ft-list {
  list-style: none;
}

.ft-list li a {
  height: 2.5rem;
  color: var(--fg-3);
  background: var(--bg-2);
  justify-content: space-between;
  align-items: center;
  padding: 0 .75rem;
  font-size: .8125rem;
  font-weight: 700;
  transition: background .1s, color .1s;
  display: flex;
}

.ft-list li:first-child a {
  border-radius: var(--r-s) var(--r-s) 0 0;
}

.ft-list li:last-child a {
  border-radius: 0 0 var(--r-s) var(--r-s);
}

.ft-list li:only-child a {
  border-radius: var(--r-s);
}

.ft-list li:not(:last-child) a {
  margin-bottom: 1px;
}

.ft-list li a:hover {
  background: var(--bg-3);
  color: var(--fg-1);
}

.ft-list li a svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform .1s;
}

.ft-list li a:hover svg {
  transform: translateX(2px);
}

.pub-ft-copy {
  color: var(--fg-5);
  font-size: .6875rem;
}

.pub-lbl {
  color: var(--fg-4);
  margin-bottom: .375rem;
  font-size: .8125rem;
  font-weight: 700;
  display: block;
}

.pub-lbl .req {
  color: var(--red-1);
}

.pub-lbl .opt {
  color: var(--fg-5);
  font-weight: 400;
}

.pub-inp {
  width: 100%;
  font: inherit;
  background: var(--bg-4);
  border-radius: var(--r-s);
  color: var(--fg-1);
  border: none;
  outline: none;
  padding: .625rem .75rem;
  font-size: .875rem;
  transition: background .1s, box-shadow .1s;
}

.pub-inp:focus {
  background: var(--bg-5);
  box-shadow: inset 0 0 0 1px var(--fg-5);
}

.pub-inp::placeholder {
  color: var(--fg-5);
}

textarea.pub-inp {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

select.pub-inp {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2393908e' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 5.646a.5.5 0 0 1 .708 0L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-position: right .75rem center;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.pub-chip {
  height: 1.875rem;
  font: inherit;
  background: var(--bg-4);
  color: var(--fg-4);
  border-radius: var(--r-s);
  cursor: pointer;
  border: none;
  align-items: center;
  padding: 0 .75rem;
  font-size: .8125rem;
  font-weight: 700;
  transition: background .1s, color .1s;
  display: inline-flex;
}

.pub-chip:hover {
  background: var(--bg-5);
  color: var(--fg-2);
}

.pub-chip.on {
  background: var(--red-5);
  color: var(--red-1);
}

.pub-submit {
  width: 100%;
  height: 2.75rem;
  font: inherit;
  color: var(--red-1);
  background: var(--red-5);
  border-radius: var(--r-s);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 700;
  transition: background .1s, transform .1s;
  display: flex;
}

.pub-submit:hover {
  background: var(--red-3);
}

.pub-submit:active {
  transform: scale(.99);
}

.pub-submit:disabled {
  pointer-events: none;
  opacity: .4;
}

.pub-sec-more {
  color: var(--fg-5);
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  font-weight: 700;
  transition: color .1s;
  display: inline-flex;
}

.pub-sec-more:hover {
  color: var(--fg-2);
}

.pub-sec-more .ll-arrow {
  width: 14px;
  height: 14px;
  margin-top: 0;
}

.ann-time {
  color: var(--fg-5);
  margin-top: .5rem;
  font-size: .6875rem;
}

.pub-empty {
  text-align: center;
  color: var(--fg-5);
  padding: 2rem 1rem;
  font-size: .8125rem;
}

.pub-form-pg {
  padding: 2rem 0 3rem;
}

@media (min-width: 900px) {
  .pub-form-pg {
    padding: 3.5rem 0 5rem;
  }
}

.pub-form-hd {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pub-form-hd h1 {
  color: var(--fg-1);
  letter-spacing: -.01em;
  margin-bottom: .375rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.pub-form-hd h1 .dot {
  color: var(--red-1);
}

.pub-form-hd p {
  color: var(--fg-4);
  margin-bottom: 0;
  font-size: .8125rem;
}

.pub-form-card {
  background: var(--bg-2);
  border-radius: var(--r-l);
  box-shadow: 0 1px 3px #0000001f, 0 0 0 1px var(--bg-4);
  padding: 1.25rem;
}

@media (min-width: 600px) {
  .pub-form-card {
    padding: 1.75rem;
  }
}

.pub-field {
  margin-bottom: 1rem;
}

.pub-field:last-child {
  margin-bottom: 0;
}

.pub-form-divider {
  background: var(--bg-4);
  height: 1px;
  margin: 1.25rem 0;
}

.pub-form-steps {
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.pub-form-step {
  background: var(--bg-5);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.pub-form-step.active {
  background: var(--red-1);
  box-shadow: 0 0 6px var(--red-5);
}

/*# sourceMappingURL=src_app_%28public%29_public_0gb7i4l.css.map*/