:root {
  --bg: #ebf2f9;
  --surface: #ffffff;
  --text: #333333;
  --muted: #7a8fa3;
  --line: #dce4ed;
  --brand: #8ba4d0;
  --primary: #5e7ba8;
  --primary-dark: #4a6a8f;
  --primary-light: #e8f1fa;
  --btn-login: #0d86ff;
  --btn-login-hover: #0b75e6;
  --auth-bg: #f1f8ff;
  --auth-nav: #7687b3;
  --auth-text: #2e3a59;
  --auth-muted: #bfc8e8;
  --auth-line: #dae7f5;
  --accent: #5cb89a;
  --danger: #e5484d;
  --soft-bg: #d0e5ff;
  --shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
  --shadow-lg: 0 4px 24px rgba(44, 62, 80, 0.08);
  --radius: 10px;
  --header-h: 52px;
  --font: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-size: 14px;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.brand-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.main-nav a,
.main-nav span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--text); }
.main-nav a.is-active {
  color: var(--text);
  font-weight: 700;
}
.main-nav--guest span { cursor: default; }

.header-user {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
}
.header-user strong { color: var(--text); font-weight: 600; }
.header-sep { color: #c5d0dc; }
.header-guest { color: var(--muted); }
.header-user a { color: var(--muted); font-weight: 500; }
.header-user a:hover { color: var(--primary); }

.site-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 40px 56px;
  min-height: calc(100vh - var(--header-h));
}

/* Page head */
.page-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  display: inline;
}
.page-head p {
  margin: 0;
  display: inline;
  font-size: 13px;
  color: var(--muted);
}
.page-head h1::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 11px;
  background: #c5d0dc;
  margin: 0 12px;
  vertical-align: middle;
}

.page-head--hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.page-head--hero h1 {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.page-head--hero h1::after { display: none; }
.page-head--hero p {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.page-head--hero h1.title-underline {
  display: inline-block;
  border-bottom: 3px solid var(--brand);
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.page-title-center {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 28px;
}
/* Auth + Dashboard + Employees 공통 셸 — Figma */
body.auth-page,
body.dashboard-page,
body.employees-page,
body.survey-send-page,
body.satisfaction-page {
  --header-h: 100px;
  background: var(--auth-bg);
}
body.auth-page .site-main,
body.dashboard-page .site-main,
body.employees-page .site-main,
body.survey-send-page .site-main,
body.satisfaction-page .site-main {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
}
body.auth-page .site-header,
body.dashboard-page .site-header,
body.employees-page .site-header,
body.survey-send-page .site-header,
body.satisfaction-page .site-header {
  height: var(--header-h);
  background: var(--auth-bg);
  border-bottom: 1px solid var(--auth-line);
  box-shadow: none;
}
body.auth-page .header-inner,
body.dashboard-page .header-inner,
body.employees-page .header-inner,
body.survey-send-page .header-inner,
body.satisfaction-page .header-inner {
  max-width: 1920px;
  padding: 0 clamp(24px, 16.67vw, 320px);
  gap: 0;
}
body.auth-page .brand-logo--img,
body.dashboard-page .brand-logo--img,
body.employees-page .brand-logo--img,
body.survey-send-page .brand-logo--img,
body.satisfaction-page .brand-logo--img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 49px;
}
body.auth-page .brand-logo--img img,
body.dashboard-page .brand-logo--img img,
body.employees-page .brand-logo--img img,
body.survey-send-page .brand-logo--img img,
body.satisfaction-page .brand-logo--img img {
  width: 180px;
  height: auto;
  max-height: 22px;
}
body.auth-page .main-nav--guest,
body.dashboard-page .main-nav,
body.employees-page .main-nav,
body.survey-send-page .main-nav,
body.satisfaction-page .main-nav {
  margin-left: 0;
  gap: 53px;
  flex: none;
}
body.auth-page .main-nav--guest span,
body.dashboard-page .main-nav a,
body.employees-page .main-nav a,
body.survey-send-page .main-nav a,
body.satisfaction-page .main-nav a {
  font-size: 24px;
  font-weight: 600;
  color: var(--auth-nav);
  letter-spacing: -0.02em;
}
body.dashboard-page .main-nav a:hover,
body.employees-page .main-nav a:hover,
body.survey-send-page .main-nav a:hover,
body.satisfaction-page .main-nav a:hover {
  color: var(--auth-text);
}
body.dashboard-page .main-nav a.is-active {
  color: var(--auth-nav);
  font-weight: 600;
}
body.employees-page .main-nav a.is-active,
body.survey-send-page .main-nav a.is-active,
body.satisfaction-page .main-nav a.is-active {
  color: var(--auth-text);
  font-weight: 600;
}
body.auth-page .header-user,
body.dashboard-page .header-user,
body.employees-page .header-user,
body.survey-send-page .header-user,
body.satisfaction-page .header-user {
  font-size: 12px;
  color: var(--auth-nav);
  font-weight: 400;
}
body.auth-page .header-sep,
body.dashboard-page .header-sep,
body.employees-page .header-sep,
body.survey-send-page .header-sep,
body.satisfaction-page .header-sep {
  color: var(--auth-nav);
  margin: 0 4px;
}
body.auth-page .header-guest,
body.auth-page .header-user a,
body.dashboard-page .header-user a,
body.employees-page .header-user a,
body.survey-send-page .header-user a,
body.satisfaction-page .header-user a {
  color: var(--auth-nav);
  font-weight: 400;
}
body.dashboard-page .header-user strong,
body.employees-page .header-user strong,
body.survey-send-page .header-user strong,
body.satisfaction-page .header-user strong {
  font-weight: 600;
  color: var(--auth-nav);
}

.auth-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--auth-bg);
  width: 100%;
}
/* Figma 1920 기준: 헤더 100px + 타이틀영역 200px + 카드 top 380px(구분선+80px) */
.auth-hero-band {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 78px 24px 0;
  text-align: center;
  background: var(--auth-bg);
  border-bottom: 1px solid var(--auth-line);
  flex-shrink: 0;
  box-sizing: border-box;
}
.auth-hero-band h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  color: var(--auth-nav);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.auth-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 24px 80px;
  background: linear-gradient(180deg, #dae7f5 0%, #f1f8ff 780px);
  box-sizing: border-box;
}
.auth-card {
  width: 100%;
  max-width: 472px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 24px rgba(46, 58, 89, 0.1);
  padding: 40px 40px 44px;
}
.auth-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--auth-text);
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--auth-line);
}
.auth-tabs {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--auth-line);
}
.auth-tabs a {
  font-size: 20px;
  font-weight: 600;
  color: var(--auth-muted);
  text-decoration: none;
  line-height: 1.2;
}
.auth-tabs a.is-active {
  color: var(--auth-text);
}
.auth-form {
  padding-top: 28px;
}
.auth-form .form-group {
  margin-bottom: 20px;
}
.auth-form .form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--auth-text);
  margin-bottom: 10px;
}
.auth-form .form-control {
  height: 48px;
  border: 1px solid var(--auth-line);
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  padding: 0 14px;
  color: var(--auth-text);
}
.auth-form .form-control::placeholder {
  color: var(--auth-muted);
  font-size: 12px;
}
.auth-form .form-control:focus {
  border-color: var(--auth-nav);
  outline: none;
}
.auth-form .form-check {
  margin-bottom: 28px;
  margin-top: 4px;
  gap: 10px;
}
.auth-form .form-check label {
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
  margin-bottom: 0;
}
.auth-form .form-check input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--btn-login);
  border-radius: 3px;
}
.btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 5px;
  background: var(--btn-login);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-login:hover {
  background: var(--btn-login-hover);
}
.auth-debug-link {
  margin: 20px 0 0;
  text-align: center;
  font-size: 12px;
}
.auth-debug-link a {
  color: var(--btn-login);
}
.auth-card .alert {
  margin-bottom: 16px;
  font-size: 13px;
}

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.form-control {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color .2s;
}
.form-control::placeholder { color: #b0bec9; }
.form-control:focus {
  outline: none;
  border-color: var(--primary);
}
textarea.form-control {
  height: auto;
  min-height: 100px;
  padding: 12px 14px;
  resize: vertical;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.form-check input { width: 16px; height: 16px; accent-color: var(--primary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: .2s;
}
.btn-primary {
  background: var(--btn-login);
  color: #fff;
  width: 100%;
  border-radius: 8px;
}
.btn-primary:hover { background: var(--btn-login-hover); }
.btn-soft {
  background: var(--soft-bg);
  color: #fff;
  width: 100%;
  border-radius: 8px;
}
.btn-soft:hover { background: #bdd8f5; }
.btn-soft--text {
  color: var(--primary);
  font-weight: 600;
}
.btn-soft--text:hover { color: var(--primary-dark); }
.btn-outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: #fff; border: 1px solid #f5c6c6; color: var(--danger); }
.btn-sm { height: 34px; padding: 0 12px; font-size: 12px; }
.btn-accent { background: var(--accent); color: #fff; }

.alert {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 13px;
}
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }

/* Dashboard — Figma 메인/로그인_02 node 7722:2415 */
.home-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--auth-bg);
  width: 100%;
}
.home-hero-band {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 78px 24px 0;
  text-align: center;
  background: var(--auth-bg);
  border-bottom: 1px solid var(--auth-line);
  flex-shrink: 0;
  box-sizing: border-box;
}
.home-hero-band h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  color: var(--auth-nav);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.home-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px clamp(24px, 16.67vw, 320px) 80px;
  background: linear-gradient(180deg, #dae7f5 0%, #f1f8ff 780px);
  box-sizing: border-box;
}
.home-alert {
  width: 100%;
  max-width: 1280px;
  margin-bottom: 24px;
}
.home-panel {
  width: 100%;
  max-width: 472px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--auth-muted);
  border-radius: 10px;
  text-align: center;
  color: var(--auth-nav);
}
body.dashboard-page .menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1280px;
  margin: 0;
}
body.dashboard-page .menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 425px;
  padding: 160px 28px 40px;
  background: #fff;
  border: 1px solid var(--auth-muted);
  border-radius: 10px;
  box-shadow: none;
  box-sizing: border-box;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
body.dashboard-page .menu-card:hover {
  border-color: var(--auth-nav);
  box-shadow: 0 4px 20px rgba(46, 58, 89, 0.08);
  transform: none;
}
body.dashboard-page .menu-card h2 {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 600;
  color: var(--auth-nav);
  line-height: 1.2;
}
body.dashboard-page .menu-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--auth-nav);
  line-height: 1.5;
  white-space: normal;
}

/* Employees — Figma 직원등록_01 node 7722:666 */
body.employees-page .emp-page-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px clamp(24px, 16.67vw, 320px) 64px;
  background: var(--auth-bg);
  box-sizing: border-box;
}
body.employees-page .emp-page-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 24px;
  max-width: 1280px;
}
body.employees-page .emp-page-head h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--auth-nav);
  letter-spacing: -0.02em;
}
body.employees-page .emp-page-head p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
}
body.employees-page .emp-page-rule {
  height: 2px;
  max-width: 1280px;
  margin: 16px 0 32px;
  background: var(--auth-nav);
}

/* Satisfaction — 페이지 상단은 직원등록과 동일 */
body.satisfaction-page .emp-page-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px clamp(24px, 16.67vw, 320px) 64px;
  background: var(--auth-bg);
  box-sizing: border-box;
}
body.satisfaction-page .emp-page-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 24px;
  max-width: 1280px;
}
body.satisfaction-page .emp-page-head h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--auth-nav);
  letter-spacing: -0.02em;
}
body.satisfaction-page .emp-page-head p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
}
body.satisfaction-page .emp-page-rule {
  height: 2px;
  max-width: 1280px;
  margin: 16px 0 32px;
  background: var(--auth-nav);
}
body.satisfaction-page .sat-month-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--auth-nav);
}
body.satisfaction-page .sat-month-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--auth-nav);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
}
body.satisfaction-page .sat-month-nav__btn:hover {
  color: var(--auth-text);
}
body.satisfaction-page .sat-month-nav__label {
  font-weight: 600;
  min-width: 72px;
  text-align: center;
}

body.employees-page .dept-tabs {
  max-width: 1280px;
  margin: 0 0 40px;
  flex-wrap: wrap;
}
body.employees-page .dept-tabs a {
  padding: 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--auth-nav);
}
body.employees-page .dept-tabs a.is-active {
  color: var(--auth-text);
}
body.employees-page .dept-tabs .sep {
  color: var(--auth-nav);
  font-weight: 400;
  padding: 0 12px;
  font-size: 16px;
}
body.employees-page .emp-split {
  display: grid;
  grid-template-columns: minmax(0, 890fr) minmax(0, 360fr);
  gap: 30px;
  max-width: 1280px;
  align-items: start;
}
body.employees-page .emp-panel {
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(46, 58, 89, 0.08);
}
body.employees-page .emp-panel-list .panel-body {
  padding: 40px 40px 48px;
  min-height: 400px;
}
body.employees-page .emp-panel-divider {
  height: 1px;
  background: var(--auth-line);
  margin: 20px 0 24px;
}
body.employees-page .employee-toolbar .count {
  font-size: 20px;
  font-weight: 600;
  color: var(--auth-text);
}
body.employees-page .search-field {
  width: 177px;
}
body.employees-page .search-field input {
  height: 29px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--auth-line);
  border-radius: 5px;
  font-size: 12px;
}
body.employees-page .search-field input::placeholder {
  color: var(--auth-muted);
}
body.employees-page .search-field input:focus {
  border-color: var(--auth-nav);
}
body.employees-page .employee-grid {
  grid-template-columns: repeat(4, minmax(0, 187px));
  gap: 58px 21px;
  justify-content: start;
}
body.employees-page .employee-card-caption {
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
}
body.employees-page .employee-card-caption strong,
body.employees-page .employee-card .emp-name {
  font-weight: 600;
}
body.employees-page .employee-card-photo {
  border-radius: 10px;
  margin-bottom: 10px;
}
body.employees-page .employee-card-photo img.employee-card-photo-placeholder {
  object-fit: cover;
}
body.employees-page .emp-panel-form .panel-body {
  padding: 40px;
}
body.employees-page .panel-form-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--auth-text);
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--auth-line);
}
body.employees-page .photo-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 187px;
  height: 187px;
  max-width: none;
  margin: 0 auto 28px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: url('../images/photo-upload-placeholder.png') center center / cover no-repeat;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
body.employees-page .photo-upload #photoPlaceholder::before {
  content: none;
  display: none;
}
body.employees-page .photo-upload-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  pointer-events: none;
}
body.employees-page .photo-upload-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--auth-nav);
  line-height: 18px;
  text-align: center;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
body.employees-page .photo-upload.has-image .photo-upload-placeholder {
  display: none;
}
body.employees-page .photo-upload img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: 10px;
}
body.employees-page .emp-panel-form .form-group label {
  font-size: 16px;
  font-weight: 500;
  color: var(--auth-text);
}
body.employees-page .emp-panel-form .form-control {
  height: 48px;
  border: 1px solid var(--auth-line);
  border-radius: 5px;
  font-size: 14px;
}
body.employees-page .emp-panel-form .form-control::placeholder {
  color: var(--auth-muted);
  font-size: 12px;
}
body.employees-page .emp-panel-form select.form-control {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' fill='none' viewBox='0 0 14 10'%3E%3Cpath fill='%237687b3' d='M7 10 0 0h14L7 10Z'/%3E%3C/svg%3E") right 14px center/14px 10px no-repeat;
  padding-right: 36px;
}
body.employees-page .form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
body.employees-page .form-actions .btn-register,
body.employees-page .form-actions .btn-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
body.employees-page .btn-register {
  border: none;
  background: var(--btn-login);
  color: #fff;
}
body.employees-page .btn-register:hover {
  background: var(--btn-login-hover);
}
body.employees-page .btn-cancel {
  border: 1px solid var(--auth-line);
  background: #e8f0fa;
  color: var(--auth-nav);
}
body.employees-page .btn-cancel:hover {
  background: #dae7f5;
  border-color: #c5d4e8;
  color: var(--auth-text);
}
body.employees-page .btn-cancel[hidden] {
  display: none;
}

/* Dept tabs */
.dept-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.dept-tabs a {
  padding: 6px 4px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.dept-tabs a:hover { color: var(--text); }
.dept-tabs a.is-active { color: var(--primary); font-weight: 700; }
.dept-tabs .sep { color: #c5d0dc; padding: 0 6px; user-select: none; font-size: 12px; }

/* Panels */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  align-items: start;
}
.panel {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.panel-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-head h2 { margin: 0; font-size: 15px; font-weight: 700; }
.panel-body { padding: 22px; }
.panel-form-title {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.panel-form .btn-soft { margin-top: 4px; }

/* Employee list */
.employee-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}
.employee-toolbar .count { font-weight: 700; font-size: 14px; }
.search-field {
  position: relative;
  width: 140px;
}
.search-field input {
  width: 100%;
  height: 34px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
}
.search-field input:focus { outline: none; border-color: var(--primary); }
.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  opacity: .45;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237a8fa3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.employee-card {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
}
.employee-card-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--primary-light);
  margin-bottom: 8px;
}
.employee-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.employee-card-photo img.employee-card-photo-placeholder {
  object-fit: cover;
}
.employee-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 80, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .2s;
  padding: 10px;
}
.employee-card:hover .employee-card-overlay,
.employee-card.is-selected .employee-card-overlay { opacity: 1; }
.btn-overlay-edit,
.btn-overlay-delete {
  width: 100%;
  max-width: 100px;
  height: 32px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.btn-overlay-edit { background: #fff; color: var(--text); }
.btn-overlay-delete { background: var(--primary); color: #fff; }
.employee-card-caption {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.employee-card.is-selected .employee-card-photo {
  box-shadow: 0 0 0 2px var(--primary);
}

.photo-upload {
  width: 100%;
  aspect-ratio: 1;
  max-width: 200px;
  margin: 0 auto 20px;
  border: 1px dashed #c5d5e8;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  background: #f8fafc;
  padding: 16px;
}
.photo-upload {
  position: relative;
}
.photo-upload #photoPlaceholder {
  line-height: 1.5;
}
.photo-upload #photoPlaceholder::before {
  content: '+';
  display: block;
  font-size: 28px;
  font-weight: 300;
  color: #b0c4d8;
  margin-bottom: 8px;
}
.photo-upload img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.photo-upload.has-image #photoPlaceholder { display: none; }

/* Survey send — Figma 설문발송_01 / 설문발송_02 (7722:4380, 7722:4429) */
body.survey-send-page .survey-send-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px clamp(24px, 16.67vw, 320px) 64px;
  background: var(--auth-bg);
  box-sizing: border-box;
  flex: 1;
  width: 100%;
}
body.survey-send-page .survey-send-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 24px;
  max-width: 1280px;
}
body.survey-send-page .survey-send-head h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--auth-nav);
}
body.survey-send-page .survey-send-head p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 0;
}
body.survey-send-page .survey-send-rule {
  height: 2px;
  max-width: 1280px;
  margin: 16px 0 40px;
  background: var(--auth-nav);
  border: none;
}
body.survey-send-page .survey-customer-step {
  max-width: 100%;
  margin: 0 auto 48px;
  text-align: center;
}
body.survey-send-page .survey-customer-title {
  margin: 0 auto 24px;
  font-size: 36px;
  font-weight: 600;
  color: var(--auth-nav);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
body.survey-send-page .survey-customer-card {
  width: 100%;
  max-width: 472px;
  margin: 0 auto;
  min-height: 642px;
  box-sizing: border-box;
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(46, 58, 89, 0.1);
  padding: 40px 40px 44px;
  text-align: left;
}
body.survey-send-page .survey-customer-card-head {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--auth-line);
}
body.survey-send-page .survey-customer-card-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--auth-text);
}
body.survey-send-page .survey-customer-card-head p {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
  line-height: 1.5;
  text-align: left;
}
body.survey-send-page .survey-customer-form .form-group {
  margin-bottom: 20px;
}
body.survey-send-page .survey-customer-form .form-group:last-of-type {
  margin-bottom: 12px;
}
body.survey-send-page .survey-customer-form label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--auth-text);
  margin-bottom: 10px;
}
body.survey-send-page .survey-customer-form .form-control {
  height: 48px;
  border: 1px solid var(--auth-line);
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  padding: 0 14px;
  color: var(--auth-text);
}
body.survey-send-page .survey-customer-form .form-control::placeholder {
  color: #bfc8e8;
  font-size: 12px;
}
body.survey-send-page .survey-customer-form input[type="date"].survey-date-input {
  min-height: 48px;
  line-height: 1.2;
  color: var(--auth-text);
}
body.survey-send-page .survey-customer-form input[type="date"].survey-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.75;
}
body.survey-send-page .survey-customer-note {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
  line-height: 1.5;
}
body.survey-send-page .btn-survey-customer-submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  cursor: not-allowed;
  background: #dae7f5;
  color: #7687b3;
  transition: background-color 0.15s ease, color 0.15s ease;
}
body.survey-send-page #customerForm.is-customer-complete .btn-survey-customer-submit {
  background: #0d86ff;
  color: #fff;
  cursor: pointer;
}
body.survey-send-page .survey-staff-step {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 48px;
}

/* 설문발송 2단계 — Figma 7722:4246, 7722:2897 */
body.survey-send-page .survey-section-title--major {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 600;
  color: var(--auth-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
body.survey-send-page .survey-dept-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  max-width: 1280px;
  margin: 0 0 28px;
}
body.survey-send-page .survey-dept-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
}
body.survey-send-page .survey-items-back {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--auth-nav);
  text-decoration: none;
  white-space: nowrap;
}
body.survey-send-page .survey-items-back:hover {
  color: var(--auth-text);
  text-decoration: underline;
}
body.survey-send-page .survey-dept-tabs .sep {
  color: var(--auth-nav);
  font-weight: 400;
  font-size: 16px;
  padding: 0 12px;
}
body.survey-send-page .survey-dept-tabs a {
  padding: 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--auth-nav);
  text-decoration: none;
}
body.survey-send-page .survey-dept-tabs a.is-active {
  color: var(--auth-text);
}
body.survey-send-page .survey-split {
  display: grid;
  grid-template-columns: minmax(0, 890fr) minmax(0, 360fr);
  gap: 30px;
  align-items: start;
  max-width: 1280px;
}
body.survey-send-page .survey-staff-main.panel {
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(46, 58, 89, 0.08);
}
body.survey-send-page .survey-staff-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}
body.survey-send-page .survey-staff-main .panel-body {
  padding: 40px;
}
body.survey-send-page .survey-staff-footnote {
  margin: 0;
  padding: 12px 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
  line-height: normal;
  background: #f1f8ff;
  border: 1px solid #bfc8e8;
  border-radius: 8px;
}
body.survey-send-page .survey-current-dept {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--auth-text);
}
body.survey-send-page .survey-dept-guide {
  margin: 0 0 20px !important;
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
  line-height: 1.5;
}
body.survey-send-page .survey-guide-name {
  font-weight: 600;
  color: var(--auth-text);
}
body.survey-send-page .survey-guide-rest {
  font-weight: 400;
  color: var(--auth-nav);
}
body.survey-send-page .survey-staff-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
body.survey-send-page .survey-toolbar-spacer {
  flex: 1;
}
body.survey-send-page .survey-staff-search.search-field {
  width: 177px;
  flex-shrink: 0;
}
body.survey-send-page .survey-staff-search input {
  height: 29px;
  font-size: 12px;
  padding: 0 28px 0 10px;
  border: 1px solid var(--auth-line);
  border-radius: 5px;
}
body.survey-send-page .survey-staff-search input::placeholder {
  color: #bfc8e8;
}
body.survey-send-page .survey-staff-divider {
  height: 1px;
  background: var(--auth-line);
  margin: 0 0 24px;
}
body.survey-send-page #stepStaff .survey-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 187px));
  gap: 58px 21px;
  justify-content: start;
}
body.survey-send-page #stepStaff .survey-staff-card {
  position: relative;
  width: 100%;
  max-width: 187px;
  border: none;
  border-radius: 10px;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  cursor: default;
  text-align: center;
}
body.survey-send-page #stepStaff .survey-staff-card.is-selected {
  border: none;
  box-shadow: none;
}
body.survey-send-page #stepStaff .survey-staff-card.is-selected .photo-wrap {
  box-shadow: 0 0 0 4px #0d86ff;
}
body.survey-send-page #stepStaff .survey-staff-card .photo-wrap {
  position: relative;
  z-index: 0;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #dae7f5 0%, #f1f8ff 100%);
  pointer-events: none;
}
body.survey-send-page #stepStaff .survey-staff-check-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  line-height: 0;
}
body.survey-send-page #stepStaff .survey-staff-card .check {
  position: relative;
  top: auto;
  right: auto;
  display: block;
  pointer-events: none;
  width: 22px;
  height: 22px;
  border: 1px solid #bfc8e8;
  border-radius: 5px;
  background: #fff;
  box-sizing: border-box;
}
body.survey-send-page #stepStaff .survey-staff-caption-btn {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  padding: 0 4px 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  color: var(--auth-nav);
}
body.survey-send-page #stepStaff .survey-staff-card .caption {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: 400;
  color: inherit;
  background: transparent;
  line-height: inherit;
}
body.survey-send-page #stepStaff .survey-staff-card .caption-dept {
  font-weight: 400;
  color: var(--auth-text);
}
body.survey-send-page #stepStaff .survey-staff-card .caption-emp {
  font-weight: 600;
  color: var(--auth-nav);
}
body.survey-send-page #stepStaff .survey-staff-card.is-selected .check {
  background: #0d86ff;
  border-color: #0d86ff;
}
body.survey-send-page #stepStaff .survey-staff-card.is-selected .check::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  box-sizing: border-box;
}
body.survey-send-page .survey-sidebar.panel {
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(46, 58, 89, 0.08);
}
body.survey-send-page .survey-sidebar .panel-body {
  padding: 40px 40px 36px;
  min-height: 480px;
}
body.survey-send-page .customer-summary {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--auth-line);
}
body.survey-send-page .customer-summary-name {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--auth-text);
}
body.survey-send-page .customer-summary-meta {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
}
body.survey-send-page .customer-summary-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
body.survey-send-page .customer-summary-marker {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  background: #0d86ff;
}
body.survey-send-page .customer-summary-line-text {
  line-height: 1.35;
}
body.survey-send-page .customer-summary-line--chart {
  flex-shrink: 0;
  text-align: right;
}
body.survey-send-page .customer-summary-line--chart .customer-summary-line-text {
  text-align: right;
}
body.survey-send-page .customer-summary-line--chart strong {
  font-weight: 600;
  color: var(--auth-text);
}

body.survey-send-page .selected-staff-list {
  gap: 12px;
  margin-bottom: 20px;
}
body.survey-send-page .selected-staff-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
body.survey-send-page .selected-staff-thumb {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(180deg, #dae7f5 0%, #f1f8ff 100%);
}
body.survey-send-page .selected-staff-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.survey-send-page .selected-staff-chip-text {
  flex: 1;
  min-width: 0;
  text-align: left;
  overflow: hidden;
}
body.survey-send-page .selected-staff-dept {
  font-size: 12px;
  font-weight: 600;
  color: var(--auth-nav);
  display: block;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.survey-send-page .selected-staff-emp {
  display: block;
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--auth-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.survey-send-page .selected-staff-remove {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: none;
  border-radius: 50%;
  background: #e8ecf5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%237687B3' stroke-width='1.2' d='M2 2l8 8M10 2L2 10'/%3E%3C/svg%3E") center/12px no-repeat;
  cursor: pointer;
  padding: 0;
  pointer-events: auto;
}

body.survey-send-page .send-confirm,
body.survey-send-page .send-final {
  margin-top: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  text-align: left;
}
body.survey-send-page .send-confirm-inner {
  background: #f1f8ff;
  border-radius: 5px;
  padding: 16px 14px 18px;
  margin-bottom: 16px;
}
body.survey-send-page .survey-confirm-line {
  margin: 0 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-nav);
  line-height: 18px;
}
body.survey-send-page .survey-confirm-line + .survey-confirm-line {
  margin-top: 0;
}
body.survey-send-page .survey-confirm-line .survey-confirm-strong,
body.survey-send-page .survey-confirm-line strong {
  font-weight: 600;
  color: var(--auth-text);
}
body.survey-send-page .btn-send-step,
body.survey-send-page .btn-send-survey {
  width: 100%;
  height: 48px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  background: #0d86ff;
  border: none;
  color: #fff;
}
body.survey-send-page .btn-send-survey:disabled {
  background: #dae7f5;
  color: var(--auth-nav);
  cursor: not-allowed;
  opacity: 1;
}
body.survey-send-page .send-final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.survey-send-page .btn-send-cancel {
  width: 100%;
  height: 44px;
  border-radius: 5px;
  font-size: 15px;
  background: #e8f0fa;
  color: var(--auth-nav);
  border: 1px solid var(--auth-line);
}

/* Figma 설문발송_10 (7722:3713) — 전송 확인·완료 모달 */
body.survey-send-page .survey-send-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
}
body.survey-send-page .survey-send-modal-overlay.is-open {
  display: flex;
}
body.survey-send-page .survey-send-confirm-modal {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 472px;
  max-height: calc(100vh - 40px);
  padding: 38px 40px 36px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(46, 58, 89, 0.2);
  overflow: hidden;
}
body.survey-send-page .survey-send-modal-title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--auth-nav);
}
body.survey-send-page .survey-send-modal-line {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--auth-nav);
}
body.survey-send-page .survey-send-modal-line + .survey-send-modal-line {
  margin-top: 0;
}
body.survey-send-page .survey-send-modal-line .survey-send-modal-strong,
body.survey-send-page .survey-send-modal-line strong {
  font-weight: 600;
  color: var(--auth-text);
}
body.survey-send-page .survey-send-modal-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding-right: 4px;
}
body.survey-send-page .survey-modal-staff-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 10px 12px 10px 10px;
  border: 1px solid #dae7f5;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}
body.survey-send-page .survey-modal-staff-item .selected-staff-thumb {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
body.survey-send-page .survey-modal-staff-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}
body.survey-send-page .survey-modal-staff-dept {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--auth-text);
  line-height: 1.4;
}
body.survey-send-page .survey-modal-staff-name {
  display: block;
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--auth-nav);
  line-height: 1.4;
}
body.survey-send-page .survey-modal-staff-remove {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: #e8ecf5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%237687B3' stroke-width='1.2' d='M2 2l8 8M10 2L2 10'/%3E%3C/svg%3E") center/12px no-repeat;
  cursor: pointer;
  padding: 0;
}
body.survey-send-page .survey-send-modal-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
body.survey-send-page .btn-send-modal-cancel,
body.survey-send-page .btn-send-modal-submit {
  flex: 1;
  height: 48px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
body.survey-send-page .btn-send-modal-cancel {
  background: #dae7f5;
  color: var(--auth-nav);
}
body.survey-send-page .btn-send-modal-submit {
  background: #0d86ff;
  color: #fff;
}
body.survey-send-page .btn-send-modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* Figma 설문발송_11 (7722:4021) — 전송 완료 알림 */
body.survey-send-page .survey-send-success-modal {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 472px;
  padding: 38px 40px 36px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(46, 58, 89, 0.2);
  text-align: center;
  box-sizing: border-box;
}
body.survey-send-page .survey-send-success-message {
  width: 100%;
  margin: 0 0 38px;
  align-self: center;
}
body.survey-send-page .survey-send-success-line {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--auth-nav);
}
body.survey-send-page .survey-send-success-line + .survey-send-success-line {
  margin-top: 0;
}
body.survey-send-page .survey-send-success-strong {
  font-weight: 600;
  color: var(--auth-text);
}
body.survey-send-page .survey-send-success-icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 38px;
  align-self: center;
  border: 2px solid #dae7f5;
  border-radius: 50%;
  box-sizing: border-box;
}
body.survey-send-page .survey-send-success-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  width: 11px;
  height: 20px;
  border: solid #7687b3;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
body.survey-send-page .survey-send-modal-actions--solo {
  width: 100%;
  flex-shrink: 0;
}
body.survey-send-page .survey-send-modal-actions--solo .btn-send-modal-submit {
  flex: 1;
  width: 100%;
  min-height: 48px;
  height: 48px;
  padding: 0;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
}

/* Survey send — staff step (legacy layout, shared) */
.survey-customer-step {
  max-width: 440px;
  margin: 0 auto 48px;
}
.survey-customer-heading {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.survey-customer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 26px 28px 28px;
}
.survey-customer-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.survey-customer-card-head h3 { margin: 0; font-size: 14px; font-weight: 700; }
.survey-customer-card-head p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  line-height: 1.5;
}
.survey-customer-note {
  margin: 0 0 18px;
  font-size: 12px;
  color: var(--muted);
}
.survey-section-title {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
}
.survey-dept-title { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.survey-dept-guide { margin-bottom: 14px !important; font-size: 13px; }
.survey-footnote { margin-top: 14px !important; font-size: 12px; color: var(--muted); }
.survey-sidebar .panel-body {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.survey-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.survey-staff-card {
  position: relative;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: var(--primary-light);
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  overflow: hidden;
}
.survey-staff-card.is-selected {
  border-color: var(--primary);
}
.survey-staff-card .check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 4px;
  background: rgba(255,255,255,.3);
  z-index: 2;
}
.survey-staff-card.is-selected .check {
  background: var(--primary);
  border-color: var(--primary);
}
.survey-staff-card.is-selected .check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.survey-staff-card .photo-wrap {
  aspect-ratio: 1;
  background: var(--primary-light);
}
.survey-staff-card .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.survey-staff-card .caption {
  display: block;
  padding: 8px 6px;
  font-size: 11px;
  font-weight: 600;
  background: #fff;
}

.customer-summary {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.customer-summary .customer-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.customer-summary .meta { font-size: 12px; color: var(--muted); }

.selected-staff-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.selected-staff-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary-light);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
}
.selected-staff-chip .label { font-weight: 600; }
.selected-staff-chip .remove {
  border: none;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 4px;
}
.selected-staff-item .dept {
  display: block;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}
.selected-staff-item .name {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.send-confirm,
.send-final {
  background: var(--primary-light);
  border-radius: 10px;
  padding: 18px;
  margin-top: auto;
  text-align: center;
}
.send-confirm p,
.send-final p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
}
.send-final .modal-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.send-final .modal-actions .btn { width: 100%; }


/* Satisfaction — Figma 7722:780 대시보드 */
body.satisfaction-page {
  --sat-content: 1280px;
  --sat-col-left: 407px;
  --sat-gap-x: 29px;
  --sat-gap-y: 30px;
  --sat-text: #2e3a59;
  --sat-muted: #7687b3;
  --sat-line: #e2ebf5;
}

.sat-page {
  width: min(100%, var(--sat-content));
  margin: 0 auto;
  padding: 0;
  color: var(--sat-text);
  box-sizing: border-box;
}

.sat-page-grid {
  display: grid;
  grid-template-columns: var(--sat-col-left) minmax(0, 1fr);
  grid-template-areas:
    "left teams"
    "left bottom";
  column-gap: var(--sat-gap-x);
  row-gap: var(--sat-gap-y);
  align-items: start;
}
.sat-col-left { grid-area: left; min-width: 0; }
.sat-col-teams { grid-area: teams; min-width: 0; }
.sat-col-bottom {
  grid-area: bottom;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sat-gap-x);
  align-items: start;
  min-width: 0;
}
.sat-col-rank,
.sat-col-voice { min-width: 0; }

.sat-sheet {
  position: relative;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}
.sat-sheet--tall {
  min-height: 942px;
  height: auto;
  border: 1px solid #bfc8e8;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: visible;
}
.sat-col-left .sat-sheet--tall {
  position: relative;
}
.sat-sheet--teams {
  min-height: 456px;
  border: 1px solid #bfc8e8;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: visible;
}
.sat-sheet--teams > .sat-block__head {
  padding: 40px 40px 0;
  margin-bottom: 17px;
}
.sat-sheet--teams > .sat-block__rule--wide {
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 40px;
}
.sat-sheet--bottom {
  min-height: 456px;
  height: 456px;
  border: 1px solid #bfc8e8;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}

.sat-block {
  position: relative;
  padding: 40px 40px 0;
}
.sat-block--gauge .sat-block__rule {
  margin-bottom: 32px;
}
.sat-block--trend {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}
.sat-block__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 17px;
}
.sat-block__titles h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--sat-text);
}
.sat-block__titles p {
  margin: 7px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--sat-muted);
}
.sat-block__more {
  flex-shrink: 0;
  border: none;
  background: none;
  padding: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  line-height: 0;
}
.sat-block__more img {
  display: block;
  width: 32px;
  height: 32px;
}
.sat-block__rule {
  height: 1px;
  background: var(--sat-line);
  margin: 0 0 20px;
}
.sat-block__rule--wide {
  margin-right: 40px;
}

.sat-gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sat-gauge {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
}
.sat-gauge__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #0d86ff 0%, #085099 100%);
}
.sat-gauge__ring::after {
  content: '';
  position: absolute;
  inset: 9.73px;
  border-radius: 50%;
  background: #fff;
}
.sat-gauge__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.sat-gauge__score {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
.sat-gauge__score strong {
  font-size: 50px;
  font-weight: 600;
  color: var(--sat-text);
  letter-spacing: -0.02em;
}
.sat-gauge__score span {
  font-size: 20px;
  font-weight: 300;
  color: var(--sat-muted);
}
.sat-gauge__period {
  margin: 10px 0 0;
  font-size: 8px;
  font-weight: 400;
  color: var(--sat-muted);
  letter-spacing: 0;
}

.sat-gauge-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 327px;
  margin: 0 auto 8px;
}
.sat-gauge-meta__col {
  flex: 1;
  text-align: center;
}
.sat-gauge-meta__divider {
  width: 1px;
  height: 34px;
  background: var(--sat-line);
  flex-shrink: 0;
}
.sat-gauge-meta__label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--sat-muted);
  margin-bottom: 3px;
}
.sat-gauge-meta__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 600;
  color: var(--sat-text);
  line-height: 1.2;
}
.sat-gauge-meta__arrow {
  display: block;
  width: 13px;
  height: 11px;
  flex-shrink: 0;
}
.sat-gauge-meta__arrow--down {
  transform: rotate(180deg);
}

/* 지난 대비: 상승=빨강, 하락=파랑 */
.sat-delta--up,
.sat-gauge-meta__value.sat-delta--up,
.sat-overall-gauge-meta__value.sat-delta--up,
.sat-team-card__delta-row.sat-delta--up {
  color: #f5226c;
}
.sat-delta--down,
.sat-gauge-meta__value.sat-delta--down,
.sat-overall-gauge-meta__value.sat-delta--down,
.sat-team-card__delta-row.sat-delta--down {
  color: #0d86ff;
}
.sat-delta--flat,
.sat-gauge-meta__value.sat-delta--flat,
.sat-overall-gauge-meta__value.sat-delta--flat,
.sat-team-card__delta-row.sat-delta--flat {
  color: var(--sat-text);
}
.sat-team-card__delta-row.sat-delta--up strong,
.sat-team-card__delta-row.sat-delta--down strong,
.sat-team-card__delta-row.sat-delta--flat strong {
  color: inherit;
}

.sat-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.sat-arrow--down {
  border-top: 11px solid var(--sat-text);
  border-bottom: none;
}
.sat-arrow--up {
  border-bottom: 11px solid var(--sat-text);
  border-top: none;
}
.sat-arrow--sm {
  border-left-width: 4.5px;
  border-right-width: 4.5px;
}
.sat-arrow--sm.sat-arrow--down { border-top-width: 7px; }
.sat-arrow--sm.sat-arrow--up { border-bottom-width: 7px; }

.sat-analytics-label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sat-text);
}
.sat-block--trend .sat-block__rule {
  margin-bottom: 24px;
}
.sat-trend-chart {
  position: relative;
  width: 100%;
  height: 300px;
  min-height: 300px;
  margin-right: 0;
  box-sizing: border-box;
}
.sat-trend-chart canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.sat-trend-tooltip {
  position: absolute;
  z-index: 5;
  min-width: 168px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #bfc8e8;
  border-radius: 5px;
  box-shadow: 0 1px 7px rgba(0, 23, 46, 0.05);
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease, visibility 0.12s ease;
}
.sat-trend-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}
.sat-trend-tooltip__head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  line-height: 1;
}
.sat-trend-tooltip__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d86ff;
}
.sat-trend-tooltip__score {
  white-space: nowrap;
  color: #2e3a59;
}
.sat-trend-tooltip__score strong {
  font-size: 20px;
  font-weight: 600;
}
.sat-trend-tooltip__score span {
  font-size: 12px;
  font-weight: 400;
  color: #7687b3;
}
.sat-trend-tooltip__period,
.sat-trend-tooltip__respondents {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #7687b3;
  white-space: nowrap;
}
.sat-trend-tooltip__respondents {
  margin-top: 4px;
}
.sat-trend-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 88%);
  pointer-events: none;
  z-index: 1;
}

.sat-team-stage {
  position: relative;
  padding: 0 40px 40px;
  min-height: 280px;
}

.sat-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 173px);
  gap: 39px 23px;
  justify-content: start;
}
.sat-team-cell {
  position: relative;
  width: 173px;
  height: 113px;
  cursor: default;
}
#satTeamTooltip,
#satRankTooltip {
  z-index: 50;
  transition: none;
}
.sat-team-cell__bg {
  position: absolute;
  left: -1px;
  top: -17px;
  width: 175px;
  height: 131px;
  border-radius: 10px;
  background: var(--team-accent);
  z-index: 0;
  pointer-events: none;
}
.sat-team-card {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 113px;
  background: #fff;
  border: none;
  border-radius: 9px;
  padding: 11px 12px 10px;
  box-sizing: border-box;
}
.sat-team-card__info {
  position: absolute;
  top: 11px;
  right: 11px;
  border: none;
  background: none;
  padding: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  line-height: 0;
}
.sat-team-card__info img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.sat-team-card__title {
  margin: 0 22px 0 0;
  font-size: 12px;
  line-height: 1.2;
  color: var(--sat-text);
}
.sat-team-card__title-main,
.sat-team-card__title-sub {
  font-weight: 600;
}
.sat-team-card__title-sep {
  font-weight: 400;
}
.sat-team-card__score {
  position: absolute;
  left: 12px;
  bottom: 10px;
  margin: 0;
  line-height: 1;
  color: var(--sat-text);
}
.sat-team-card__score strong {
  font-size: 30px;
  font-weight: 600;
}
.sat-team-card__score span {
  font-size: 12px;
  font-weight: 400;
  color: var(--sat-muted);
}
.sat-team-card__delta {
  position: absolute;
  right: 12px;
  bottom: 10px;
  text-align: right;
}
.sat-team-card__delta-label {
  display: block;
  font-size: 8px;
  font-weight: 400;
  color: var(--sat-muted);
  line-height: 1.2;
  margin-bottom: 2px;
}
.sat-team-card__delta-row {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sat-text);
}
.sat-team-card__delta-row.sat-delta--up {
  color: #f5226c;
}
.sat-team-card__delta-row.sat-delta--down {
  color: #0d86ff;
}
.sat-team-card__delta-row.sat-delta--flat {
  color: var(--sat-text);
}
.sat-team-card__delta-row strong {
  font-weight: 600;
  color: inherit;
}
.sat-team-card__arrow {
  display: block;
  width: 9px;
  height: 7px;
  flex-shrink: 0;
}
.sat-team-card__arrow--down {
  transform: rotate(180deg);
}

.sat-rank-table-head,
.sat-voice-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 40px 0;
  padding-bottom: 10px;
  font-size: 12px;
  color: var(--sat-text);
}
.sat-rank-table-head span:first-child,
.sat-voice-table-head span:first-child {
  font-weight: 600;
}
.sat-rank-table-head span:last-child,
.sat-voice-table-head span:last-child {
  font-weight: 400;
  color: var(--sat-muted);
}

.sat-block--rank-wrap,
.sat-col-rank .sat-sheet--bottom,
.sat-col-voice .sat-sheet--bottom {
  padding-bottom: 0;
}
.sat-col-rank .sat-block__head,
.sat-col-voice .sat-block__head,
.sat-col-rank .sat-block__rule,
.sat-col-voice .sat-block__rule {
  margin-left: 40px;
  margin-right: 40px;
}
.sat-col-rank .sat-block__head,
.sat-col-voice .sat-block__head {
  padding-top: 40px;
  margin-bottom: 17px;
}
.sat-col-rank .sat-block__rule,
.sat-col-voice .sat-block__rule {
  margin-bottom: 24px;
}

.sat-rank-stage {
  position: relative;
}
.sat-col-rank .sat-sheet--bottom {
  overflow: hidden;
}
.sat-rank-list {
  list-style: none;
  margin: 0;
  padding: 0 40px 62px;
  max-height: 300px;
  overflow: visible;
}
.sat-rank-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0 10px;
  min-height: 52px;
  padding: 8px 0;
  box-sizing: border-box;
}
.sat-rank-row__track {
  position: relative;
  height: 36px;
  min-width: 0;
  cursor: pointer;
}
.sat-rank-row__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 0;
  padding: 0 10px;
  box-sizing: border-box;
}
.sat-rank-row__num {
  flex-shrink: 0;
  width: 12px;
  margin-right: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sat-text);
  text-align: center;
}
.sat-rank-row__track::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f1f8ff;
  border-radius: 5px;
  z-index: 0;
}
.sat-rank-row__bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 36px;
  background: #d9ecff;
  border-radius: 5px;
  z-index: 1;
  transition: background 0.12s ease;
}
.sat-rank-row.is-hovered .sat-rank-row__bar {
  background: #0d86ff;
}
.sat-rank-row.is-hovered .sat-rank-row__num,
.sat-rank-row.is-hovered .sat-rank-row__name {
  color: #fff;
}
.sat-rank-row__name {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--sat-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sat-rank-row__score {
  font-size: 12px;
  font-weight: 500;
  color: var(--sat-text);
  text-align: right;
  z-index: 2;
}
.sat-rank-row--empty {
  display: block;
  padding: 20px 0;
  color: var(--sat-muted);
  font-size: 12px;
}

.sat-voice-list {
  list-style: none;
  margin: 0;
  padding: 0 40px 40px;
}
.sat-voice-row {
  display: grid;
  grid-template-columns: 88px 1fr 56px;
  gap: 0 10px;
  align-items: center;
  box-sizing: border-box;
  min-height: 0;
  padding: 10px 0;
  border-bottom: 1px solid #c5d4e8;
  font-size: 12px;
  line-height: 1.35;
}
.sat-voice-row__patient {
  color: var(--sat-text);
  font-weight: 400;
  white-space: nowrap;
}
.sat-voice-row__msg {
  position: relative;
  min-width: 0;
  color: var(--sat-muted);
  white-space: nowrap;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
}
.sat-voice-row__date {
  color: var(--sat-muted);
  text-align: right;
  white-space: nowrap;
}
.sat-voice-row--empty {
  display: block;
  min-height: 0;
  padding: 20px 0;
  color: var(--sat-muted);
  border-bottom: none;
}
.sat-sheet-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
  z-index: 2;
}
.sat-sheet--bottom .sat-sheet-fade {
  border-radius: 0 0 10px 10px;
}

/* 이 달의 우수사원 상세 — Figma 7722:1704 */
.sat-emp-page {
  padding-bottom: 30px;
}
.sat-emp-page__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.sat-emp-page__title {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--sat-text);
}
.sat-emp-page__desc {
  margin: 12px 0 0;
  font-size: 16px;
  color: var(--sat-muted);
}
.sat-emp-page__filters {
  display: flex;
  gap: 10px;
}
.sat-emp-page__content {
  display: grid;
  grid-template-columns: minmax(0, 890px) 360px;
  gap: 20px;
  align-items: start;
}
.sat-emp-list-card,
.sat-emp-prev-card {
  border: 1px solid #bfc8e8;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}
.sat-emp-list-card {
  padding: 0 40px 18px;
}
.sat-emp-list-card__rule {
  height: 1px;
  margin: 63px 0 10px;
  background: var(--sat-line);
}
.sat-emp-list-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 160px 120px;
  gap: 12px;
  font-size: 12px;
  color: var(--sat-muted);
  padding-bottom: 10px;
}
.sat-emp-list-head span:nth-child(3),
.sat-emp-list-head span:nth-child(4) {
  text-align: right;
}
.sat-emp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sat-emp-list__row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 160px 120px;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  border-top: 1px solid var(--sat-line);
}
.sat-emp-list__rank {
  font-size: 16px;
  font-weight: 500;
  color: #7687b3;
}
.sat-emp-list__member {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.sat-emp-list__photo {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(180deg, #dae7f5 0%, #f1f8ff 100%);
}
.sat-emp-list__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.sat-emp-list__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.sat-emp-list__dept {
  font-size: 12px;
  color: var(--sat-muted);
}
.sat-emp-list__name {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.sat-emp-list__score,
.sat-emp-list__count {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  color: var(--sat-text);
}
.sat-emp-list__empty {
  border-top: 1px solid var(--sat-line);
  padding: 30px 0;
  text-align: center;
  color: var(--sat-muted);
}
.sat-emp-prev-card {
  padding: 24px 24px 20px;
}
.sat-emp-prev-card__title {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  color: var(--sat-text);
}
.sat-emp-prev-card__period {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--sat-muted);
}
.sat-emp-prev-card__rule {
  height: 1px;
  background: var(--sat-line);
  margin: 12px 0 14px;
}
.sat-emp-prev-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sat-emp-prev-list__row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.sat-emp-prev-list__photo {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  background: linear-gradient(180deg, #dae7f5 0%, #f1f8ff 100%);
}
.sat-emp-prev-list__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sat-emp-prev-list__dept {
  display: block;
  font-size: 10px;
  color: var(--sat-muted);
}
.sat-emp-prev-list__name {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.sat-emp-prev-list__rank {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--sat-muted);
  white-space: nowrap;
}
.sat-emp-prev-list__medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
}
.sat-emp-prev-list__medal--1 { background: #f2b825; }
.sat-emp-prev-list__medal--2 { background: #9ea7ba; }
.sat-emp-prev-list__medal--3 { background: #c99048; }
.sat-emp-prev-list__empty {
  color: var(--sat-muted);
  font-size: 12px;
  padding: 8px 0;
}

/* 종합 고객만족도 상세 — Figma 7722:1611 */
body.satisfaction-overall-page .emp-page-head {
  display: none;
}
body.satisfaction-overall-page .emp-page-rule {
  display: none;
}
.sat-overall-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  margin-bottom: 16px;
}
.sat-overall-head__parent {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.sat-overall-head__parent a {
  color: var(--auth-nav);
  text-decoration: none;
}
.sat-overall-head h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--sat-text);
  letter-spacing: -0.02em;
}
.sat-overall-head__desc {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--sat-muted);
}
.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;
}
.sat-overall-filters {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 8px;
}
.sat-overall-filter {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 177px;
  height: 32px;
  box-sizing: border-box;
  background: #dae7f5;
  border-radius: 5px;
}
.sat-overall-filter--basis {
  min-width: 140px;
}
.sat-overall-filter::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--sat-muted);
  pointer-events: none;
}
.sat-overall-filter__control {
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 28px 0 14px;
  border: 0;
  background: transparent;
  border-radius: inherit;
  font: inherit;
  font-size: 12px;
  font-family: Pretendard, sans-serif;
  color: var(--sat-muted);
  cursor: pointer;
}
.sat-overall-filter__control:focus-visible {
  outline: 2px solid #0d86ff;
  outline-offset: 2px;
}
.sat-overall-range {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 280px;
  height: 32px;
  padding: 0 12px;
  box-sizing: border-box;
  background: #dae7f5;
  border-radius: 5px;
}
.sat-overall-range__field {
  position: relative;
  flex: 1;
  min-width: 0;
  margin: 0;
}
.sat-overall-range__input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  font-family: Pretendard, sans-serif;
  color: var(--sat-muted);
  cursor: pointer;
}
.sat-overall-range__input:focus-visible {
  outline: 2px solid #0d86ff;
  outline-offset: 1px;
  border-radius: 2px;
}
.sat-overall-range__input[type="number"] {
  -moz-appearance: textfield;
}
.sat-overall-range__input[type="number"]::-webkit-outer-spin-button,
.sat-overall-range__input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.sat-overall-range__input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.65;
}
.sat-overall-range__sep {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1;
  color: var(--sat-muted);
}
.sat-overall-range[data-range-mode="weekly"] .sat-overall-range__input,
.sat-overall-range[data-range-mode="yearly"] .sat-overall-range__input {
  display: none !important;
}
.sat-overall-year-select {
  appearance: none;
  display: none;
  width: 100%;
  min-width: 0;
  height: 24px;
  margin: 0;
  padding: 0 18px 0 0;
  border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath fill='%237687b3' d='M0 0l4 5 4-5z'/%3E%3C/svg%3E") right 0 center no-repeat;
  background-size: 8px 5px;
  font-size: 12px;
  font-family: Pretendard, sans-serif;
  color: var(--sat-muted);
  cursor: pointer;
}
.sat-overall-year-select:focus-visible {
  outline: 2px solid #0d86ff;
  outline-offset: 1px;
  border-radius: 2px;
}
.sat-overall-range[data-range-mode="yearly"] .sat-overall-year-select {
  display: block;
}
.sat-overall-week-trigger {
  display: none;
  width: 100%;
  min-width: 0;
  height: 24px;
  margin: 0;
  padding: 0 22px 0 0;
  border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3E%3Crect x='1.5' y='2.5' width='11' height='10' rx='1.5' stroke='%237687b3'/%3E%3Cpath stroke='%237687b3' stroke-linecap='round' d='M1.5 5.5h11M4.5 1.5v2M9.5 1.5v2'/%3E%3C/svg%3E") right 0 center no-repeat;
  background-size: 14px 14px;
  font-size: 12px;
  font-family: Pretendard, sans-serif;
  color: var(--sat-muted);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.sat-overall-week-trigger:focus-visible {
  outline: 2px solid #0d86ff;
  outline-offset: 1px;
  border-radius: 2px;
}
.sat-overall-range[data-range-mode="weekly"] .sat-overall-week-trigger {
  display: block;
}
.sat-week-cal {
  position: fixed;
  z-index: 200;
  width: 252px;
  padding: 12px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #bfc8e8;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 23, 46, 0.12);
}
.sat-week-cal[hidden] {
  display: none;
}
.sat-week-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.sat-week-cal__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--sat-text);
}
.sat-week-cal__nav {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #e8f0f8;
  color: var(--sat-muted);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.sat-week-cal__nav:hover {
  background: #dae7f5;
}
.sat-week-cal__nav:focus-visible {
  outline: 2px solid #0d86ff;
  outline-offset: 1px;
}
.sat-week-cal__dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.sat-week-cal__dow span {
  font-size: 10px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  color: #7687b3;
}
.sat-week-cal__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sat-week-cal__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 2px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}
.sat-week-cal__row:hover:not(:disabled) {
  background: #e8f4ff;
}
.sat-week-cal__row.is-selected {
  background: #0d86ff;
}
.sat-week-cal__row.is-selected .sat-week-cal__day {
  color: #fff;
}
.sat-week-cal__row:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.sat-week-cal__day {
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  font-size: 12px;
  font-family: Pretendard, sans-serif;
  color: var(--sat-text);
  pointer-events: none;
}
.sat-week-cal__day.is-empty {
  visibility: hidden;
}
.sat-week-cal__hint {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--sat-muted);
  text-align: center;
}
body.satisfaction-overall-page .emp-page-wrap > .emp-page-rule {
  display: block;
  height: 2px;
  max-width: 1280px;
  margin: 0 0 32px;
  background: var(--auth-nav);
}
.sat-overall-page {
  display: grid;
  grid-template-columns: minmax(0, 890px) 360px;
  gap: 30px;
  align-items: stretch;
  max-width: 1280px;
}
.sat-overall-card {
  border: 1px solid #bfc8e8;
  border-radius: 10px;
  box-sizing: border-box;
  background: #fff;
  min-height: 456px;
  height: 100%;
}
.sat-overall-card--chart {
  padding: 40px 40px 32px;
}
.sat-overall-card--gauge {
  padding: 40px 40px 36px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  justify-items: center;
  align-content: stretch;
}
.sat-overall-card__title {
  margin: 0;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: var(--sat-text);
  line-height: 1.2;
}
.sat-overall-card__hint,
.sat-overall-card__period {
  margin: 8px 0 0;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  color: var(--sat-muted);
  line-height: 1.3;
}
.sat-overall-card__period {
  text-align: left;
}
.sat-overall-card__rule {
  width: 100%;
  height: 1px;
  margin: 17px 0 20px;
  background: var(--sat-line);
}
.sat-overall-line-chart {
  position: relative;
  width: 100%;
  height: 220px;
  margin-bottom: 28px;
  overflow: visible;
}
.sat-overall-line-chart.is-loading {
  opacity: 0.55;
  transition: opacity 0.12s ease;
}
#satOverallTrendTooltip {
  z-index: 50;
  transition: none;
}
.sat-overall-line-chart canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.sat-overall-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
  width: 100%;
  padding-top: 8px;
  border-top: 1px solid var(--sat-line);
}
.sat-overall-stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 6px;
  row-gap: 6px;
  align-items: center;
  min-width: 0;
  padding-top: 16px;
}
.sat-overall-stat__dot {
  grid-column: 1;
  grid-row: 1;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  margin: 0;
  background: #0d86ff;
}
.sat-overall-stat__label {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--sat-muted);
}
.sat-overall-stat__value {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--sat-text);
  line-height: 1.2;
  word-break: keep-all;
}
.sat-gauge--overall {
  align-self: center;
  margin: 0;
}
.sat-overall-gauge-meta {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  width: 100%;
  align-self: stretch;
}
.sat-overall-gauge-meta__col {
  flex: 1;
  text-align: center;
  min-width: 0;
}
.sat-overall-gauge-meta__col--delta {
  text-align: center;
}
.sat-overall-gauge-meta__label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--sat-muted);
}
.sat-overall-gauge-meta__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 600;
  color: var(--sat-text);
  line-height: 1;
}
.sat-overall-gauge-meta__value.sat-delta--up {
  color: #f5226c;
}
.sat-overall-gauge-meta__value.sat-delta--down {
  color: #0d86ff;
}
.sat-overall-gauge-meta__value.sat-delta--flat {
  color: var(--sat-text);
}
.sat-overall-gauge-meta__divider {
  width: 1px;
  height: 34px;
  margin: 0 12px;
  background: var(--sat-line);
  flex-shrink: 0;
}
a.sat-block__more {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
}

/* 팀 별 고객만족도 상세 (Figma 7722:1054) */
.sat-team-page-top {
  display: grid;
  grid-template-columns: minmax(0, 890px) 360px;
  gap: 30px;
  align-items: stretch;
  max-width: 1280px;
  margin-bottom: 30px;
}
.sat-team-card--chart {
  display: flex;
  flex-direction: column;
  align-self: start;
  min-height: 0;
  height: auto;
  padding: 32px 40px 30px;
}
.sat-team-card--chart .sat-overall-card__rule {
  margin: 0 0 12px;
}
.sat-team-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 8px 0 10px;
  padding: 0;
  list-style: none;
}
.sat-team-legend li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--sat-muted);
  line-height: 1.2;
}
.sat-team-legend__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sat-team-line-chart {
  position: relative;
  flex: none;
  width: 100%;
  min-height: 250px;
  height: 250px;
  margin-bottom: 0;
  overflow: visible;
}
.sat-team-line-chart canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
#satTeamTrendTooltip {
  z-index: 50;
  transition: none;
}
.sat-team-card--best {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  min-height: 388px;
}
/* 이번 달 우수팀 (Figma 7722:1309) */
.sat-team-best-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  min-height: 160px;
}
.sat-team-best-box {
  position: relative;
  width: 280px;
  max-width: 100%;
  height: 160px;
  border-radius: 10px;
  background: var(--team-accent, #0d86ff);
  box-sizing: border-box;
}
.sat-team-best-box__inner {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 17px;
  bottom: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
  padding: 34px 16px 36px;
  border-radius: 9px;
  background: #fff;
  box-sizing: border-box;
  text-align: left;
}
.sat-team-best-box__name {
  margin: 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.35;
  color: var(--sat-text);
  text-align: left;
}
.sat-team-best-box__name-main,
.sat-team-best-box__name-sub {
  font-weight: 600;
}
.sat-team-best-box__name-sep {
  font-weight: 400;
}
.sat-team-best-box__score {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  color: var(--sat-text);
  text-align: left;
}
.sat-team-best-box__score strong {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.sat-team-best-box__score span {
  font-size: 20px;
  font-weight: 300;
  color: var(--sat-muted);
}
.sat-team-best-meta {
  margin-top: auto;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.sat-team-detail-card {
  width: 100%;
  max-width: 890px;
  border: 1px solid #bfc8e8;
  border-radius: 10px;
  background: #fff;
  padding: 40px 40px 48px;
  box-sizing: border-box;
}
.sat-team-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.sat-team-detail-head__titles {
  min-width: 0;
}
.sat-team-detail-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--sat-text);
  line-height: 1.3;
}
.sat-team-detail-card__desc {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--sat-muted);
  line-height: 1.5;
}
.sat-team-detail-card__rule {
  height: 1px;
  margin: 24px 0 28px;
  background: var(--sat-line);
}
.sat-team-detail-filters {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 4px;
}
.sat-team-detail-filter {
  position: relative;
  flex-shrink: 0;
}
.sat-team-detail-filter::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--sat-muted);
  pointer-events: none;
}
.sat-team-detail-filter__control {
  appearance: none;
  width: 177px;
  height: 32px;
  padding: 0 32px 0 12px;
  border: 1px solid #dae7f5;
  border-radius: 5px;
  background: #fff;
  font-size: 12px;
  color: var(--sat-muted);
  font-family: inherit;
  cursor: pointer;
}
.sat-team-detail-filter__control:focus-visible {
  outline: 2px solid #0d86ff;
  outline-offset: 2px;
}
.sat-team-detail-body {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 32px 40px;
  align-items: start;
  --sat-member-head-h: 30px;
  --sat-member-row-h: 79px;
  --sat-member-align-line: 5;
}
.sat-team-detail-gauge-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: calc(
    var(--sat-member-head-h) +
    var(--sat-member-row-h) * var(--sat-member-align-line)
  );
}
.sat-team-detail-gauge-col.is-loading {
  opacity: 0.55;
  pointer-events: none;
}
.sat-team-detail-gauge__team {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 400;
  color: var(--sat-muted);
  line-height: 1.4;
}
.sat-team-detail-gauge__rule {
  height: 1px;
  margin: 0 0 20px;
  background: var(--sat-line);
}
.sat-team-detail-gauge__rule--bottom {
  margin: 0;
  margin-top: auto;
  flex-shrink: 0;
}
.sat-gauge--team-panel {
  width: 250px;
  height: 250px;
  margin: 0 auto 30px;
}
.sat-gauge--team-panel .sat-gauge__ring {
  background: linear-gradient(180deg, #b8dcff 0%, #7ec4ff 55%, #3ba9fe 100%);
}
.sat-gauge--team-panel .sat-gauge__ring::after {
  inset: 12px;
}
.sat-gauge-meta--team-panel {
  max-width: 100%;
  margin: 0;
}
.sat-team-members__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 88px;
  gap: 12px;
  min-height: var(--sat-member-head-h);
  padding: 0 0 12px;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 1.5;
  color: var(--sat-muted);
}
.sat-team-members__head span:nth-child(2),
.sat-team-members__head span:nth-child(3) {
  text-align: right;
}
.sat-team-members__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sat-team-member-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 88px;
  gap: 12px;
  align-items: center;
  min-height: var(--sat-member-row-h);
  padding: 14px 0;
  box-sizing: border-box;
  border-top: 1px solid var(--sat-line);
}
.sat-team-member-row--empty {
  padding: 32px 0;
  text-align: center;
  color: var(--sat-muted);
  font-size: 14px;
}
.sat-team-member-row__profile {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.sat-team-member-row__photo {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  background: linear-gradient(180deg, #dae7f5 0%, #f1f8ff 100%);
}
.sat-team-member-row__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sat-team-member-row__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sat-team-member-row__dept {
  font-size: 12px;
  font-weight: 400;
  color: var(--sat-muted);
  line-height: 1.3;
}
.sat-team-member-row__name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}
.sat-team-member-row__score,
.sat-team-member-row__count {
  font-size: 16px;
  font-weight: 500;
  color: var(--sat-text);
  text-align: right;
}

@media (max-width: 1320px) {
  .sat-page {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .sat-page-grid {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  }
  .sat-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sat-team-cell {
    width: 100%;
    max-width: 173px;
  }
  .sat-emp-page__content {
    grid-template-columns: minmax(0, 1fr);
  }
  .sat-emp-prev-card {
    max-width: 520px;
  }
}

@media (max-width: 1024px) {
  .sat-page-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "teams"
      "bottom";
  }
  .sat-col-bottom {
    grid-template-columns: 1fr;
  }
  .sat-sheet--tall {
    min-height: 0;
    height: auto;
  }
  .sat-sheet--teams,
  .sat-sheet--bottom {
    min-height: 0;
    height: auto;
  }
  .sat-emp-page__head {
    flex-direction: column;
  }
  .sat-emp-page__filters {
    width: 100%;
    flex-wrap: wrap;
  }
  .sat-emp-page__filters .sat-overall-filter,
  .sat-emp-page__filters .sat-overall-filter--basis {
    flex: 1;
    min-width: 140px;
  }
  .sat-emp-list-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Customer survey — 알림톡 랜딩 (한 화면 100dvh, Figma 7722:503) */
body.survey-landing-page {
  background: #f1f8fe;
  overflow: hidden;
  overscroll-behavior: none;
}
body.survey-landing-page .site-main {
  max-width: none;
  margin: 0;
  padding: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  background: #f1f8fe;
}
.survey-landing-shell {
  --landing-w: min(100vw, 590px);
  --landing-pad-x: max(16px, calc(var(--landing-w) * 30 / 590));
  --landing-copy-pad: clamp(16px, calc(var(--landing-w) * 73 / 590), 73px);
  --landing-hero: min(calc(var(--landing-w) * 238 / 590), 238px);
  --landing-btn-h: clamp(44px, calc(var(--landing-w) * 86 / 590), 86px);
  --landing-btn-radius: clamp(22px, calc(var(--landing-w) * 46 / 590), 46px);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 590px;
  height: 100%;
  max-height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background: #f1f8fe;
}
.survey-landing-cta--disabled {
  cursor: default;
  pointer-events: none;
  background-color: #dae7f5 !important;
  color: #7687b3 !important;
}
/* 화면 상단 ~ 버튼 위: 원형 이미지 + 인사·안내 문구 세로·가로 중앙 */
.survey-landing-top {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: clamp(8px, calc(var(--landing-w) * 24 / 590), 24px) var(--landing-pad-x);
  background: #f1f8fe;
  box-sizing: border-box;
}
.survey-landing-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--landing-w);
  margin: 0 auto;
}
.survey-landing-hero {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.survey-landing-visual {
  width: var(--landing-hero);
  height: var(--landing-hero);
  max-width: min(90vw, 238px);
  max-height: var(--landing-hero);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 1;
  background: #f1f8fe;
}
.survey-landing-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.survey-landing-copy {
  width: 100%;
  margin-top: clamp(20px, calc(var(--landing-w) * 56 / 590), 56px);
  padding: 0 var(--landing-copy-pad);
  text-align: center;
  flex-shrink: 0;
  box-sizing: border-box;
}
.survey-landing-greeting {
  margin: 0;
  font-size: clamp(18px, calc(var(--landing-w) * 32 / 590), 32px);
  font-weight: 600;
  line-height: 1.25;
  color: #2e3a59;
}
.survey-landing-greeting span {
  display: block;
}
.survey-landing-lead {
  margin: clamp(4px, calc(var(--landing-w) * 12 / 590), 12px) calc(-1 * (var(--landing-copy-pad) - var(--landing-pad-x))) 0;
  padding: 0 var(--landing-pad-x);
  font-size: clamp(11px, calc(var(--landing-w) * 20 / 590), 20px);
  font-weight: 400;
  line-height: 1.35;
  color: #7687b3;
  word-break: keep-all;
  overflow-wrap: normal;
  box-sizing: border-box;
}
.survey-landing-lead-line {
  display: block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  line-height: 1.35;
}
.survey-landing-cta-zone {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 calc(var(--landing-pad-x) + 10px) clamp(20px, calc(var(--landing-w) * 64 / 590), 64px);
  background: #f1f8fe;
  box-sizing: border-box;
}
.survey-landing-cta-wrap {
  width: 100%;
  max-width: min(calc(var(--landing-w) * 530 / 590), 100%);
  margin: 0 auto;
  flex-shrink: 0;
}
body.survey-landing-page .survey-landing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--landing-btn-h);
  min-height: var(--landing-btn-h);
  max-height: 86px;
  padding: 0 20px;
  border: none;
  border-radius: var(--landing-btn-radius);
  background: #0d86ff !important;
  background-color: #0d86ff !important;
  color: #fff !important;
  font-family: inherit;
  font-size: clamp(15px, calc(var(--landing-w) * 28 / 590), 28px);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color 0.2s;
}
body.survey-landing-page .survey-landing-cta:hover,
body.survey-landing-page .survey-landing-cta:focus-visible {
  background: #0b75e0 !important;
  background-color: #0b75e0 !important;
  color: #fff !important;
}
body.survey-landing-page .survey-landing-foot {
  flex: 0 1 auto;
  width: 100%;
  min-height: 0;
  max-height: min(calc(var(--landing-w) * 320 / 590), 38dvh);
  padding: clamp(20px, calc(var(--landing-w) * 36 / 590), 36px) calc(var(--landing-pad-x) + 10px)
    clamp(18px, calc(var(--landing-w) * 40 / 590), 40px);
  overflow: hidden;
  background: #e5f3ff;
  background-color: #e5f3ff;
  box-sizing: border-box;
}
.survey-landing-notes {
  list-style: none;
  width: 100%;
  max-width: min(calc(var(--landing-w) * 530 / 590), 100%);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.survey-landing-notes li {
  position: relative;
  margin: 0 0 clamp(6px, calc(var(--landing-w) * 14 / 590), 14px);
  padding-left: max(10px, calc(var(--landing-w) * 12 / 590));
  font-size: clamp(11px, calc(var(--landing-w) * 20 / 590), 20px);
  font-weight: 400;
  line-height: 1.35;
  color: #7687b3;
  word-break: keep-all;
}
.survey-landing-notes li:last-child {
  margin-bottom: 0;
}
.survey-landing-notes li::before {
  content: '';
  position: absolute;
  left: max(-10px, calc(var(--landing-w) * -12 / 590));
  top: 0.45em;
  width: clamp(5px, calc(var(--landing-w) * 8 / 590), 8px);
  height: clamp(5px, calc(var(--landing-w) * 8 / 590), 8px);
  background: #7687b3;
}
.survey-landing-notes-item--stacked {
  word-break: normal;
  overflow-wrap: normal;
}
.survey-landing-notes-item--stacked .survey-landing-notes-line {
  display: block;
  max-width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
}
@media (max-height: 640px) {
  .survey-landing-shell {
    --landing-hero: min(calc(var(--landing-w) * 200 / 590), 200px);
    --landing-btn-h: clamp(40px, calc(var(--landing-w) * 72 / 590), 72px);
  }
  .survey-landing-greeting {
    font-size: clamp(16px, calc(var(--landing-w) * 28 / 590), 28px);
  }
  .survey-landing-lead {
    font-size: clamp(10px, calc(var(--landing-w) * 18 / 590), 18px);
  }
  .survey-landing-notes li {
    font-size: clamp(10px, calc(var(--landing-w) * 18 / 590), 18px);
  }
  body.survey-landing-page .survey-landing-cta {
    font-size: clamp(14px, calc(var(--landing-w) * 24 / 590), 24px);
  }
}

/* Customer survey — 설문 진행 Figma 7722:415 (sf) · 100dvh */
body.survey-page {
  background: #f1f8fe;
  overflow: hidden;
  overscroll-behavior: none;
}
body.survey-page .site-main {
  max-width: none;
  margin: 0;
  padding: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}
.sf {
  --sf-w: min(100vw, 590px);
  --sf-pad: max(16px, calc(var(--sf-w) * 30 / 590));
  --sf-inset: max(16px, calc(var(--sf-w) * 42 / 590));
  --sf-content: min(100%, calc(var(--sf-w) * 530 / 590));
  --sf-hero-h: min(calc(var(--sf-w) * 291 / 590), 30dvh);
  --sf-opt-h: calc(var(--sf-w) * 80 / 590);
  --sf-opt-gap: max(4px, calc(var(--sf-w) * 24 / 590));
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 590px;
  height: 100%;
  max-height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background: #f1f8fe;
}
.sf-alert {
  margin: 10px var(--sf-pad);
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff5f5;
  color: #c53030;
  font-size: 14px;
}
.sf__form {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}
.sf__rating {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}
.sf__rating[hidden],
.sf__voice[hidden] {
  display: none !important;
}
.sf-hero {
  position: relative;
  flex: 0 0 auto;
  height: var(--sf-hero-h);
  max-height: 32dvh;
  overflow: hidden;
  border-bottom: 1px solid #ededed;
}
.sf-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #e2f0ff 0%, #b5d8ff 100%);
}
.sf-hero__text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 var(--sf-inset);
  box-sizing: border-box;
}
.sf-hero__dept {
  margin: 0;
  font-size: clamp(18px, calc(var(--sf-w) * 36 / 590), 36px);
  font-weight: 300;
  line-height: 1.1;
  color: #7687b3;
}
.sf-hero__name {
  margin: clamp(4px, calc(var(--sf-w) * 13 / 590), 13px) 0 0;
  font-size: clamp(13px, calc(var(--sf-w) * 20 / 590), 20px);
  font-weight: 600;
  line-height: 1.2;
  color: #2e3a59;
}
.sf-hero__name-sep {
  display: inline-block;
  margin: 0 clamp(5px, calc(var(--sf-w) * 10 / 590), 10px);
  font-weight: 200;
  font-size: 0.92em;
  color: inherit;
  letter-spacing: 0;
  vertical-align: baseline;
}
.sf-hero__photo {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: auto;
  max-width: calc(50% - var(--sf-inset));
  height: 100%;
  max-height: 100%;
  border-radius: 0;
  object-fit: contain;
  object-position: left bottom;
  background: transparent;
  pointer-events: none;
}
.sf-hero__photo--placeholder {
  object-fit: contain;
  object-position: left bottom;
  background: #e8f0fa;
}
.sf-hero__photo--dept-icon {
  object-fit: contain;
  object-position: center center;
  width: auto;
  max-width: calc(50% - var(--sf-inset));
  height: 65%;
  max-height: 65%;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 0.6;
}
.sf-body {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  padding: clamp(10px, calc(var(--sf-w) * 24 / 590), 24px) var(--sf-pad)
    clamp(4px, calc(var(--sf-w) * 12 / 590), 12px);
  overflow: hidden;
  box-sizing: border-box;
}
.sf-question {
  flex: 0 0 auto;
  width: var(--sf-content);
  margin: 0 0 clamp(8px, calc(var(--sf-w) * 20 / 590), 20px);
  padding: 0 calc(var(--sf-inset) - var(--sf-pad));
  font-size: clamp(16px, calc(var(--sf-w) * 32 / 590), 32px);
  font-weight: 600;
  line-height: 1.2;
  color: #2e3a59;
  word-break: keep-all;
  box-sizing: border-box;
}
.sf-question__line {
  display: block;
}
.sf-options {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: var(--sf-opt-gap);
  width: var(--sf-content);
  min-height: 0;
}
.sf-option {
  position: relative;
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: min(var(--sf-opt-h), 36px);
  max-height: var(--sf-opt-h);
  padding: 0 clamp(12px, calc(var(--sf-w) * 30 / 590), 30px);
  border: 1px solid #bfc8e8;
  border-radius: clamp(10px, calc(var(--sf-w) * 15 / 590), 15px);
  background: #fff;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sf-option__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sf-option:hover {
  border-color: #9eb0d8;
}
.sf-option:has(.sf-option__input:checked) {
  border-color: #0d86ff;
  box-shadow: 0 0 0 1px #0d86ff;
}
.sf-option__label {
  font-size: clamp(13px, calc(var(--sf-w) * 28 / 590), 28px);
  font-weight: 400;
  line-height: 1.15;
  color: #7687b3;
}
.sf-option:has(.sf-option__input:checked) .sf-option__label {
  color: #2e3a59;
  font-weight: 500;
}
.sf-option__radio {
  flex-shrink: 0;
  display: block;
  width: clamp(22px, calc(var(--sf-w) * 34 / 590), 34px);
  height: clamp(22px, calc(var(--sf-w) * 34 / 590), 34px);
  border: 1px solid #bfc8e8;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.sf-option:hover .sf-option__radio {
  border-color: #9eb0d8;
}
.sf-option:has(.sf-option__input:checked) .sf-option__radio {
  border: 2px solid #0d86ff;
  background: #0d86ff;
  box-shadow: inset 0 0 0 clamp(5px, calc(var(--sf-w) * 8 / 590), 8px) #fff;
}
.sf-foot {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, calc(var(--sf-w) * 20 / 590), 20px) var(--sf-pad);
  border-top: 1px solid #ededed;
  background: #f1f8fe;
}
.sf-prev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: clamp(14px, calc(var(--sf-w) * 20 / 590), 20px);
  font-weight: 400;
  color: #7687b3;
  cursor: pointer;
  text-decoration: none;
}
a.sf-prev:hover {
  color: #5a6d99;
}
.sf-prev:disabled,
.sf-prev--disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.sf--submitting {
  pointer-events: none;
  opacity: 0.92;
}
.sf-prev__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  line-height: 0;
  color: #7687b3;
}
.sf-prev__arrow svg {
  display: block;
  width: clamp(14px, calc(var(--sf-w) * 19 / 590), 19px);
  height: auto;
}
.sf-prev__label {
  line-height: 1.2;
}
.sf-progress {
  margin: 0;
  font-size: clamp(14px, calc(var(--sf-w) * 20 / 590), 20px);
  font-weight: 300;
  color: #7687b3;
}
/* 고객의 소리 — Figma 7722:261 */
.sf__form--voice .sf__voice {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.sf-hero__photo--voice-bubble {
  left: 57%;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  object-position: left center;
  max-width: calc(43% - var(--sf-inset));
  opacity: 0.6;
}
.sf-voice-main {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(16px, calc(var(--sf-w) * 40 / 590), 40px) var(--sf-pad) 0;
  overflow: hidden;
  box-sizing: border-box;
}
.sf-voice-question {
  margin: 0 0 clamp(12px, calc(var(--sf-w) * 24 / 590), 24px);
  padding: 0 clamp(4px, calc(var(--sf-w) * 12 / 590), 12px);
  font-size: clamp(18px, calc(var(--sf-w) * 32 / 590), 32px);
  font-weight: 600;
  line-height: 1.25;
  color: #2e3a59;
}
.sf-voice-question__line {
  display: block;
}
.sf-voice-input {
  flex: 1 1 0;
  width: 100%;
  min-height: clamp(120px, calc(var(--sf-w) * 288 / 590), 288px);
  max-height: none;
  margin: 0;
  padding: clamp(16px, calc(var(--sf-w) * 23 / 590), 23px) clamp(16px, calc(var(--sf-w) * 30 / 590), 30px);
  border: 1px solid #bfc8e8;
  border-radius: clamp(12px, calc(var(--sf-w) * 15 / 590), 15px);
  background: #fff;
  font-family: inherit;
  font-size: clamp(14px, calc(var(--sf-w) * 28 / 590), 28px);
  font-weight: 400;
  line-height: 1.35;
  color: #2e3a59;
  resize: none;
  box-sizing: border-box;
}
.sf-voice-input::placeholder {
  color: #bfc8e8;
}
.sf-voice-input:focus {
  outline: none;
  border-color: #0d86ff;
}
.sf-voice-input:disabled {
  background: #f8fafc;
  color: #bfc8e8;
  cursor: not-allowed;
}
.sf-voice-na {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: clamp(56px, calc(var(--sf-w) * 80 / 590), 80px);
  margin-top: clamp(12px, calc(var(--sf-w) * 24 / 590), 24px);
  padding: 0 clamp(16px, calc(var(--sf-w) * 30 / 590), 30px);
  border: 1px solid #bfc8e8;
  border-radius: clamp(12px, calc(var(--sf-w) * 15 / 590), 15px);
  background: #fff;
  box-sizing: border-box;
  cursor: pointer;
}
.sf-voice-na__label {
  font-size: clamp(14px, calc(var(--sf-w) * 28 / 590), 28px);
  font-weight: 400;
  line-height: 1.2;
  color: #7687b3;
}
.sf-voice-na__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sf-voice-na__radio {
  flex-shrink: 0;
  display: block;
  width: clamp(22px, calc(var(--sf-w) * 34 / 590), 34px);
  height: clamp(22px, calc(var(--sf-w) * 34 / 590), 34px);
  border: 1px solid #bfc8e8;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.sf-voice-na:hover .sf-voice-na__radio {
  border-color: #9eb0d8;
}
.sf-voice-na:has(.sf-voice-na__input:checked) .sf-voice-na__radio {
  border: 2px solid #0d86ff;
  background: #0d86ff;
  box-shadow: inset 0 0 0 clamp(5px, calc(var(--sf-w) * 8 / 590), 8px) #fff;
}
.sf-voice-na:has(.sf-voice-na__input:checked) .sf-voice-na__label {
  color: #2e3a59;
}
.sf-voice-actions {
  flex: 0 0 auto;
  padding: clamp(12px, calc(var(--sf-w) * 24 / 590), 24px) var(--sf-pad);
  box-sizing: border-box;
}
.sf-voice-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(52px, calc(var(--sf-w) * 86 / 590), 86px);
  border: none;
  border-radius: clamp(24px, calc(var(--sf-w) * 46 / 590), 46px);
  background: #0d86ff;
  color: #fff;
  font-family: inherit;
  font-size: clamp(16px, calc(var(--sf-w) * 28 / 590), 28px);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}
.sf-voice-submit:hover {
  background: #0b75e0;
}
.sf__form--voice .sf-foot {
  flex: 0 0 auto;
}

@media (max-height: 700px) {
  .sf {
    --sf-hero-h: min(calc(var(--sf-w) * 240 / 590), 26dvh);
    --sf-opt-gap: max(3px, calc(var(--sf-w) * 14 / 590));
  }
  .sf-question {
    font-size: clamp(15px, calc(var(--sf-w) * 28 / 590), 28px);
  }
  .sf-option__label {
    font-size: clamp(12px, calc(var(--sf-w) * 24 / 590), 24px);
  }
}

@media (max-height: 580px) {
  .sf {
    --sf-hero-h: min(calc(var(--sf-w) * 200 / 590), 22dvh);
    --sf-opt-gap: 3px;
  }
  .sf-hero__dept {
    font-size: clamp(16px, calc(var(--sf-w) * 30 / 590), 30px);
  }
  .sf-option {
    min-height: 32px;
    max-height: none;
    border-radius: 10px;
  }
}

/* 설문 완료 — Figma 7722:527 */
body.survey-complete-page {
  background: #f1f8fe;
  overflow: hidden;
  overscroll-behavior: none;
}
body.survey-complete-page .site-main {
  max-width: none;
  margin: 0;
  padding: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}
.sf-complete {
  --sf-complete-w: min(100vw, 590px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 590px;
  height: 100%;
  max-height: 100dvh;
  margin: 0 auto;
  padding: max(24px, calc(var(--sf-complete-w) * 30 / 590));
  background: #f1f8fe;
  box-sizing: border-box;
}
.sf-complete__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: calc(var(--sf-complete-w) * 530 / 590);
  text-align: center;
}
.sf-complete__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(var(--sf-complete-w) * 238 / 590), 238px);
  height: min(calc(var(--sf-complete-w) * 209 / 590), 209px);
  margin: 0 0 clamp(20px, calc(var(--sf-complete-w) * 32 / 590), 32px);
  opacity: 0.2;
}
.sf-complete__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sf-complete__title {
  margin: 0 0 clamp(12px, calc(var(--sf-complete-w) * 20 / 590), 20px);
  font-size: clamp(22px, calc(var(--sf-complete-w) * 32 / 590), 32px);
  font-weight: 600;
  line-height: 1.25;
  color: #2e3a59;
}
.sf-complete__message {
  margin: 0;
  font-size: clamp(14px, calc(var(--sf-complete-w) * 20 / 590), 20px);
  font-weight: 400;
  line-height: 1.45;
  color: #7687b3;
}
.sf-complete__message span {
  display: block;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.modal h3 { margin: 0 0 12px; font-size: 18px; }
.modal p { color: var(--muted); margin-bottom: 20px; line-height: 1.6; font-size: 14px; }
.modal-actions { display: flex; gap: 8px; justify-content: center; }
.survey-link-note {
  font-size: 12px;
  word-break: break-all;
  color: var(--muted);
  margin-bottom: 16px;
}
.survey-link-note a { color: var(--primary); }

.sub { color: var(--muted); font-size: 13px; }

@media (max-width: 1200px) {
  .employee-grid,
  .survey-staff-grid { grid-template-columns: repeat(3, 1fr); }
  .home-hero-band {
    height: auto;
    min-height: 120px;
    padding: 36px 16px 28px;
    align-items: center;
  }
  .home-hero-band h1 { font-size: 22px; }
  .home-body { padding: 40px 16px 48px; }
  body.dashboard-page .menu-grid { grid-template-columns: 1fr; max-width: 100%; }
  body.dashboard-page .menu-card { height: auto; min-height: 280px; padding: 48px 24px 32px; }
  body.dashboard-page .menu-card h2 { font-size: 24px; }
  body.dashboard-page .menu-card p { font-size: 14px; }
  .sat-page-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "teams"
      "rank"
      "voice";
  }
  .sat-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
  .split-layout,
  body.employees-page .emp-split { grid-template-columns: 1fr; }
  body.survey-send-page .survey-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  body.survey-send-page #stepStaff .survey-staff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 16px;
    max-width: 100%;
  }
  body.employees-page .employee-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 16px; gap: 16px; flex-wrap: wrap; height: auto; min-height: var(--header-h); padding-top: 10px; padding-bottom: 10px; }
  .main-nav { order: 3; width: 100%; overflow-x: auto; gap: 16px; }
  .site-main { padding: 16px; }
  body.auth-page .site-main,
  body.dashboard-page .site-main,
  body.employees-page .site-main,
  body.survey-send-page .site-main,
  body.satisfaction-page .site-main { padding: 0; }
  .sat-page { padding: 16px 16px 40px; }
  .sat-block { padding-left: 20px; padding-right: 20px; }
  .sat-team-stage { padding-left: 20px; padding-right: 20px; }
  .sat-voice-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .sat-voice-row__date { text-align: left; }
  .sat-overall-page,
  .sat-team-page-top {
    grid-template-columns: 1fr;
  }
  .sat-team-detail-body {
    grid-template-columns: 1fr;
  }
  .sat-team-detail-head {
    flex-direction: column;
  }
  .sat-team-detail-filters {
    width: 100%;
    flex-wrap: wrap;
  }
  .sat-team-detail-filter {
    flex: 1;
    min-width: 140px;
  }
  .sat-team-detail-filter__control {
    width: 100%;
  }
  .sat-overall-head {
    flex-direction: column;
  }
  .sat-overall-filters {
    width: 100%;
    flex-wrap: wrap;
  }
  .sat-overall-filter--basis {
    flex: 1;
    min-width: 140px;
  }
  .sat-overall-range {
    flex: 1 1 100%;
    min-width: 0;
  }
  .sat-overall-week-trigger {
    font-size: 11px;
  }
  .sat-week-cal {
    width: min(252px, calc(100vw - 24px));
  }
  .sat-overall-stats {
    grid-template-columns: 1fr;
  }
  body.auth-page,
  body.dashboard-page,
  body.employees-page,
  body.survey-send-page,
  body.satisfaction-page { --header-h: auto; }
  body.auth-page .site-header,
  body.dashboard-page .site-header,
  body.employees-page .site-header,
  body.satisfaction-page .site-header,
  body.survey-send-page .site-header { height: auto; min-height: 72px; }
  body.auth-page .header-inner,
  body.dashboard-page .header-inner,
  body.employees-page .header-inner,
  body.survey-send-page .header-inner,
  body.satisfaction-page .header-inner { padding: 12px 16px; flex-wrap: wrap; }
  body.auth-page .brand-logo--img,
  body.dashboard-page .brand-logo--img,
  body.employees-page .brand-logo--img,
  body.survey-send-page .brand-logo--img,
  body.satisfaction-page .brand-logo--img { margin-right: 0; }
  body.auth-page .brand-logo--img img,
  body.dashboard-page .brand-logo--img img,
  body.employees-page .brand-logo--img img,
  body.survey-send-page .brand-logo--img img,
  body.satisfaction-page .brand-logo--img img { width: 140px; }
  body.auth-page .main-nav--guest,
  body.dashboard-page .main-nav,
  body.employees-page .main-nav,
  body.survey-send-page .main-nav,
  body.satisfaction-page .main-nav { gap: 16px; order: 3; width: 100%; }
  body.auth-page .main-nav--guest span,
  body.dashboard-page .main-nav a,
  body.employees-page .main-nav a,
  body.survey-send-page .main-nav a,
  body.satisfaction-page .main-nav a { font-size: 15px; }
  body.employees-page .emp-page-wrap,
  body.satisfaction-page .emp-page-wrap { padding: 24px 16px 40px; }
  body.survey-send-page .survey-send-wrap { padding: 24px 16px 40px; }
  body.employees-page .emp-page-head,
  body.satisfaction-page .emp-page-head { flex-direction: column; gap: 8px; }
  body.satisfaction-page .sat-month-nav { margin-left: 0; }
  body.employees-page .emp-page-rule,
  body.satisfaction-page .emp-page-rule { margin: 12px 0 20px; }
  body.employees-page .dept-tabs { margin-bottom: 24px; }
  body.employees-page .dept-tabs a,
  body.employees-page .dept-tabs .sep { font-size: 14px; }
  body.employees-page .employee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
  body.employees-page .emp-panel-list .panel-body,
  body.employees-page .emp-panel-form .panel-body { padding: 24px 20px; }
  body.employees-page .photo-upload { width: 160px; height: 160px; }
  .auth-hero-band {
    height: auto;
    min-height: 120px;
    padding: 36px 16px 28px;
    align-items: center;
  }
  .auth-hero-band h1 { font-size: 22px; }
  .auth-body { padding: 40px 16px 48px; }
  .auth-card { padding: 28px 24px 32px; max-width: 100%; }
  .auth-tabs a { font-size: 17px; }
  .auth-form .form-group label { font-size: 15px; }
  .btn-login { font-size: 18px; height: 46px; }
  .employee-grid,
  .survey-staff-grid,
  .menu-grid,
  .team-strip-grid { grid-template-columns: repeat(2, 1fr); }
  body.survey-send-page #stepStaff .survey-staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }
  body.survey-send-page .survey-staff-main .panel-body {
    padding: 24px 20px;
  }
  body.survey-send-page .survey-staff-footnote {
    padding: 12px 14px;
  }
  body.survey-send-page .survey-sidebar .panel-body {
    padding: 24px 20px 36px;
  }
  .page-head h1::after { display: none; }
  .page-head h1,
  .page-head p { display: block; }
  body.survey-send-page .survey-customer-title { font-size: 28px; }
  body.survey-send-page .survey-customer-card {
    min-height: 0;
    padding: 28px 24px 32px;
    max-width: 100%;
  }
  .survey-customer-card-head { flex-direction: column; }
  .survey-customer-card-head p { text-align: left; }
}
