/* ── 공통 CSS: 2026 사회적기업 맞춤형 마케팅 지원사업 ── */
:root {
  --blue: #1e50ff;
  --blue-ink: #0063ff;
  --blue-soft: #e9efff;
  --ink: #0a0a0a;
  --ink-2: #3a3a40;
  --mut: #73737b;
  --paper: #ffffff;
  --gray: #f4f4f6;
  --line: #e4e4ea;
  --yellow: #fff100;
  --green: #2dd05b;
  --red: #ff3b30;
  --maxw: 1300px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  /* 폰 브라우저의 자동(강제) 다크모드가 흰 배경을 어둡게 반전시키는 것 방지 */
  color-scheme: light only;
}
body {
  background: #fff;
  color: var(--ink);
  font-family:
    Pretendard,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 10px 0 10px;
}
section {
  padding: 64px 0;
}
.sec-divider {
  border: none;
  border-top: 1.6px solid var(--line);
  margin: 0;
}

/* ── 내비게이션 ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(14px);
  transition: background 0.2s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.7);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
.brand {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 추가: 수직 중앙 정렬 */
  height: 100%; /* 추가: 부모 요소(.wrap)의 64px 높이를 꽉 채우게 함 */
  line-height: 1.2;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand img {
  max-height: 100px; /* 수정: 64px 네비게이션 높이 내에서 여백을 두고 쏙 들어가도록 높이 제한 */
  width: auto; /* 수정: 가로 폭은 비율에 맞춰 자동 조절 */
  object-fit: contain; /* 수정: 이미지 비율 유지 보호 */
}
.menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.menu a {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 24px;
  color: var(--ink-2);
  transition: 0.15s;
}
.menu a:hover,
.menu a.on {
  color: var(--ink);
  background: var(--gray);
}

.menu .nav-apply {
  background: var(--blue);
  color: #fff;
  border-radius: 30px;
  margin-left: 6px;
}
.menu .nav-apply:hover {
  background: var(--blue-ink);
  color: #fff;
}
.burger {
  display: none;
  background: none;
  width: 40px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 40px;
  color: var(--ink);
  border: none;
}

/* ── CTA 배너 (아웃라인 스타일) ── */
.banner {
  padding: 40px 48px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  background: url("img/ap.png") center/100% auto no-repeat;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/ap_r.png") center/100% auto no-repeat;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.banner:hover::after {
  opacity: 1;
}
.banner:hover,
.banner:hover * {
  color: var(--blue);
  transition: color 0.3s;
}
.banner-deco {
  position: absolute;
  color: var(--blue);
  opacity: 0.3;
  font-size: 18px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.banner-left {
  position: relative;
  z-index: 1;
  text-align: center;
}
.banner-sub {
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.banner-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1;
}
.banner-cta-txt {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}
.banner-cta-arrow {
  font-size: clamp(22px, 3.5vw, 40px);
  color: var(--blue);
  font-weight: 900;
}

/* ── 섹션 공통 ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: var(--blue);
  margin-bottom: 10px;
}

.h-sec {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.04em;
}
.sec-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 28px;
}
.sec-hr {
  border: none;
  border-top: 1.6px solid var(--ink);
  margin-bottom: 28px;
}

/* ── 푸터 ── */
footer {
  padding: 48px 0 32px;
  background: #fff;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.ft-logo-img {
  width: 250px;
  border-radius: 8px;
  padding: 12px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.ft-addr {
  font-size: 13px;
  color: var(--mut);
  line-height: 1.7;
}
.ft-addr span {
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.7;
}
.ft-col-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 0px;
}
.ft-col-val {
  width: 250px;
  border-radius: 8px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.ft-col-sub {
  font-size: 13px;
  color: var(--mut);
  line-height: 1.6;
}
.ft-col-sub span {
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.7;
}
.ft-kko {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 8px;
}
.ft-cs {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.ft-cs-col {
  text-align: right;
}
.ft-cs-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.ft-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── 스크롤 페이드인 ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 페이지 헤더 (공통) ── */
.page-hd {
  padding: 60px 0 50px;
  border-bottom: 1.6px solid var(--line);
}
.page-hd h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--blue);
}
.lead {
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.8;
  margin-top: 12px;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.meta-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.meta-item .ml {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.04em;
  border-top: 2px solid var(--blue);
  padding-top: 10px;
}
.meta-item .mv {
  font-size: 16px;
  font-weight: 700;
}
.meta-item .mv small {
  display: block;
  font-size: 13px;
  color: var(--mut);
  margin-top: 2px;
  font-weight: 500;
}
.kw-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.kw-dots span {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  display: block;
  opacity: 0.5;
}
.about-pr-img {
  width: 70%;
  margin: 0 auto;
}
.kw-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.kw-stack .kw {
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--blue);
  line-height: 1.1;
}
.kw-stack .kw.boxed {
  border: 2px solid var(--blue);
  padding: 0.06em 0.2em;
}
.kw-stack .kw.sz-xl {
  font-size: clamp(32px, 5vw, 62px);
}
.kw-stack .kw.sz-lg {
  font-size: clamp(26px, 4vw, 50px);
}
.kw-stack .kw.sz-md {
  font-size: clamp(20px, 3vw, 38px);
}
.kw-stack .kw.ink {
  color: var(--ink);
}
h2.section-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 10px;
  letter-spacing: -0.04em;
  color: var(--blue);
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.support-desc {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.type-card {
  border: 1px solid var(--blue);
  padding: 25px;
  border-radius: 10px;
}
.type-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.type-card p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 700;
}
.sub-tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.sub-tag {
  font-size: 12px;
  color: var(--blue);
  background: var(--blue);
  padding: 4px 12px;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.stage-flow {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  align-items: stretch;
}
.stage-box {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 20px;
  font-size: 13px;
  position: relative;
  transition: 0.3s;
  animation: blink-effect 4s infinite;
  letter-spacing: -0.04em;
}
.stage-box:nth-child(2) {
  animation-delay: 0.8s;
}
.stage-box:nth-child(3) {
  animation-delay: 1.6s;
}
.stage-box:nth-child(4) {
  animation-delay: 2.4s;
}
.stage-box:nth-child(5) {
  animation-delay: 3.2s;
}
@keyframes blink-effect {
  0%,
  100% {
    border-color: #ddd;
    background: #fff;
  }
  50% {
    border-color: var(--blue);
    background: var(--blue-soft);
  }
}
.stage-step {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.stage-num {
  font-size: 14px;
  font-weight: 900;
  color: var(--blue);
}
.stage-name {
  font-size: 20px;
  font-weight: 800;
}
.stage-list {
  padding-left: 18px;
  font-size: 16px;
  color: var(--ink);
}
.method-circle-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 32px 0 24px;
}
.method-circle {
  width: 150px;
  height: 150px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  padding: 10px;
  flex-shrink: 0;
  animation: circle-flow 3s ease-in-out infinite;
}
.method-circle:nth-child(1) {
  animation-delay: 0s;
}
.method-circle:nth-child(3) {
  animation-delay: 0.75s;
}
.method-circle:nth-child(5) {
  animation-delay: 1.5s;
}
.method-circle:nth-child(7) {
  animation-delay: 2.25s;
}
@keyframes circle-flow {
  0%,
  100% {
    background: #fff;
  }
  25%,
  75% {
    background: var(--blue-soft);
  }
}
.method-circle span {
  font-size: 11px;
  margin-top: 10px;
  font-weight: 500;
}

.method-arrow {
  font-size: 24px;
  color: #ccc;
  flex: none;
}
.sel-note {
  margin-top: 20px;
}
.sel-note .label {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.sel-note p {
  font-size: 15px;
  color: var(--ink-2);
}

/* ── 공통 반응형 ── */
@media (max-width: 860px) {
  .menu {
    position: fixed;
    inset: 120px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease;
    display: flex;
  }
  .menu.open {
    max-height: 400px;
    padding: 8px 16px 16px;
    border-bottom: 1.6px solid var(--ink);
  }
  .menu a {
    padding: 12px;
    border-radius: 8px;
    font-size: 20px;
  }
  .burger {
    display: flex;
  }
  .banner {
    padding: 32px 24px;
    background-size: auto 100%;
  }
  .banner::after {
    background-size: auto 100%;
  }
  .banner-cta-txt {
    font-size: 36px;
  }
  .banner-cta-arrow {
    font-size: 28px;
  }
  .banner-sub {
    font-size: 16px;
  }
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ft-logo-img {
    width: 200px;
  }
  .ft-col-val {
    width: 200px;
  }
  .ft-cs-col {
    text-align: left;
  }
  .ft-cs-row {
    justify-content: flex-start;
  }
  section {
    padding: 48px 0;
  }
  .intro-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .stage-flow {
    flex-direction: column;
  }
  .method-circle-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .method-arrow {
    display: none;
  }
  .page-hd h1 {
    font-size: 36px;
  }
  .eyebrow {
    font-size: 26px;
  }
  .wrap {
    padding: 0 16px;
  }
}
@media (max-width: 520px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
  .ft-logo-img {
    width: 180px;
    margin-bottom: 0;
  }
  .ft-col-label {
    font-size: 14px;
  }
  .ft-col-val {
    width: 180px;
    margin-bottom: 0;
  }

  .banner {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .banner-cta-txt {
    font-size: 26px;
  }
  .banner-cta-arrow {
    font-size: 20px;
  }
  .banner-sub {
    font-size: 14px;
  }
  .method-circle {
    width: calc(50% - 8px);
    height: auto;
    aspect-ratio: 1;
  }
  .page-hd h1 {
    font-size: 32px;
  }
  .eyebrow {
    font-size: 24px;
  }
  .wrap {
    padding: 0 20px;
  }
  h2.section-title {
    font-size: 24px;
  }
}

/* ── 지원개요 공통 ── */
.ov {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 30px;
}
.ov-cell {
  padding: 20px 20px 24px 0;
  border-top: 3px solid var(--blue-ink);
}
.ov-cell:last-child {
  border-right: none;
}
.ov-k {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-ink);
  margin-bottom: 10px;
}
.ov-v {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.7;
}
.ov-v.sm {
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 860px) {
  .ov {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .ov-cell:nth-child(2) {
    border-right: none;
  }
  .ov-cell {
    margin-right: 0;
  }
  .ov-cell:nth-child(1),
  .ov-cell:nth-child(2) {
    border-bottom: 1.6px solid var(--line);
  }
}
@media (max-width: 520px) {
  .ov {
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }
}

/* ── notice.php ── */
.search-wrap {
  margin: 40px 0 32px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.6px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: 0.2s;
}
.search-box:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
}
.search-box input::placeholder {
  color: var(--mut);
}
.search-box button {
  border: none;
  background: none;
  padding: 0 20px;
  cursor: pointer;
  color: var(--mut);
  font-size: 20px;
  height: 100%;
  display: flex;
  align-items: center;
}
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tab {
  border: 1.6px solid var(--line);
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--mut);
  transition: 0.15s;
}
.tab:hover,
.tab.on {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}
.notice-list {
  margin-top: 10px;
}
.notice-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 20px;
  border-bottom: 1px solid var(--line);
  transition: 0.15s;
  cursor: pointer;
}
.notice-item:hover {
  background: var(--gray);
  margin: 0 -12px;
  padding-left: 22px;
  padding-right: 12px;
  border-radius: 8px;
  border-bottom-color: transparent;
}
.n-tag {
  flex: none;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  min-width: 48px;
  text-align: center;
}
.n-tag.important {
  background: #fff0f0;
  color: var(--red);
}
.n-tag.new {
  background: #fff8e0;
  color: #a06000;
}
.n-tag.notice {
  background: var(--blue-soft);
  color: var(--blue);
}
.n-body {
  flex: 1;
  min-width: 0;
}
.n-org {
  font-size: 13px;
  color: var(--mut);
  font-weight: 600;
  margin-bottom: 2px;
}
.n-tit {
  font-weight: 700;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.n-date {
  flex: none;
  color: var(--mut);
  font-size: 14px;
  font-weight: 600;
}
.empty {
  text-align: center;
  padding: 80px 0;
  color: var(--mut);
}
.empty p {
  font-size: 16px;
  margin-top: 8px;
}
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-bg.open {
  display: flex;
}
.modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 720px;
  padding: 44px;
  position: relative;
  margin: auto;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gray);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mut);
}
.modal-close:hover {
  background: var(--line);
}
.modal-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.modal-tag.important {
  background: #fff0f0;
  color: var(--red);
}
.modal-tag.new {
  background: #fff8e0;
  color: #a06000;
}
.modal-tag.notice {
  background: var(--blue-soft);
  color: var(--blue);
}
.modal-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.modal-meta {
  font-size: 14px;
  color: var(--mut);
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.modal-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-2);
}
.modal-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 12px 0;
}
.modal-body p {
  margin-bottom: 12px;
}
.modal-body h1,
.modal-body h2,
.modal-body h3 {
  margin: 20px 0 10px;
  letter-spacing: -0.02em;
}
.modal-body ul,
.modal-body ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
.modal-body blockquote {
  border-left: 3px solid var(--blue);
  padding-left: 16px;
  color: var(--mut);
  margin: 14px 0;
}
.attach-list {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.attach-list h5 {
  font-size: 13px;
  font-weight: 800;
  color: var(--mut);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.attach-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.6px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: 0.15s;
  font-size: 14px;
  font-weight: 600;
}
.attach-item:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}
.attach-item .ic {
  font-size: 18px;
  flex: none;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.pg-btn {
  width: 40px;
  height: 40px;
  border: 1.6px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mut);
  transition: 0.15s;
}
.pg-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.pg-btn.on {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ── apply-info.php ── */
.sec-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.info-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-cell {
  padding: 20px 20px 28px;
  border-top: 1.6px solid var(--ink);
}
.info-cell .ik {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.info-cell .iv {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.5;
  color: var(--ink);
}
.info-cell .iv.sm {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}
.info-cell .iv.blue {
  color: var(--blue);
}
.proc-cell .iv {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.proc-cell .isub {
  font-size: 13px;
  color: var(--blue);
  font-weight: 700;
  line-height: 1.6;
}
.stage-flow--static .stage-box {
  animation: none;
}
.banner-solid {
  background: var(--blue);
  border-radius: 16px;
  padding: 44px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.banner-solid-deco {
  position: absolute;
  color: rgba(255, 255, 255, 0.35);
  font-size: 18px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.banner-solid-sub {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.banner-solid-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.banner-solid-txt {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}
.banner-solid-arrow {
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 860px) {
  .n-date {
    display: none;
  }
  .info-table {
    grid-template-columns: 1fr 1fr;
  }
  .info-cell:nth-child(1),
  .info-cell:nth-child(2) {
    border-top: 1.6px solid var(--ink);
  }
  .info-cell:nth-child(3),
  .info-cell:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .banner-solid {
    padding: 36px 24px;
  }
}
@media (max-width: 520px) {
  .info-table {
    grid-template-columns: 1fr;
  }
  .info-cell {
    border-top: 1px solid var(--line);
  }
  .info-cell:first-child {
    border-top: 1.6px solid var(--ink);
  }
}

/* ── instructors.php (강사·컨설턴트) ── */
.staff-cat {
  margin-bottom: 56px;
}
.staff-cat:last-child {
  margin-bottom: 0;
}
.staff-cat-desc {
  font-size: 16px;
  font-weight: 600;
  color: var(--mut);
  margin: -8px 0 22px;
  letter-spacing: -0.02em;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 강사 카드 - 왼쪽 원형 사진 + 오른쪽 정보 (전체 통일) */
.staff-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  padding: 26px 28px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.staff-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(30, 80, 255, 0.1);
  transform: translateY(-3px);
}
.staff-photo {
  position: relative;
  width: 156px;
  height: 156px;
  flex: none;
  border-radius: 50%;
  background: var(--blue-soft);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--blue-ink);
}
.staff-photo::after {
  content: attr(data-initial);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
  font-weight: 900;
  color: var(--blue);
  opacity: 0.3;
  letter-spacing: -0.04em;
}
.staff-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.staff-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.staff-role {
  font-size: 13px;
  font-weight: 800;
  color: var(--mut);
  letter-spacing: -0.02em;
}
.staff-company {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.staff-role::before {
  content: "·";
  margin-right: 8px;
  color: var(--mut);
  opacity: 0.6;
}
.staff-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.staff-bio {
  list-style: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.staff-bio li {
  position: relative;
  padding-left: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.staff-bio li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

@media (max-width: 860px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .staff-card {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 16px;
  }
  .staff-photo {
    width: 120px;
    height: 120px;
    box-shadow: 6px 6px 0 var(--blue-ink);
  }
  .staff-photo::after {
    font-size: 44px;
  }
  .staff-info {
    width: 100%;
    align-items: center;
  }
  .staff-meta {
    justify-content: center;
  }
  .staff-name {
    text-align: center;
  }
}
