/* Go Work — landing styles */

:root {
  --bg: #0c1222;
  --bg-soft: #121a2e;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #e8ecf4;
  --muted: #9aa4b8;
  --accent: #e8a54b;
  --accent-soft: rgba(232, 165, 75, 0.15);
  --line: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --font-sans: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", "Outfit", system-ui, sans-serif;
  --font-sans-latin: "Outfit", "Noto Sans KR", system-ui, sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  /* Light areas (below hero) */
  --page-bg: #ffffff;
  --ink: #141b2d;
  --ink-muted: #5c6778;
  --line-light: rgba(20, 27, 45, 0.1);
  --surface-light: #f1f4f9;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(3.5rem + env(safe-area-inset-top, 0px));
  overflow-x: clip;
}

@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}

[hidden] {
  display: none !important;
}

html {
  background-color: var(--page-bg);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(232, 165, 75, 0.2);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  overflow-x: clip;
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.shell {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

@media (max-width: 640px) {
  .shell {
    width: min(1120px, 100% - 1.25rem);
  }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 18, 34, 0.85);
  backdrop-filter: blur(12px);
  color: var(--text);
  padding-top: env(safe-area-inset-top, 0px);
  overflow-x: clip;
  max-width: 100%;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  touch-action: manipulation;
  background: transparent;
}

.logo:focus {
  outline: none;
}

.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.logo:active {
  background: transparent;
}

.logo * {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.logo__mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff url("icons/gowork_logo.png") center 44% / 152% no-repeat;
  box-shadow: 0 6px 20px rgba(12, 18, 34, 0.18);
  flex-shrink: 0;
  contain: strict;
}

.logo__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.05;
  flex-shrink: 0;
}

.logo__title {
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
  font-family: var(--font-sans-latin);
  font-size: clamp(1.75rem, 4.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo__title-go {
  background: linear-gradient(135deg, #3a9fd9 0%, #1a5fb4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.logo__title-work {
  background: linear-gradient(135deg, #5fd07a 0%, #2a9e45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.logo__tagline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(232, 236, 244, 0.82);
  white-space: nowrap;
}

.logo__text {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  touch-action: manipulation;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav__list a:hover,
.nav__list a:focus-visible {
  color: var(--text);
}

.nav__admin-link,
.nav__consultations-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav__admin-link:hover,
.nav__admin-link:focus-visible,
.nav__consultations-link:hover,
.nav__consultations-link:focus-visible {
  color: var(--text);
}

.nav__cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent) !important;
  border: 1px solid rgba(232, 165, 75, 0.35);
}

.header-lang {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-lang__select {
  appearance: auto;
  min-width: 8rem;
  max-width: 13rem;
  min-height: 44px;
  padding: 0.4rem 2rem 0.4rem 0.6rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background-color: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  touch-action: manipulation;
}

.header-lang__select:focus {
  outline: 2px solid rgba(232, 165, 75, 0.45);
  outline-offset: 1px;
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(232, 165, 75, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(99, 132, 255, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 44rem;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 36rem;
}

.hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0;
  max-width: min(100%, 36rem);
}

.hero__actions .btn {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
}

.hero__legal-note {
  margin: 2lh 0 0;
  max-width: 42ch;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (min-width: 901px) {
  .hero__legal-note {
    max-width: none;
    white-space: nowrap;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  min-height: 44px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  touch-action: manipulation;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, #e8a54b, #d4893a);
  color: #1a1208;
  box-shadow: 0 12px 32px rgba(232, 165, 75, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 14px 40px rgba(232, 165, 75, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface);
}

.btn--lg {
  padding: 0.9rem 1.6rem;
}

.btn--block {
  width: 100%;
}

/* Sections */

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

/* Hero 아래 본문: 흰 배경 · 어두운 글자 (카드 토큰 상속) */
main > section.section {
  background: var(--page-bg);
  color: var(--ink);
  --text: var(--ink);
  --muted: var(--ink-muted);
  --line: var(--line-light);
  --surface: var(--surface-light);
  --surface-strong: rgba(20, 27, 45, 0.08);
}

.section--muted {
  background: var(--page-bg);
  border-block: 1px solid rgba(20, 27, 45, 0.06);
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section__sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Workshop image carousel (above About) */

.workshop-banner {
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.workshop-banner__viewport {
  width: 100%;
  max-width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: var(--surface-light);
}

.workshop-banner__track {
  display: flex;
  flex-direction: row;
  transition: transform 0.65s ease-in-out;
  will-change: transform;
}

.workshop-banner__slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
}

.workshop-banner__slide img {
  display: block;
  width: 100%;
  height: clamp(200px, 38vw, 400px);
  object-fit: contain;
  vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
  .workshop-banner__track {
    transition: none;
  }
}

/* Slogan band (between workshop slider & About) */

.work-happy-slogan {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.work-happy-slogan__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.work-happy-slogan__line {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-size: clamp(2.5rem, 9vw, 4.25rem);
}

.work-happy-slogan__line--brand {
  margin-top: 0.2em;
  color: var(--accent);
  font-family: var(--font-sans);
}

.work-happy-slogan__jobs-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(100%, 36rem);
  margin-top: clamp(1.5rem, 5vw, 2.5rem);
  padding: clamp(1rem, 3vw, 1.35rem) clamp(1.15rem, 3.5vw, 1.5rem);
  border: 2px solid var(--accent);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  font-size: clamp(1.2rem, 4vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.work-happy-slogan__jobs-link:hover {
  border-color: var(--accent-strong, var(--accent));
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.work-happy-slogan__jobs-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.work-happy-slogan__jobs-link-text {
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Roles */

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.role-grid--boxes {
  max-width: 52rem;
}

.role-box {
  margin: 0;
}

.role-box__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  aspect-ratio: 1;
  width: 100%;
  padding: 0.65rem 0.5rem 0.55rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.role-box__card:hover {
  border-color: rgba(232, 165, 75, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.role-box__card--all {
  background: linear-gradient(145deg, rgba(232, 165, 75, 0.12), var(--surface));
  border-color: rgba(232, 165, 75, 0.28);
}

.role-box__icon-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
  padding: 0.25rem 0.35rem 0.15rem;
  background: var(--surface);
  border-radius: calc(var(--radius) - 4px);
}

.role-box__icon-wrap--all {
  align-items: center;
  justify-content: center;
}

.role-box__icon {
  display: block;
  width: auto;
  height: auto;
  max-width: min(72%, 5.5rem);
  max-height: min(68%, 5rem);
  object-fit: contain;
}

.role-box__plus {
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
}

.role-box__label {
  flex: 0 0 auto;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: var(--ink);
  padding-top: 0.15rem;
}

/* Help Me grid */

.help-me__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 52rem;
}

.help-me__item {
  margin: 0;
}

.help-me__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  aspect-ratio: 1;
  width: 100%;
  padding: 0.65rem 0.5rem 0.55rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  color: inherit;
}

.help-me__icon-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
  padding: 0.25rem 0.35rem 0.15rem;
  background: var(--surface);
  border-radius: calc(var(--radius) - 4px);
}

.help-me__icon {
  display: block;
  width: auto;
  height: auto;
  max-width: min(72%, 5.5rem);
  max-height: min(68%, 5rem);
  object-fit: contain;
}

.help-me__label {
  flex: 0 0 auto;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: var(--ink);
  padding-top: 0.15rem;
}

.help-me__card:hover {
  border-color: rgba(232, 165, 75, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

/* Home — company reputation */

.section--reputation-home {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section__head--reputation-home {
  max-width: 52rem;
}

.section__head--reputation-home .section__sub {
  max-width: 52rem;
  line-height: 1.65;
}

.reputation-home__grid,
.board-reputation-strip__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 52rem;
}

.board-reputation-strip {
  margin-bottom: 1.75rem;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface-light, rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line-light, rgba(20, 27, 45, 0.1));
}

.board-reputation-strip__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.help-me__icon-wrap--badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
}

.help-me__icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8a54b, #d4893a);
  color: #1a1208;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.reputation-home__grid .help-me__icon-wrap {
  padding: 0.15rem 0.2rem 0.05rem;
}

.reputation-home__grid .help-me__icon {
  max-width: min(88%, 7.5rem);
  max-height: min(82%, 7rem);
}

/* PNG with white matte: blend into light card surface */
.help-me__icon--knockout-white,
.role-box__icon--knockout-white {
  mix-blend-mode: multiply;
}

.help-me__icon-wrap:has(.help-me__icon--knockout-white),
.role-box__icon-wrap:has(.role-box__icon--knockout-white) {
  background: var(--surface);
  isolation: isolate;
}

.section--muted .help-me__grid {
  margin-top: 0.25rem;
  max-width: 52rem;
}

/* Home — center sub-icon grids on desktop (≤900px layout unchanged) */
@media (min-width: 901px) {
  #roles .section__head {
    max-width: none;
  }

  #roles .section__sub {
    white-space: nowrap;
  }

  #roles .role-grid--boxes,
  #how .help-me__grid,
  #reputation .reputation-home__grid,
  .board-reputation-strip__grid {
    margin-inline: auto;
  }
}

.help-me-layout {
  max-width: 44rem;
}

.help-me-head {
  margin-bottom: 0.5rem;
}

.help-me-topics {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-bottom: 2rem;
}

.help-me-topic-page .help-topic--single {
  margin-top: 0.25rem;
}

.help-me-hub-page .help-me__grid {
  margin-top: 0.5rem;
  padding-bottom: 2rem;
}

.help-topic {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  scroll-margin-top: calc(5.5rem + env(safe-area-inset-top, 0px));
}

.help-me-page .help-topic:target {
  outline: 2px solid rgba(232, 165, 75, 0.45);
  outline-offset: 4px;
}

.help-topic__title {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.help-topic__num {
  color: var(--accent);
  margin-right: 0.15em;
}

.help-topic__subtitle {
  margin: 1rem 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.help-topic__intro {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.help-topic__note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* 임금체불: 안내 문구 ↔ 상담 기관 제목 사이 3줄 이상 간격 */
.help-me-topic-page[data-help-topic="wages"] .help-topic__note + .help-topic__subtitle {
  margin-top: 4.5rem;
}

.help-topic__list {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}

.help-topic__list li {
  margin-bottom: 0.45rem;
}

.help-topic__list li:last-child {
  margin-bottom: 0;
}

/* 회사평판도 */
.reputation-panel {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.reputation-panel__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 700;
}

.reputation-panel__lead {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.reputation-defaulter-intro {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: var(--page-bg);
  border: 1px solid var(--line-light);
}

.reputation-defaulter-intro__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.reputation-defaulter-intro__body {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--ink);
}

.reputation-defaulter-intro .reputation-panel__source {
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line-light);
}

.reputation-panel__source {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.reputation-panel--defaulter {
  --moel-grid-border: rgba(20, 27, 45, 0.22);
  --moel-grid-head: #e8edf4;
}

.reputation-panel--top10 {
  padding-bottom: 1.5rem;
}

/* BEST TOP 10 — lead copy one line on desktop; mobile unchanged */
@media (min-width: 901px) {
  .reputation-topic-page[data-reputation-topic="top10"] .board-head__lead,
  .reputation-topic-page[data-reputation-topic="top10"] .reputation-panel__lead {
    white-space: nowrap;
    max-width: none;
  }
}

.reputation-top10__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.reputation-top10__period {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.reputation-top10-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.reputation-top10-item {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line-light);
  background: var(--page-bg);
}

.reputation-top10-item__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--surface);
  border: 2px solid var(--line);
}

.reputation-top10-item__rank--gold {
  color: #7a5a00;
  background: linear-gradient(145deg, #fff4c2, #ffd86b);
  border-color: #e8b923;
}

.reputation-top10-item__rank--silver {
  color: #4a5568;
  background: linear-gradient(145deg, #f4f6f8, #d5dbe3);
  border-color: #b8c0cc;
}

.reputation-top10-item__rank--bronze {
  color: #6b3f1f;
  background: linear-gradient(145deg, #ffe8d6, #e8a87a);
  border-color: #d4895a;
}

.reputation-top10-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.reputation-top10-item__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.reputation-top10-item__addr {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.reputation-top10-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.25rem;
  font-size: 0.86rem;
}

.reputation-top10-item__score {
  font-weight: 700;
  color: var(--accent, #2563eb);
}

.reputation-top10-item__score-unit {
  font-weight: 500;
  margin-left: 0.1rem;
}

.reputation-top10-item__reviews {
  color: var(--muted);
}

.reputation-top10-empty {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 12px;
  background: var(--page-bg);
  border: 1px dashed var(--line);
}

.reputation-top10-empty__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.reputation-top10-empty__body {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.reputation-top10-empty__cta {
  display: inline-flex;
}

.reputation-top10-status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.reputation-top10-status--err {
  color: #b42318;
}

.reputation-top10-comments {
  margin-top: 1.5rem;
}

.moel-defaulter-form__search {
  margin-bottom: 1rem;
  border: 2px solid var(--moel-grid-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--page-bg);
}

.moel-defaulter-form__search fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.moel-defaulter-form__search legend {
  width: 100%;
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--moel-grid-head);
  border-bottom: 1px solid var(--moel-grid-border);
}

.moel-defaulter-form__hint {
  margin: 0;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff8ee;
  border-bottom: 1px solid var(--moel-grid-border);
}

.moel-defaulter-form__row {
  display: grid;
  gap: 0;
  margin: 0;
  border-bottom: 1px solid var(--moel-grid-border);
}

.moel-defaulter-form__row:last-child {
  border-bottom: 0;
}

/* 1줄: 가나다순 · 고액순 · 공개 차수 · 보기 */
.moel-defaulter-form__row--line1 {
  grid-template-columns: minmax(6.75rem, auto) minmax(6.75rem, auto) minmax(9.5rem, 1fr) minmax(9.5rem, 1fr);
}

/* 2줄: 검색 · 검색어 · 지역 · 업종 · 검색 버튼 */
.moel-defaulter-form__row--line2 {
  grid-template-columns: minmax(7rem, 0.85fr) minmax(11rem, 2fr) minmax(8.5rem, 1fr) minmax(10rem, 1.2fr) minmax(5.5rem, auto);
}

.moel-defaulter-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-right: 1px solid var(--moel-grid-border);
  background: var(--page-bg);
}

.moel-defaulter-form__row > *:last-child {
  border-right: 0;
}

.moel-defaulter-form__field--keyword {
  min-width: 10rem;
}

.moel-defaulter-form__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.moel-defaulter-form__field select,
.moel-defaulter-form__field input {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--moel-grid-border);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
}

.moel-defaulter-form__field select:focus,
.moel-defaulter-form__field input:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.moel-defaulter-form__radio {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  min-height: 2.5rem;
  margin: 0;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  border-right: 1px solid var(--moel-grid-border);
  background: var(--page-bg);
  cursor: pointer;
}

.moel-defaulter-form__radio input[type="radio"] {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.moel-defaulter-form__radio-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1.3;
}

.moel-defaulter-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  align-self: stretch;
  justify-self: stretch;
  min-height: 2.75rem;
  margin: 0;
  padding: 0.65rem 1.25rem;
  font-weight: 700;
  border-radius: 0;
  border: 0;
  border-left: 1px solid var(--moel-grid-border);
}

.moel-defaulter-form__submit-icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
}

.moel-defaulter-form__submit-label {
  line-height: 1.2;
}

@media (max-width: 900px) {
  .moel-defaulter-form__search legend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .moel-defaulter-form__search legend::before {
    content: "";
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .moel-defaulter-form__row--line1 {
    grid-template-columns: 1fr 1fr;
  }

  .moel-defaulter-form__row--line1 .moel-defaulter-form__field {
    grid-column: span 1;
  }

  .moel-defaulter-form__row--line2 {
    grid-template-columns: 1fr;
  }

  .moel-defaulter-form__row--line2 > * {
    border-right: 0;
    border-bottom: 1px solid var(--moel-grid-border);
  }

  .moel-defaulter-form__row--line2 > *:last-child {
    border-bottom: 0;
  }

  .moel-defaulter-form__row--line2 .moel-defaulter-form__field--keyword {
    min-width: 0;
    max-width: none;
  }

  .moel-defaulter-form__row--line2 .moel-defaulter-form__submit {
    width: 100%;
    min-height: 3rem;
    border-left: 0;
    border-top: 1px solid var(--moel-grid-border);
  }

  .moel-defaulter-form__submit-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 900px) and (min-width: 420px) {
  .moel-defaulter-form__row--line2 {
    grid-template-columns: 1fr 1fr;
  }

  .moel-defaulter-form__row--line2 .moel-defaulter-form__field--search-type,
  .moel-defaulter-form__row--line2 .moel-defaulter-form__field--keyword,
  .moel-defaulter-form__row--line2 .moel-defaulter-form__submit {
    grid-column: 1 / -1;
  }
}

.moel-defaulter-status {
  margin: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.moel-defaulter-status--err {
  color: #b42318;
}

.moel-defaulter-board-info {
  margin: 0.75rem 0 0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.22));
  border-radius: 8px;
  background: var(--moel-grid-head, #e8edf4);
}

.moel-defaulter-board-info .total {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.moel-defaulter-board-info .total b {
  color: var(--accent);
  font-weight: 800;
}

.moel-defaulter-table-wrap {
  overflow: auto;
  max-height: min(70vh, 42rem);
  margin-top: 0.5rem;
  border: 2px solid var(--moel-grid-border, rgba(20, 27, 45, 0.22));
  border-radius: 10px;
  background: var(--page-bg);
}

.moel-defaulter-table {
  width: 100%;
  min-width: 52rem;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
}

.moel-defaulter-table__caption {
  caption-side: top;
  padding: 0.65rem 0.85rem;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: #f6f8fb;
  border-bottom: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.2));
}

.moel-defaulter-table__head {
  position: sticky;
  top: 0;
  z-index: 3;
}

.moel-defaulter-table__th {
  padding: 0.7rem 0.65rem;
  border: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.25));
  border-bottom: 2px solid rgba(20, 27, 45, 0.35);
  text-align: center;
  vertical-align: middle;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
  white-space: nowrap;
  background: #d4dde8;
  box-shadow: 0 2px 0 rgba(20, 27, 45, 0.08);
}

.moel-defaulter-table th,
.moel-defaulter-table td {
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.2));
  text-align: center;
  vertical-align: middle;
  color: var(--ink);
}

/* 성명 — 한 줄 표시를 위해 열 너비 확보 */
.moel-defaulter-table #moel-th-name,
.moel-defaulter-table tbody td:nth-child(2) {
  min-width: 8rem;
  width: 8rem;
  white-space: nowrap;
  word-break: keep-all;
}

.moel-defaulter-table td[data-th]::before {
  display: none;
}

.moel-defaulter-table tbody tr:nth-child(even) td {
  background: #f6f8fb;
}

.moel-defaulter-table tbody tr:hover td {
  background: #eef3fa;
}

@media (max-width: 768px) {
  .moel-defaulter-table-wrap {
    max-height: none;
    overflow: visible;
    border-radius: 8px;
  }

  .moel-defaulter-table {
    display: block;
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
  }

  .moel-defaulter-table__caption {
    display: block;
    padding: 0.6rem 0.75rem;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .moel-defaulter-table__head {
    display: none;
  }

  .moel-defaulter-table tbody {
    display: block;
  }

  .moel-defaulter-table tbody tr {
    display: block;
    margin: 0 0 1rem;
    padding: 0;
    border: 2px solid var(--moel-grid-border, rgba(20, 27, 45, 0.22));
    border-radius: 10px;
    overflow: hidden;
    background: var(--page-bg);
    box-shadow: 0 2px 8px rgba(20, 27, 45, 0.06);
  }

  .moel-defaulter-table tbody tr:nth-child(even) {
    background: var(--page-bg);
  }

  .moel-defaulter-table tbody tr:hover {
    background: var(--page-bg);
  }

  .moel-defaulter-table tbody td {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem 0.75rem;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0.6rem 0.85rem;
    text-align: left !important;
    white-space: normal !important;
    word-break: break-word;
    border: 0;
    border-bottom: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.12));
    background: transparent;
  }

  .moel-defaulter-table tbody td:last-child {
    border-bottom: 0;
  }

  .moel-defaulter-table tbody td:nth-child(1),
  .moel-defaulter-table tbody td:nth-child(2) {
    background: #eef3fa;
  }

  .moel-defaulter-table tbody td[data-th]::before {
    display: block;
    flex: 0 0 7.25rem;
    max-width: 42%;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.45;
    color: var(--ink);
    content: attr(data-th);
  }

  .moel-defaulter-table tbody td.txt_right {
    font-weight: 700;
    color: var(--ink);
  }

  .moel-defaulter-table tbody td.moel-defaulter-empty {
    display: block !important;
    padding: 1.25rem 0.85rem !important;
    text-align: center !important;
  }

  .moel-defaulter-table tbody td.moel-defaulter-empty::before {
    display: none !important;
  }

  .moel-defaulter-pagination.board_pager {
    gap: 0.35rem;
  }

  .moel-defaulter-pager-jump {
    width: 100%;
  }
}

.moel-defaulter-table .txt_left {
  text-align: left;
}

.moel-defaulter-table .txt_right {
  text-align: right;
}

.moel-defaulter-empty {
  padding: 1.5rem !important;
  color: var(--muted);
}

.moel-defaulter-pagination.board_pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.4rem;
  margin-top: 1rem;
  font-size: 0.88rem;
}

.moel-defaulter-pagination .group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  align-items: center;
}

.moel-defaulter-pagination button,
.moel-defaulter-pagination .arr {
  min-height: 2rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--page-bg);
  color: inherit;
  cursor: pointer;
  font-size: inherit;
}

.moel-defaulter-pagination button:hover,
.moel-defaulter-pagination .arr:hover {
  border-color: var(--accent);
}

.moel-defaulter-pagination strong.active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0 0.4rem;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.moel-defaulter-pager-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  font-size: 0.88rem;
}

.moel-defaulter-pager-jump .input_page {
  width: 3.5rem;
  min-height: 2rem;
  padding: 0.25rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
}

.moel-defaulter-pager-jump .page-total {
  color: var(--muted);
}

.reputation-checklist-intro {
  margin-bottom: 1.25rem;
  border: 2px solid var(--moel-grid-border, rgba(20, 27, 45, 0.22));
  border-radius: 10px;
  overflow: hidden;
  background: var(--page-bg);
}

.reputation-checklist-intro__row {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.18));
  align-items: stretch;
}

.reputation-checklist-intro__row--3 {
  grid-template-columns: 1fr 1fr;
}

.reputation-company-search {
  border-bottom: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.18));
}

.reputation-company-search__head {
  padding: 0.75rem 0.85rem 0.55rem;
  border-bottom: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.12));
  background: rgba(232, 165, 75, 0.06);
}

.reputation-company-search__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.reputation-company-search__lead,
.reputation-company-search__names-hint {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

.reputation-company-search__names-hint {
  padding: 0.55rem 0.85rem 0.75rem;
  border-top: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.1));
}

.reputation-company-search__row--address,
.reputation-company-search__row--names {
  grid-template-columns: 1fr auto;
}

.reputation-company-search__row--names {
  border-bottom: 0;
}

.reputation-company-search__confirm-text--mobile {
  display: none;
}

.reputation-company-search__status {
  margin: 0;
  padding: 0.45rem 0.85rem 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.reputation-company-search__status.reputation-evaluate-form__status--err {
  color: #b42318;
}

.reputation-company-search__provider-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0.85rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 6px;
  width: fit-content;
}

.reputation-company-search__provider-badge--kakao {
  color: #3c1e1e;
  background: #fee500;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.reputation-company-list__source {
  font-weight: 600;
  color: var(--muted);
}

.reputation-company-search__map {
  margin: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.reputation-company-search__results {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.12));
  background: var(--page-bg);
}

.reputation-company-search__results .reputation-company-results__title {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.reputation-company-search__results .reputation-company-results__hint {
  margin: 0 0 0.5rem;
  line-height: 1.45;
}

.reputation-company-search__results .reputation-company-results__hint--muted {
  font-size: 0.82rem;
  font-weight: 400;
  color: #6b3f1f;
}

.reputation-company-search__selected {
  margin: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.12));
  background: rgba(232, 165, 75, 0.08);
}

.reputation-company-search__selected .reputation-selected-wrap__title {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.reputation-company-search__row .btn--ghost {
  color: var(--ink);
  background: var(--page-bg);
  border-left: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.15));
}

.reputation-company-search__row .btn--ghost:hover,
.reputation-company-search__row .btn--ghost:focus-visible {
  background: rgba(20, 27, 45, 0.04);
  border-color: var(--moel-grid-border, rgba(20, 27, 45, 0.15));
  color: var(--accent);
}

.reputation-checklist-intro__row:last-child {
  border-bottom: 0;
}

.reputation-checklist-intro__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.65rem 0.75rem;
  border-right: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.15));
  min-width: 0;
}

.reputation-checklist-intro__field--grow {
  flex: 1;
}

.reputation-checklist-intro__row .btn {
  align-self: stretch;
  margin: 0;
  border-radius: 0;
  border: 0;
  border-left: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.15));
  min-height: 3.1rem;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.reputation-checklist-intro__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.reputation-checklist-intro__field input,
.reputation-checklist-intro__field select {
  min-height: 2.5rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.22));
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--ink);
  background: #fff;
}

.reputation-checklist-section {
  margin-top: 1.5rem;
}

.reputation-checklist-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 0.35rem;
}

.reputation-checklist-section__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  flex: 1 1 auto;
  min-width: min(100%, 10rem);
}

.reputation-checklist-category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
  flex: 1 1 auto;
  max-width: 100%;
}

.reputation-checklist-category__btn {
  min-height: 2.25rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.22));
  border-radius: 999px;
  background: var(--page-bg);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.reputation-checklist-category__btn:hover,
.reputation-checklist-category__btn:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.reputation-checklist-category__btn.is-active {
  border-color: var(--accent);
  background: var(--accent-soft, #e8f0ff);
  color: var(--accent);
  font-weight: 700;
}

.reputation-checklist-section__hint {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.reputation-checklist-submit {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 2px solid var(--moel-grid-border, rgba(20, 27, 45, 0.15));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}

.reputation-checklist-submit__company {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

.reputation-checklist-submit__company strong {
  font-weight: 800;
}

.reputation-checklist-submit__status {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.reputation-checklist-submit__status--err {
  color: #b42318;
}

.reputation-checklist-submit__status--ok {
  color: #0d6b3a;
}

.reputation-checklist-submit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  align-self: center;
  min-width: min(100%, 16rem);
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.reputation-checklist-submit__icons {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.reputation-checklist-submit__icon {
  flex-shrink: 0;
}

.reputation-checklist-submit__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .reputation-checklist-submit__btn {
    width: 100%;
    align-self: stretch;
  }
}

.reputation-checklist-public {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.12));
  width: 100%;
  text-align: left;
}

.reputation-checklist-public__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.reputation-checklist-public__lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.reputation-checklist-public__status {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.reputation-checklist-public__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.15));
  border-radius: 10px;
  background: var(--surface, #fff);
}

.reputation-checklist-public__table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.reputation-checklist-public__table th,
.reputation-checklist-public__table td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.1));
  text-align: left;
  vertical-align: top;
}

.reputation-checklist-public__table th {
  font-weight: 700;
  color: var(--ink);
  background: rgba(20, 27, 45, 0.04);
  white-space: nowrap;
}

.reputation-checklist-public__table tbody tr:last-child td {
  border-bottom: none;
}

.reputation-checklist-public__row {
  cursor: pointer;
  transition: background 0.15s ease;
}

.reputation-checklist-public__row:hover,
.reputation-checklist-public__row:focus {
  background: rgba(37, 99, 235, 0.08);
  outline: none;
}

.reputation-checklist-public__row:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(37, 99, 235, 0.35);
}

.reputation-checklist-public-modal__meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.65rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.88rem;
}

.reputation-checklist-public-modal__meta > div {
  margin: 0;
}

.reputation-checklist-public-modal__meta dt {
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.15rem;
}

.reputation-checklist-public-modal__meta dd {
  margin: 0;
  color: var(--muted);
  word-break: break-word;
}

.reputation-checklist-public-modal__loading {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.reputation-checklist-public-modal__table-wrap {
  max-height: min(50vh, 22rem);
  overflow: auto;
  border: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.12));
  border-radius: 8px;
}

.reputation-checklist-public-modal .board-modal__actions {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.1));
}

.reputation-checklist-public-modal .board-modal__actions .btn--ghost {
  min-width: 6.5rem;
  color: #141b2d;
  border-color: #141b2d;
  background: #f4f6fa;
}

.reputation-checklist-public-modal .board-modal__actions .btn--ghost:hover,
.reputation-checklist-public-modal .board-modal__actions .btn--ghost:focus-visible {
  color: #fff;
  background: #141b2d;
  border-color: #141b2d;
}

.reputation-checklist-public__table .reputation-checklist-public__empty {
  text-align: center;
  color: var(--muted);
  padding: 1.25rem 0.65rem;
}

.reputation-checklist-public__table .reputation-checklist-public__addr {
  max-width: 14rem;
  word-break: break-word;
}

.reputation-checklist-public__pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.reputation-checklist-public__page-info {
  font-size: 0.88rem;
  color: var(--muted);
  min-width: 6rem;
  text-align: center;
}

.reputation-checklist-items {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--moel-grid-border, rgba(20, 27, 45, 0.22));
  border-radius: 10px;
  overflow: hidden;
  background: var(--page-bg);
}

.reputation-checklist-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(9.5rem, 11.5rem);
  gap: 0.65rem 1rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.12));
  background: #fff;
}

.reputation-checklist-item:last-child {
  border-bottom: 0;
}

.reputation-checklist-item__label {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  word-break: keep-all;
}

.reputation-checklist-table__select {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.2));
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--ink);
  background: #fff;
}

.reputation-selected-wrap__sub {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .reputation-checklist-section__head {
    flex-direction: column;
    align-items: stretch;
  }

  .reputation-checklist-category {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.15rem;
  }
}

@media (max-width: 768px) {
  .reputation-checklist-intro__row--3,
  .reputation-company-search__row--address,
  .reputation-company-search__row--names {
    grid-template-columns: 1fr;
  }

  .reputation-company-search__confirm-text--desktop {
    display: none;
  }

  .reputation-company-search__confirm-text--mobile {
    display: inline;
  }

  .reputation-company-search__row--names .reputation-company-search__confirm-btn {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    font-size: inherit;
    font-weight: inherit;
  }

  .reputation-checklist-intro__field,
  .reputation-checklist-intro__row .btn {
    border-right: 0;
    border-bottom: 1px solid var(--moel-grid-border, rgba(20, 27, 45, 0.12));
  }

  .reputation-checklist-intro__row .btn {
    width: 100%;
    border-left: 0;
  }

  .reputation-checklist-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

.reputation-evaluate-form__address-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.reputation-evaluate-form__address-row input {
  flex: 1 1 14rem;
  min-height: 2.6rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reputation-evaluate-form__status {
  margin: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.reputation-evaluate-form__status--err {
  color: #b42318;
}

.reputation-map-wrap {
  margin: 1rem 0;
  min-height: 220px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.reputation-map-wrap__canvas {
  min-height: 220px;
  width: 100%;
}

.reputation-map-iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
}

.reputation-map-wrap__provider {
  margin: 0.35rem 0 0;
  padding: 0 0.85rem 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.reputation-map-wrap__kakao-link-wrap,
.reputation-map-wrap__kakao-link {
  margin: 0;
  padding: 0.35rem 0.85rem 0.55rem;
  font-size: 0.82rem;
}

.board-map-link--kakao {
  font-weight: 600;
  color: #3c1e1e;
  text-decoration: none;
}

.board-map-link--kakao:hover {
  text-decoration: underline;
}

.reputation-map-iframe--kakao {
  min-height: 280px;
}

.reputation-map-iframe--google,
.reputation-map-wrap__canvas .board-map-google-embed,
.reputation-map-wrap__canvas.board-map__canvas--google,
.reputation-map-wrap__canvas.board-map__canvas--kakao {
  min-height: 280px;
  width: 100%;
}

.reputation-company-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reputation-company-list__item {
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
}

.reputation-company-list__btn {
  flex: 1;
  min-width: 0;
  text-align: left;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--page-bg);
  cursor: pointer;
}

.reputation-company-list__btn:hover,
.reputation-company-list__btn.is-pending,
.reputation-company-list__btn.is-selected,
.reputation-company-list__btn--manual:hover {
  border-color: var(--accent);
  background: rgba(232, 165, 75, 0.12);
}

.reputation-company-list__confirm {
  flex: 0 0 auto;
  align-self: stretch;
  min-width: 2.75rem;
  padding: 0 0.65rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--page-bg);
  color: var(--accent);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.reputation-company-list__confirm:hover,
.reputation-company-list__confirm:focus-visible,
.reputation-company-list__confirm.is-selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #1a1208;
}

@media (min-width: 769px) {
  .reputation-company-search {
    --reputation-company-action-col: 6.85rem;
  }

  .reputation-company-search__row--address,
  .reputation-company-search__row--names {
    grid-template-columns: 1fr var(--reputation-company-action-col);
  }

  .reputation-company-search__row--address > .btn.btn--primary,
  .reputation-company-search__row--names > .reputation-company-search__confirm-btn {
    align-self: stretch;
    flex-shrink: 0;
    width: 100%;
    min-width: var(--reputation-company-action-col);
    max-width: var(--reputation-company-action-col);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .reputation-company-search__confirm-text--mobile {
    display: none;
  }

  .reputation-company-search__confirm-text--desktop {
    display: inline;
  }
}

.reputation-company-list__btn--manual {
  border-style: dashed;
}

.reputation-company-list__name {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
}

.reputation-company-list__addr {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.reputation-company-list__meta {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.reputation-selected-wrap {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 10px;
  background: var(--page-bg);
  border: 1px solid var(--line-light);
}

.help-resource-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.help-resource {
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  background: var(--page-bg);
  border: 1px solid var(--line-light);
}

.help-resource__name {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--ink);
}

a.help-resource__name {
  color: var(--accent);
  text-decoration: none;
}

a.help-resource__name:hover {
  text-decoration: underline;
}

a.help-resource__name.help-resource__phone-link {
  color: var(--accent);
}

.help-resource__desc {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.help-resource--hug .help-resource__detail {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-light);
}

.help-resource__detail-title {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.help-resource__services {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
}

.help-resource__phone {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
}

.help-resource__phone-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.help-resource__phone-link:hover {
  text-decoration: underline;
}

.help-resource__address {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.help-resource__map-label {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.help-resource__map {
  position: relative;
  width: 100%;
  min-height: 240px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.help-resource__map-iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.help-resource__map-link-wrap {
  margin: 0.5rem 0 0;
  text-align: right;
}

.help-resource__map-link {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
}

.help-resource__map-link:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .help-resource__map-iframe {
    height: 320px;
  }
}

/* Steps */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Employers */

.employers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(120deg, rgba(232, 165, 75, 0.12), var(--surface));
  border: 1px solid rgba(232, 165, 75, 0.28);
}

.employers__copy {
  flex: 1;
  min-width: min(100%, 280px);
}

.employers__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.employers__copy p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

/* Contact */

.section--contact {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact__intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact__intro p {
  margin: 0;
  color: var(--muted);
}

.contact__form {
  display: grid;
  gap: 1rem;
}

.contact__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.contact__full {
  grid-column: 1 / -1;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--page-bg);
  color: var(--text);
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: 2px solid rgba(232, 165, 75, 0.5);
  outline-offset: 0;
}

.contact__thanks {
  grid-column: 1 / -1;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(80, 200, 120, 0.12);
  border: 1px solid rgba(52, 160, 95, 0.35);
  color: #1a6b42;
}

/* Talk Talk (home → board) */

.section--talk-talk {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.talk-talk__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.talk-talk__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(100%, 36rem);
  padding: clamp(1.15rem, 3.5vw, 1.5rem) clamp(1.25rem, 4vw, 1.75rem);
  border: 2px solid var(--accent);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.talk-talk__link:hover {
  border-color: var(--accent-strong, var(--accent));
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.talk-talk__link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.talk-talk__title {
  text-align: center;
}

.talk-talk__hint {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Footer */

.site-footer {
  padding: 2rem 0;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line-light);
  background: var(--page-bg);
  color: var(--ink);
  --text: var(--ink);
  --muted: var(--ink-muted);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__brand {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 720px;
}

.footer-social {
  margin: 0.75rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line-light);
}

.footer-social__title {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.footer-social__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0;
  font-size: 0;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  color: inherit;
  overflow: hidden;
  transition: opacity 0.15s ease, transform 0.12s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.footer-social__img {
  display: block;
  height: clamp(28px, 8vw, 36px);
  width: auto;
  max-width: min(140px, 42vw);
  object-fit: contain;
  border: none;
  border-radius: 10px;
  vertical-align: middle;
}

.footer-social__link:hover {
  opacity: 0.88;
}

.footer-social__link:active {
  transform: scale(0.98);
}

.footer-social__link:focus-visible {
  outline: 2px solid rgba(232, 165, 75, 0.55);
  outline-offset: 3px;
}

.footer-social__link--kakao,
.footer-social__link--zalo,
.footer-social__link--messenger,
.footer-social__link--whatsapp {
  border: none;
  background: transparent;
  box-shadow: none;
}

.footer-support {
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line-light);
  max-width: 40rem;
}

.footer-support__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-support__lead {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-support__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
}

.footer-support__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
}

.footer-support__field--full {
  grid-column: 1 / -1;
}

.footer-support__field input,
.footer-support__field textarea {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  font: inherit;
  background: #fff;
}

.footer-support__field textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.footer-support__form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

.footer-support__thanks {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--ink);
}

.site-footer__legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .footer-support__form {
    grid-template-columns: 1fr;
  }
}

/* Community board (board.html) */

.board-main {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 5rem);
  background: var(--page-bg);
  color: var(--ink);
  overflow-x: clip;
  max-width: 100%;
}

.board-layout {
  max-width: 920px;
}

.board-breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.board-breadcrumb a {
  color: var(--ink-muted);
  text-decoration: none;
}

.board-breadcrumb a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.board-breadcrumb__sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.board-head__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 4vw, 2rem);
  letter-spacing: -0.02em;
}

.board-head__lead {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 54ch;
  white-space: pre-line;
}

.board-admin-only {
  display: none;
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(12, 100, 200, 0.22);
  border-radius: 14px;
  background: rgba(12, 100, 200, 0.05);
}

.board-admin-only.is-visible {
  display: block;
}

.board-admin-only__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.board-admin-only__lead {
  margin: 0 0 0.85rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.board-table__message {
  max-width: 28rem;
  white-space: pre-wrap;
  word-break: break-word;
}

.board-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.board-toolbar__search {
  flex: 1;
  min-width: min(100%, 220px);
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--page-bg);
  color: var(--ink);
}

.board-toolbar__write {
  flex-shrink: 0;
}

.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s ease;
}

.nav__dropdown-label::after {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.1rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.nav__item--dropdown.is-open > .nav__dropdown-label::after {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.nav__dropdown-label:hover,
.nav__dropdown-label:focus-visible,
.nav__item--dropdown:hover .nav__dropdown-label {
  color: var(--text);
}

.nav__dropdown-menu--help-me {
  min-width: 11.75rem;
}

.nav__dropdown-action.is-active,
.nav__dropdown-action[aria-current="page"] {
  color: var(--accent);
  background: var(--accent-soft);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 70;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 26, 46, 0.98);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.1rem;
}

.nav__item--dropdown.is-open > .nav__dropdown-menu {
  display: flex;
}

@media (min-width: 901px) {
  .nav__dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.4rem;
    height: 0.4rem;
  }
}

.nav__dropdown-action {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
  word-break: keep-all;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav__dropdown-action:hover,
.nav__dropdown-action:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav__dropdown-action--emphasis {
  color: var(--accent);
}

.nav__dropdown-action--emphasis:hover,
.nav__dropdown-action--emphasis:focus-visible {
  color: var(--accent);
  background: var(--accent-soft);
}

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

.board-auth__status {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.board-offline-banner {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(200, 120, 0, 0.12);
  border: 1px solid rgba(200, 120, 0, 0.35);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 65ch;
}

.board-employer-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(12, 100, 200, 0.08);
  border: 1px solid rgba(12, 100, 200, 0.25);
}

.board-employer-banner__text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.board-composer {
  margin: 0 0 1.25rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(232, 165, 75, 0.08), var(--page-bg));
  box-shadow: 0 12px 28px rgba(12, 18, 34, 0.05);
}

.board-composer__head {
  margin-bottom: 1rem;
}

.board-composer__title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.board-composer__lead {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.board-composer__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 14rem);
  gap: 0.75rem;
}

.board-composer__field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.board-composer__field--body {
  grid-column: 1 / -1;
}

.board-composer__field input,
.board-composer__field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--page-bg);
  color: var(--ink);
}

.board-composer__field textarea {
  min-height: 130px;
  resize: vertical;
}

.board-composer__field input[type="file"] {
  padding: 0.55rem 0.65rem;
}

.board-composer__field small {
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.board-composer__field input:focus,
.board-composer__field textarea:focus {
  outline: 2px solid rgba(232, 165, 75, 0.45);
  outline-offset: 0;
}

.board-composer__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.board-composer__status {
  margin: 0 auto 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.board-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.75rem 1rem;
  align-items: end;
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--page-bg);
}

.board-filters--offline {
  opacity: 0.72;
  pointer-events: none;
}

.board-filters__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.board-filters__field select,
.board-filters__field input {
  min-height: 40px;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.board-job-fields {
  display: grid;
  gap: 0.5rem;
  padding: 0.75rem 0 0.25rem;
  border-top: 1px solid var(--line-light);
}

.board-modal__fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.board-modal__radio {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}

.board-check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.45rem;
  padding: 0.65rem;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--page-bg);
}

.board-check-list__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2rem;
  font-size: 0.92rem;
  color: var(--ink);
}

.board-check-list__item input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--accent);
}

.board-detail__job {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(12, 18, 34, 0.04);
  border: 1px solid var(--line-light);
}

.board-detail__job-dl {
  display: grid;
  grid-template-columns: minmax(6rem, auto) 1fr;
  gap: 0.35rem 0.75rem;
  margin: 0;
  font-size: 0.92rem;
}

.board-detail__job-dl dt {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 500;
}

.board-detail__job-dl dd {
  margin: 0;
}

.board-detail__contact {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--surface);
}

.board-detail__contact-title {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.board-detail__contact-line {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.board-detail__contact-line span {
  color: var(--ink-muted);
  margin-right: 0.35rem;
}

.board-detail__kakao {
  margin: 0 0 1rem;
}

.board-detail__map {
  margin: 0 0 1rem;
}

.board-map__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.board-map-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
}

.board-map-tab {
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--page-bg);
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.board-map-tab.is-active {
  border-color: rgba(12, 100, 200, 0.45);
  background: rgba(12, 100, 200, 0.1);
  color: #0c64c8;
  font-weight: 600;
}

.board-map__canvas {
  min-height: 220px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-light);
}

.board-map__canvas--zoomable {
  position: relative;
}

.board-map__canvas--google,
.board-map__canvas--google-embed {
  min-height: 260px;
}

.board-map-google-embed {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.board-map-zoom {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  pointer-events: none;
}

.board-map-zoom__btn {
  pointer-events: auto;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.board-map-zoom__btn:hover {
  background: #fff;
  border-color: rgba(66, 133, 244, 0.45);
  color: #1a73e8;
}

.board-map-zoom__btn:active {
  transform: scale(0.96);
}

.board-map--write {
  margin-top: 0.75rem;
}

.board-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
}

.board-map-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--page-bg);
}

.board-map-link--naver {
  border-color: rgba(3, 199, 90, 0.35);
  color: #03a84a;
}

.board-map-link--google {
  border-color: rgba(66, 133, 244, 0.35);
  color: #1a73e8;
}

.board-map-fallback,
.board-map-loading {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  text-align: center;
}

.board-map-loading {
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.board-map-minimal__frame {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.board-map-minimal__caption {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.board-map-minimal__caption strong {
  color: var(--ink);
  font-weight: 600;
}

.board-map-minimal__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 12rem;
  padding: 1.25rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.08), transparent);
  border-radius: 12px;
}

.board-map-minimal__pin {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
}

.board-map-minimal__company {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  color: var(--ink);
}

.board-map-minimal__address {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
}

.board-map-minimal__hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.board-map-picker__hint {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.board-map-picker {
  display: grid;
  gap: 0.65rem;
  margin: 0.25rem 0 0.5rem;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--line-light);
}

.board-map-picker__coords {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.board-map-picker__coord {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.board-map-picker__coord input {
  min-height: 40px;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.board-map-picker__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.board-filters__location {
  display: grid;
  gap: 0.5rem;
  grid-column: 1 / -1;
}

.board-filter-location__status {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.board-table__distance {
  display: inline-block;
  margin-right: 0.25rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  vertical-align: middle;
  background: rgba(120, 80, 200, 0.12);
  color: #6a4bc6;
}

.board-detail__transit {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(12, 18, 34, 0.04);
  border: 1px solid var(--line-light);
}

.board-transit__title {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.board-transit__list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-transit__list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.board-transit__list span {
  color: var(--ink-muted);
}

.board-transit__list strong {
  font-weight: 600;
  text-align: right;
}

.board-transit-fields {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line-light);
}

.board-table__badge {
  display: inline-block;
  margin-right: 0.25rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  vertical-align: middle;
  background: rgba(12, 100, 200, 0.12);
  color: #0c64c8;
}

.board-table__badge--verified {
  background: rgba(0, 140, 80, 0.12);
  color: #008c50;
}

.btn--sm {
  min-height: 38px;
  padding: 0.35rem 0.85rem;
  font-size: 0.9rem;
}

.board-modal__error {
  margin: 0;
  font-size: 0.9rem;
  color: #b42318;
}

.board-modal__hint {
  margin: -0.25rem 0 0.5rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.board-table-wrap {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--page-bg);
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.board-table thead {
  background: var(--surface-light);
}

.board-table th,
.board-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-light);
}

.board-table th:nth-child(1),
.board-table td.board-table__num {
  width: 4rem;
  text-align: center;
  color: var(--ink-muted);
}

.board-table th:nth-child(4),
.board-table td.board-table__date {
  white-space: nowrap;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.board-table tbody tr:last-child td {
  border-bottom: none;
}

.board-table tbody tr:hover {
  background: rgba(20, 27, 45, 0.03);
}

.board-table__title-btn {
  display: inline;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.board-table__title-btn:hover {
  color: var(--accent);
}

.board-empty {
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--ink-muted);
  margin: 0;
}

.board-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.board-page-info {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.board-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem) 1rem;
  overflow-y: auto;
  background: rgba(10, 14, 22, 0.55);
  backdrop-filter: blur(4px);
}

/* [hidden]은 UA의 display:none을 정합니다. 아래 flex가 그걸 덮어쓰면 모달이 항상 보입니다. */
.board-modal-overlay:not([hidden]) {
  display: flex;
}

.board-modal-overlay[hidden] {
  display: none !important;
  pointer-events: none;
}

.board-modal {
  width: min(560px, 100%);
  margin-top: 2vh;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: calc(var(--radius) + 4px);
  background: var(--page-bg);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow);
  color: var(--ink);
}

/* 모달은 밝은 배경 — ghost 버튼에 어두운 글자 (전역 --text=#e8ecf4 와 충돌 방지) */
.board-modal .btn--ghost {
  color: var(--ink);
  border: 1px solid rgba(20, 27, 45, 0.28);
  background: #fff;
  font-weight: 700;
}

.board-modal .btn--ghost:hover,
.board-modal .btn--ghost:focus-visible {
  color: var(--ink);
  background: rgba(20, 27, 45, 0.06);
  border-color: rgba(20, 27, 45, 0.45);
}

.board-modal--wide {
  width: min(960px, 100%);
}

.board-modal--consult .board-modal__table-wrap {
  max-height: min(60vh, 520px);
  overflow: auto;
  margin-bottom: 0.75rem;
}

.board-modal__h {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
}

.board-modal__form {
  display: grid;
  gap: 1rem;
}

.board-modal__field {
  display: grid;
  gap: 0.35rem;
}

.board-modal__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.board-modal__field input,
.board-modal__field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line-light);
  background: var(--page-bg);
  color: var(--ink);
}

.board-modal__field .board-check-list__item input {
  width: 1rem;
  height: 1rem;
  padding: 0;
  border-radius: 0;
}

.board-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.board-auth-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.75rem 0 0.25rem;
}

.board-auth-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line-light);
  background: var(--page-bg);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.board-auth-social__btn:disabled,
.board-auth-social__btn[hidden] {
  display: none;
}

.board-auth-social__btn:hover,
.board-auth-social__btn:focus-visible {
  border-color: var(--accent);
}

.board-auth-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
}

.board-auth-social__btn--naver .board-auth-social__icon {
  background: #03c75a;
}

.board-auth-social__btn--google .board-auth-social__icon {
  background: #4285f4;
}

.board-auth-social__btn--facebook .board-auth-social__icon {
  background: #1877f2;
}

.board-auth-social__btn--whatsapp .board-auth-social__icon {
  background: #25d366;
}

.board-auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.85rem 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.board-auth-divider::before,
.board-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-light);
}

.board-auth-whatsapp__otp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: end;
}

.board-auth-whatsapp .board-modal__actions {
  margin-top: 0.75rem;
}

.board-register-account-type {
  margin-bottom: 0.25rem;
}

.board-alt-auth {
  margin: 0.85rem 0 0;
}

.board-alt-auth__title {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-align: center;
}

.board-alt-auth__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.board-alt-auth__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 4.5rem;
  padding: 0.35rem 0.25rem;
  border-radius: 12px;
  border: 1px solid var(--line-light);
  background: var(--page-bg);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.board-alt-auth__btn:hover,
.board-alt-auth__btn:focus-visible {
  border-color: var(--accent);
}

.board-alt-auth__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

.board-alt-auth__label {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.board-alt-auth__btn--kakao .board-alt-auth__icon { background: #fee500; color: #3c1e1e; }
.board-alt-auth__btn--naver .board-alt-auth__icon { background: #03c75a; }
.board-alt-auth__btn--phone .board-alt-auth__icon { background: #5b6ee1; font-size: 1rem; }
.board-alt-auth__btn--google .board-alt-auth__icon { background: #4285f4; }
.board-alt-auth__btn--email .board-alt-auth__icon { background: #64748b; }
.board-alt-auth__btn--facebook .board-alt-auth__icon { background: #1877f2; }
.board-alt-auth__btn--apple .board-alt-auth__icon { background: #111; }
.board-alt-auth__btn--apple .board-alt-auth__icon::before { content: "\F8FF"; font-size: 1.1rem; }
.board-alt-auth__btn--wechat .board-alt-auth__icon { background: #07c160; }

.board-alt-auth__consent-list {
  margin: 0.5rem 0 1rem 1.1rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.board-modal--alt-auth {
  max-width: 26rem;
}

.board-btn--draft {
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.board-btn--draft:hover {
  background: rgba(var(--accent-rgb, 37, 99, 235), 0.08);
}

.board-modal__danger {
  margin-right: auto;
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.35);
}

.board-detail__meta {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.board-detail__body {
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-height: min(40vh, 360px);
  overflow-y: auto;
}

.board-detail__image-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 172px));
  gap: 0.35rem;
  margin: 0 0 1rem;
}

.board-detail__media-item {
  position: relative;
  display: flex;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: var(--surface-light);
}

.board-detail__media-item.is-extra,
.board-review-card__media.is-extra {
  display: none;
}

.board-detail__image-wrap.is-expanded .board-detail__media-item.is-extra,
.board-review-card__media-grid.is-expanded .board-review-card__media.is-extra {
  display: flex;
}

.board-detail__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-detail__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.board-comments {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  max-height: 36vh;
  overflow-y: auto;
}

.board-comments__h {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.board-comments__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.board-comments__item {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-light);
}

.board-comments__item:last-child {
  border-bottom: none;
}

.board-comments__meta {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.board-comments__text {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.95rem;
}

.board-comments__del {
  font-size: 0.82rem;
  padding: 0;
  margin: 0;
  font-family: inherit;
  background: none;
  border: none;
  color: #b42318;
  cursor: pointer;
  text-decoration: underline;
}

.board-comments__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.board-comments__form textarea {
  min-height: 72px;
  resize: vertical;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line-light);
  background: var(--page-bg);
  color: var(--ink);
}

.board-table__has-img {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.35rem;
  border-radius: 2px;
  background: var(--accent);
  vertical-align: middle;
}

.board-modal--detail {
  max-height: min(92vh, 760px);
}

html:not([lang="ko"]):not([lang="ja"]):not([lang="zh-Hans"]) body,
html:not([lang="ko"]):not([lang="ja"]):not([lang="zh-Hans"]) .logo__text,
html:not([lang="ko"]):not([lang="ja"]):not([lang="zh-Hans"]) .logo__title {
  font-family: var(--font-sans-latin);
}

.board-modal--detail.board-modal {
  overflow-y: auto;
}

.board-modal--detail .board-modal__actions--detail {
  margin-top: 0;
}

.board-modal__actions--detail:has(#board-btn-apply-detail:not([hidden])) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.board-modal__actions--detail:has(#board-btn-apply-detail:not([hidden])) .btn {
  width: 100%;
  justify-self: stretch;
}

.board-detail__contact--pulse {
  animation: board-detail-contact-pulse 1.6s ease-out;
}

@keyframes board-detail-contact-pulse {
  0%,
  100% {
    box-shadow: none;
  }
  30% {
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.45);
  }
}

.board-modal--apply,
.board-modal--apply-preview {
  max-width: 36rem;
  width: min(100%, 36rem);
}

.job-apply-job-label {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.job-apply-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(6.5rem, 30%);
  gap: 0.65rem 1rem;
  align-items: start;
}

.job-apply-form__fields {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.job-apply-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.job-apply-form__field--full {
  grid-column: 1 / -1;
}

.job-apply-form__field select,
.job-apply-form__field input[type="text"],
.job-apply-form__field textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.job-apply-form__field--intro {
  display: block;
  margin-top: 0.85rem;
}

.job-apply-form__field--intro textarea {
  width: 100%;
  margin-top: 0.25rem;
  resize: vertical;
  min-height: 7.5rem;
}

.job-apply-form__photo-wrap {
  grid-row: 1 / span 4;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.job-apply-photo {
  display: block;
  cursor: pointer;
}

.job-apply-photo__box {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 100%;
  max-width: 8.5rem;
  margin: 0 auto;
  border: 2px dashed var(--line-light);
  border-radius: 12px;
  background: var(--surface-light);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.job-apply-photo__box:hover,
.job-apply-photo__box:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
  outline: none;
}

.job-apply-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-apply-photo__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--ink-muted);
}

.job-apply-photo__icon {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.job-apply-address-row {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.job-apply-address-row input {
  flex: 1;
  min-width: 0;
}

.job-apply-phone-row {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.25rem;
  align-items: center;
}

.job-apply-phone-row input {
  flex: 1;
  min-width: 0;
}

.job-apply-phone-code-wrap {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.45rem;
  align-items: center;
}

.job-apply-phone-code-wrap input {
  flex: 1;
  min-width: 0;
  max-width: 9rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  font: inherit;
}

.job-apply-phone-status {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.job-apply-phone-status--ok {
  color: #0d7a4a;
}

.job-apply-phone-dev-hint {
  margin: 0.45rem 0 0;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #fff8e6;
  border: 1px solid rgba(232, 165, 75, 0.45);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink);
}

.job-apply-phone-dev-hint strong {
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  color: #b45309;
}

.board-modal-overlay--alert {
  z-index: 1200;
}

.board-modal--alert {
  max-width: 20rem;
  text-align: center;
  padding: 1.5rem 1.25rem;
}

.board-modal__alert-msg {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.board-map--apply {
  margin-top: 0.5rem;
  min-height: 10rem;
}

.board-map--apply .board-map__canvas {
  min-height: 10rem;
  border-radius: 10px;
  overflow: hidden;
}

.board-map--apply .board-map__canvas iframe {
  width: 100%;
  height: 10rem;
  border: 0;
}

.job-apply-preview {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
}

.job-apply-preview__photo {
  float: right;
  width: 6.5rem;
  height: 6.5rem;
  margin: 0 0 0.75rem 0.75rem;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line-light);
}

.job-apply-preview dl {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.job-apply-preview dt {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.job-apply-preview dd {
  margin: 0.1rem 0 0;
}

.job-apply-preview__intro {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-light);
  white-space: pre-wrap;
}

@media (max-width: 520px) {
  .job-apply-form__grid {
    grid-template-columns: 1fr;
  }

  .job-apply-form__photo-wrap {
    grid-row: auto;
    grid-column: 1;
    order: -1;
    max-width: 8.5rem;
    margin: 0 auto 0.25rem;
  }

  .job-apply-form__row {
    grid-template-columns: 1fr;
  }
}

.nav .nav__current {
  color: var(--accent);
  font-weight: 600;
}

.board-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 10rem;
}

.board-page--booting .board-list {
  min-height: 14rem;
}

.board-head__lead {
  min-height: 2.8em;
}

.board-cards {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.board-card {
  margin: 0;
}

.board-page:not(.jobs-page) .board-table-wrap {
  display: none;
}

.board-page:not(.jobs-page) .board-cards {
  display: flex;
}

.board-page:not(.jobs-page) .board-cards[hidden] {
  display: none !important;
}

.board-review-card {
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--page-bg);
  box-shadow: 0 8px 24px rgba(12, 18, 34, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.board-review-card:hover {
  border-color: rgba(232, 165, 75, 0.36);
  box-shadow: 0 12px 30px rgba(12, 18, 34, 0.08);
}

.board-review-card__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 1.1rem;
}

.board-review-card__actions {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.board-review-card__content {
  min-width: 0;
}

.board-review-card__open {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.board-review-card__author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.board-review-card__title {
  font-size: 1.04rem;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.45;
}

.board-review-card__body {
  display: -webkit-box;
  margin-top: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.94rem;
  line-height: 1.55;
  white-space: pre-wrap;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.board-review-card__body a,
.board-detail__body a {
  color: #0c64c8;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.board-review-card__body.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.board-review-card__more {
  display: inline-flex;
  margin: 0.35rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0c64c8;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.board-review-card__more:hover,
.board-review-card__more:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.board-review-card__date {
  margin-top: 0.15rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.board-review-card__media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.board-review-card__media {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface-light);
}

.board-review-card__media img,
.board-review-card__media video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.board-review-card__media--video {
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.board-media-video-badge {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 0.78rem;
}

.board-media-more {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font: inherit;
  font-size: 1.55rem;
  font-weight: 800;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.board-media-more:hover,
.board-media-more:focus-visible {
  background: rgba(0, 0, 0, 0.72);
}

.board-review-card__media-grid.is-expanded .board-media-more,
.board-detail__image-wrap.is-expanded .board-media-more {
  display: none;
}

.board-like {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(220, 50, 90, 0.22);
  border-radius: 999px;
  background: rgba(220, 50, 90, 0.06);
  color: #9f2f4f;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.board-like:hover,
.board-like:focus-visible {
  border-color: rgba(220, 50, 90, 0.45);
  background: rgba(220, 50, 90, 0.1);
}

.board-like.is-liked {
  border-color: rgba(220, 50, 90, 0.55);
  background: rgba(220, 50, 90, 0.14);
  color: #c51f4a;
}

.board-like:disabled {
  opacity: 0.6;
  cursor: wait;
}

.board-like__icon {
  font-size: 1rem;
  line-height: 1;
}

.board-card-edit,
.board-admin-delete {
  min-height: 34px;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.board-card-edit {
  border: 1px solid rgba(37, 99, 235, 0.24);
  background: rgba(37, 99, 235, 0.07);
  color: #1d4ed8;
}

.board-card-edit:hover,
.board-card-edit:focus-visible {
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.13);
}

.board-admin-delete {
  border: 1px solid rgba(180, 35, 24, 0.32);
  background: rgba(180, 35, 24, 0.08);
  color: #b42318;
}

.board-admin-delete:hover,
.board-admin-delete:focus-visible {
  border-color: rgba(180, 35, 24, 0.55);
  background: rgba(180, 35, 24, 0.14);
}

.board-card__open {
  width: 100%;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: var(--page-bg);
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(12, 18, 34, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.board-card__open:hover {
  border-color: rgba(12, 100, 200, 0.35);
  box-shadow: 0 10px 28px rgba(12, 18, 34, 0.08);
}

.board-card__open:active {
  transform: translateY(1px);
}

.board-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.board-card__title {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
}

.board-card__meta {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.86rem;
  color: var(--ink-muted);
}

.board-card__facts {
  display: grid;
  gap: 0.35rem;
  margin: 0.75rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.board-card__facts li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.86rem;
}

.board-card__facts span {
  color: var(--ink-muted);
}

.board-card__facts strong {
  font-weight: 600;
  text-align: right;
}

.jobs-layout {
  max-width: 1120px;
}

.jobs-page .board-head__lead {
  max-width: 68ch;
}

.jobs-page .board-table-wrap {
  display: none;
}

.jobs-page .board-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
}

.jobs-page .board-cards[hidden] {
  display: none !important;
}

.jobs-page .board-card__open {
  height: 100%;
  position: relative;
  padding-top: 3.2rem;
}

.jobs-page .board-card__facts li {
  align-items: flex-start;
}

.jobs-page .board-card__facts strong {
  max-width: 68%;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.jobs-card__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  line-height: 1;
}

.board-fab {
  display: none;
}

@media (max-width: 768px) {
  .board-page .board-main {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  .board-page .site-footer {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }

  .board-toolbar {
    gap: 0.55rem;
  }

  .board-toolbar__search {
    width: 100%;
    min-width: 0;
    order: 2;
  }

  .board-toolbar__write {
    display: none;
  }

  .board-filters {
    grid-template-columns: 1fr;
    padding: 0.85rem;
  }

  .board-composer__form {
    grid-template-columns: 1fr;
  }

  .board-composer__actions {
    align-items: stretch;
  }

  .board-composer__actions .btn {
    width: 100%;
  }

  .board-table-wrap {
    display: none;
  }

  .board-cards {
    display: flex;
  }

  .board-cards[hidden] {
    display: none !important;
  }

  .board-review-card__main {
    grid-template-columns: 1fr;
  }

  .board-like {
    justify-self: start;
  }

  .board-pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .board-page-info {
    width: 100%;
    text-align: center;
  }

  .board-modal-overlay {
    padding: 0.75rem;
    align-items: flex-end;
  }

  .board-modal {
    width: 100%;
    max-width: none;
    max-height: min(92dvh, 100%);
    border-radius: 16px 16px 0 0;
  }

  .board-modal--detail.board-modal {
    max-height: min(94dvh, 100%);
  }

  .board-fab {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.55rem;
    padding: 0.65rem clamp(0.85rem, 4vw, 1.25rem);
    padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line-light);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 30px rgba(12, 18, 34, 0.08);
  }

  .board-fab__contact,
  .board-fab__write {
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }
}

/* Language pairs: visibility toggled via `hidden` in script.js */

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

  .features {
    grid-template-columns: 1fr;
  }

  .role-grid:not(.role-grid--boxes) {
    grid-template-columns: 1fr 1fr;
  }

  .role-grid--boxes {
    max-width: none;
  }

  .help-me__grid {
    max-width: none;
  }

  .reputation-home__grid {
    max-width: none;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .nav__toggle {
    display: flex;
  }

  .nav {
    position: static;
    order: 3;
    width: auto;
    max-width: none;
    margin-left: auto;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .nav__list {
    display: none;
    position: absolute;
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    top: calc(100% + 0.35rem);
    z-index: 80;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: min(72vh, calc(100dvh - 5.5rem));
    padding: 0.65rem;
    border-radius: var(--radius);
    background: rgba(18, 26, 46, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__list > li,
  .nav__item--dropdown {
    width: 100%;
    min-width: 0;
    flex-shrink: 0;
  }

  .nav__list a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.4;
    white-space: normal;
    word-break: keep-all;
  }

  .nav__list a:active {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav__dropdown-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.4;
    white-space: normal;
    word-break: keep-all;
    text-align: left;
  }

  .nav__dropdown-label:active {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav__dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0.2rem 0 0.35rem;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    gap: 0.1rem;
  }

  .nav__dropdown-menu::before {
    display: none;
  }

  .nav__item--dropdown.is-open > .nav__dropdown-menu {
    display: flex;
  }

  .nav__dropdown-menu > li {
    width: 100%;
    min-width: 0;
  }

  .nav__dropdown-action {
    min-height: 48px;
    padding: 0.5rem 0.85rem;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .site-header__inner {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .logo {
    order: 0;
  }

  .header-lang {
    order: 2;
    margin-left: auto;
  }

  .header-lang__select {
    max-width: min(13rem, 42vw);
  }

  .contact__form input,
  .contact__form select,
  .contact__form textarea {
    font-size: 1rem;
    min-height: 48px;
    padding: 0.75rem 0.9rem;
  }

  .contact__form textarea {
    min-height: 140px;
    resize: vertical;
  }

  .employers {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .employers .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: calc(4rem + env(safe-area-inset-top, 0px));
  }

  .section {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .section__head {
    margin-bottom: 1.75rem;
  }

  .role-grid:not(.role-grid--boxes) {
    grid-template-columns: 1fr;
  }

  .role-grid--boxes {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }

  .role-box__card {
    padding: 0.55rem 0.35rem 0.45rem;
  }

  .role-box__icon-wrap {
    padding: 0.15rem 0.25rem 0.1rem;
  }

  .role-box__icon {
    max-width: min(78%, 4.5rem);
    max-height: min(72%, 4rem);
  }

  .role-box__label {
    font-size: clamp(0.72rem, 2.8vw, 0.9rem);
  }

  .role-box__plus {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero {
    padding-top: clamp(2rem, 6vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  .hero__lead {
    max-width: 38ch;
    font-size: 1rem;
  }

  .hero__lead br {
    display: none;
  }

  .section__head--reputation-home .section__sub {
    max-width: 38ch;
    font-size: 1rem;
  }

  .section__head--reputation-home .section__sub br {
    display: none;
  }

  .hero__actions {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 0.65rem;
  }

  .feature {
    padding: 1.35rem;
  }

  .step {
    padding: 1.25rem 1.15rem;
    gap: 1rem;
  }

  .contact__intro {
    margin-bottom: 0.5rem;
  }

  .workshop-banner__viewport {
    max-width: min(1120px, 100% - 1.25rem);
    border-radius: 12px;
  }

  .workshop-banner__slide img {
    height: clamp(160px, 42vmin, 280px);
  }
}

/* --- Admin page --- */
.admin-page .admin-wrap {
  padding: 2rem 1rem 3rem;
  max-width: 1100px;
}

.admin-h1 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.admin-h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.admin-lead {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.admin-card {
  background: var(--page-bg);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}

.admin-form label {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.admin-form input {
  display: block;
  width: 100%;
  max-width: 360px;
  margin-top: 0.35rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line-light);
  font: inherit;
  background: var(--surface-light);
  color: var(--ink);
}

.admin-dash__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.admin-stat {
  min-width: 6rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line-light);
  background: var(--surface-light);
  text-align: center;
}

.admin-stat strong {
  display: block;
  font-size: 1.35rem;
}

.admin-stat span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.admin-dash__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.admin-dash__tab {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.admin-dash__tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.admin-checklist-detail-table-wrap {
  max-height: 50vh;
  overflow: auto;
  margin: 0.75rem 0;
}

.admin-stat--accent strong {
  color: #b45309;
}

.admin-table__row--unread td {
  background: rgba(232, 165, 75, 0.1);
  font-weight: 600;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-card--wide {
  grid-column: 1 / -1;
}

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

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th,
.admin-table td {
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
}

.admin-table th {
  color: var(--ink-muted);
  font-weight: 600;
}

.admin-table__message {
  max-width: 28rem;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-inbox-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.admin-inbox-toolbar__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.admin-inbox-toolbar__label {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.admin-inbox-toolbar__select {
  font: inherit;
  min-width: 16rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--line-light);
  background: var(--page-bg);
  color: var(--ink);
}

.admin-inbox-toolbar__check {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  padding-bottom: 0.35rem;
}

.admin-inbox-toolbar__status {
  font-size: 0.85rem;
  padding-bottom: 0.35rem;
}

.admin-table tbody tr[data-inbox-id] {
  cursor: pointer;
}

.admin-table tbody tr[data-inbox-id]:hover td {
  background: rgba(232, 165, 75, 0.06);
}

.admin-inbox-modal {
  max-height: min(90vh, 720px);
  overflow: auto;
}

.admin-inbox-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.admin-inbox-detail dt {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 600;
}

.admin-inbox-detail dd {
  margin: 0;
}

.admin-inbox-detail__body {
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 1rem;
  max-height: 40vh;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  background: var(--page-bg);
  font-size: 0.92rem;
  line-height: 1.55;
}

.admin-inbox-detail__body--html {
  white-space: normal;
}

.admin-role-sel {
  font: inherit;
  padding: 0.25rem 0.4rem;
  border-radius: 8px;
  border: 1px solid var(--line-light);
  background: var(--page-bg);
  color: var(--ink);
}
