/**
 * File: wp-content/themes/visioncraft/assets/css/main.css
 * Purpose: VisionCraft 테마 핵심 스타일. Claude Design 'website' UI 킷의 컴포넌트(Button/Card/Badge/Tag/
 *          Avatar/StatCard/Tabs/SectionHeading)와 페이지 섹션(다크 히어로/pillars/targets/통계밴드/CTA/
 *          프로그램/강사/레퍼런스/문의)을 정확 사양으로 재현. 모든 페이지·커스텀 블록이 이 클래스를 재사용합니다.
 *          색상·간격·라운드는 tokens.css 의 CSS 변수를 참조합니다.
 */

/* =========================================================
   1. Reset & Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg-page); color: var(--text-body);
  font-family: var(--font-sans); font-size: var(--fs-body); line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--text-link); text-decoration: none; transition: color var(--dur) var(--ease-out); }
a:hover { color: var(--brand-primary-hover); }
h1,h2,h3,h4,h5,h6 { color: var(--text-strong); font-weight: var(--fw-bold); line-height: var(--lh-tight); letter-spacing: var(--ls-tight); margin: 0 0 var(--space-4); }
p { margin: 0 0 var(--space-4); }
ul, ol { margin: 0 0 var(--space-4); padding-left: var(--space-6); }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-xs); }

/* =========================================================
   2. Layout helpers
   ========================================================= */
.vc-container { width: 100%; max-width: var(--container-lg); margin-inline: auto; padding-inline: var(--space-8); }
.vc-container--sm { max-width: var(--container-sm); }
.vc-container--md { max-width: var(--container-md); }
.vc-container--xl { max-width: var(--container-xl); }
.vc-section { padding-block: var(--section-y); }
.vc-section--sm { padding-block: var(--section-y-sm); }
.vc-section--subtle { background: var(--surface-subtle); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.vc-section--deep { background: var(--brand-deep); color: var(--text-on-dark); }
.vc-grid { display: grid; gap: var(--space-5); }
.vc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.vc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--brand-primary); color: #fff; padding: var(--space-3) var(--space-5); border-radius: 0 0 var(--radius-md) 0; }
.skip-link:focus { left: 0; color: #fff; }

/* =========================================================
   3. Buttons  (DS Button: primary/accent/secondary/ghost/dark · sm/md/lg)
   ========================================================= */
.vc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 11px 20px;
  font-family: var(--font-sans); font-size: 15px; font-weight: var(--fw-semibold); line-height: 1;
  letter-spacing: var(--ls-snug); border-radius: var(--radius-md); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background var(--dur) var(--ease-out), transform var(--dur-fast), box-shadow var(--dur), color var(--dur), border-color var(--dur);
}
.vc-btn:active { transform: translateY(1px); }
.vc-btn svg { flex-shrink: 0; }
.vc-btn--primary { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.vc-btn--primary:hover { background: var(--brand-primary-hover); color: #fff; }
.vc-btn--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.vc-btn--accent:hover { background: var(--accent-hover); color: #fff; }
.vc-btn--secondary { background: var(--surface); color: var(--brand-primary); border: 1.5px solid var(--border-strong); }
.vc-btn--secondary:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.vc-btn--ghost { background: transparent; color: var(--brand-primary); border-color: transparent; }
.vc-btn--ghost:hover { background: var(--brand-soft); }
.vc-btn--dark { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }
.vc-btn--dark:hover { background: var(--blue-800); color: #fff; }
.vc-btn--on-dark { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.28); }
.vc-btn--on-dark:hover { background: rgba(255,255,255,0.14); color: #fff; }
.vc-btn--sm { height: 36px; padding: 8px 14px; font-size: 14px; gap: 6px; border-radius: var(--radius-sm); }
.vc-btn--lg { height: 52px; padding: 14px 28px; font-size: 16px; gap: 10px; }
.vc-btn--block { display: flex; width: 100%; }

/* =========================================================
   4. Card  (default / elevated / interactive)
   ========================================================= */
.vc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-8); box-shadow: var(--shadow-xs); transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), border-color var(--dur); }
.vc-card--elevated { box-shadow: var(--shadow-md); }
.vc-card--interactive { cursor: pointer; }
.vc-card--interactive:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--border-strong); }
.vc-card--pad-md { padding: var(--space-6); }
.vc-card--pad-lg { padding: var(--space-10); }

/* Icon box (pillars/targets/perks) */
.vc-icon-box { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--brand-soft); color: var(--brand-primary); }
.vc-icon-box--lg { width: 56px; height: 56px; border-radius: var(--radius-lg); }
.vc-icon-box--deep { background: var(--brand-deep); color: #fff; }
.vc-icon-box--accent { background: var(--accent-soft); color: var(--accent-hover); }
.vc-icon-box--accent-round { width: 72px; height: 72px; border-radius: 50%; }

/* =========================================================
   5. Badge  (tone × soft/solid)
   ========================================================= */
.vc-badge { display: inline-flex; align-items: center; gap: 5px; font-weight: var(--fw-semibold); font-size: 12px; line-height: 1.4; letter-spacing: var(--ls-snug); padding: 4px 10px; border-radius: var(--radius-pill); white-space: nowrap; }
.vc-badge--sm { font-size: 11px; padding: 2px 8px; }
.vc-badge--lg { font-size: 13px; padding: 5px 12px; }
/* soft (default) */
.vc-badge--neutral { background: var(--gray-100); color: var(--gray-700); }
.vc-badge--brand   { background: var(--blue-50);  color: var(--blue-700); }
.vc-badge--accent  { background: var(--green-50); color: var(--green-700); }
.vc-badge--warning { background: var(--orange-100); color: var(--orange-600); }
.vc-badge--success { background: var(--green-50); color: var(--green-700); }
/* solid */
.vc-badge--solid.vc-badge--neutral { background: var(--gray-700); color: #fff; }
.vc-badge--solid.vc-badge--brand   { background: var(--brand-primary); color: #fff; }
.vc-badge--solid.vc-badge--accent  { background: var(--accent); color: #fff; }
.vc-badge--solid.vc-badge--warning { background: var(--orange-500); color: #fff; }
.vc-badge--solid.vc-badge--success { background: var(--success); color: #fff; }

/* =========================================================
   6. Tag  (outlined pill · active)
   ========================================================= */
.vc-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: var(--fw-medium); color: var(--text-body); background: var(--surface); border: 1px solid var(--border); padding: 5px 12px; border-radius: var(--radius-pill); white-space: nowrap; transition: color var(--dur), background var(--dur), border-color var(--dur); }
a.vc-tag, button.vc-tag { cursor: pointer; }
.vc-tag--active, a.vc-tag.vc-tag--active { color: var(--blue-700); background: var(--blue-50); border-color: var(--blue-300); }
.vc-tag:where(a,button):hover { border-color: var(--blue-300); color: var(--blue-700); }

/* =========================================================
   7. Avatar
   ========================================================= */
.vc-avatar { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius-pill); background: var(--blue-100); color: var(--blue-700); font-weight: var(--fw-semibold); font-size: 18px; flex-shrink: 0; overflow: hidden; user-select: none; background-size: cover; background-position: center; }
.vc-avatar--ring { box-shadow: 0 0 0 3px var(--surface), 0 0 0 4.5px var(--accent); }

/* =========================================================
   8. StatCard
   ========================================================= */
.vc-statcard { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.vc-statcard--center { align-items: center; text-align: center; }
.vc-statcard__value { font-size: 44px; font-weight: var(--fw-extrabold); line-height: 1; letter-spacing: var(--ls-tight); color: var(--brand-primary); font-variant-numeric: tabular-nums; }
.vc-statcard__value--accent { color: var(--accent); }
.vc-statcard__value--dark { color: var(--brand-deep); }
.vc-statcard__value--neutral { color: var(--text-strong); }
.vc-statcard__label { font-size: 15px; font-weight: var(--fw-semibold); color: var(--text-strong); }
.vc-statcard__sub { font-size: 13px; color: var(--text-muted); }

/* =========================================================
   9. Tabs (underline)
   ========================================================= */
.vc-tabs { display: inline-flex; gap: 4px; border-bottom: 1px solid var(--border); }
.vc-tabs__tab { position: relative; border: none; background: none; cursor: pointer; font-family: var(--font-sans); font-size: 15px; font-weight: var(--fw-medium); color: var(--text-muted); padding: 12px 16px 14px; transition: color var(--dur); }
.vc-tabs__tab::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 2.5px; border-radius: 2px; background: transparent; transition: background var(--dur); }
.vc-tabs__tab--active { color: var(--brand-primary); font-weight: var(--fw-semibold); }
.vc-tabs__tab--active::after { background: var(--brand-primary); }

/* =========================================================
   10. SectionHeading
   ========================================================= */
.vc-eyebrow { font-size: 13px; font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--accent); }
.vc-section-heading { display: flex; flex-direction: column; gap: 12px; }
.vc-section-heading--center { align-items: center; text-align: center; max-width: 640px; margin-inline: auto; }
.vc-section-heading h1, .vc-section-heading h2 { font-size: clamp(26px, 4vw, 38px); margin: 0; text-wrap: balance; }
.vc-section-heading__lead { font-size: 17px; line-height: var(--lh-relaxed); color: var(--text-muted); margin: 0; text-wrap: pretty; }

/* =========================================================
   11. Hero (dark)
   ========================================================= */
.vc-hero-dark { position: relative; overflow: hidden; background: var(--brand-deep); color: #fff; }
.vc-hero-dark__glow { position: absolute; inset: 0; background:
  radial-gradient(900px 500px at 78% -10%, rgba(21,160,110,0.20), transparent 60%),
  radial-gradient(700px 480px at 12% 110%, rgba(42,92,158,0.35), transparent 55%); pointer-events: none; }
.vc-hero-dark__inner { position: relative; padding-block: 96px 104px; }
.vc-hero-dark__content { max-width: 720px; }
.vc-hero-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--green-200); background: rgba(21,160,110,0.16); border: 1px solid rgba(47,179,125,0.35); padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 26px; }
.vc-hero-dark h1 { font-size: clamp(36px, 5.4vw, 60px); font-weight: var(--fw-extrabold); line-height: 1.1; letter-spacing: -0.025em; color: #fff; margin: 0; text-wrap: balance; }
.vc-hero-dark__lead { margin-top: 24px; font-size: 19px; line-height: 1.7; color: rgba(234,241,249,0.82); max-width: 600px; text-wrap: pretty; }
.vc-hero-dark__actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.vc-hero-dark__stats { display: flex; gap: 36px; margin-top: 52px; flex-wrap: wrap; }
.vc-hero-stat__value { font-size: 32px; font-weight: var(--fw-extrabold); letter-spacing: var(--ls-tight); color: #fff; }
.vc-hero-stat__label { font-size: 13.5px; color: rgba(234,241,249,0.6); margin-top: 2px; }

/* =========================================================
   12. Pillars / Targets
   ========================================================= */
.vc-pillar__num { font-size: 13px; font-weight: var(--fw-bold); color: var(--accent); margin-bottom: 6px; }
.vc-pillar h3 { font-size: 18px; margin-bottom: 8px; }
.vc-pillar p { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.vc-target { display: flex; flex-direction: column; }
.vc-target h3 { font-size: 21px; margin: 0 0 10px; }
.vc-target p { font-size: 15px; line-height: 1.65; color: var(--text-muted); margin: 0 0 20px; flex: 1; }
.vc-target__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: var(--fw-semibold); color: var(--brand-primary); }

/* =========================================================
   13. CTA band
   ========================================================= */
.vc-cta-band { position: relative; overflow: hidden; border-radius: var(--radius-2xl); background: var(--brand-primary); color: #fff; padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.vc-cta-band__glow { position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% 120%, rgba(21,160,110,0.4), transparent 60%); pointer-events: none; }
.vc-cta-band__text { position: relative; max-width: 560px; }
.vc-cta-band__text h2 { font-size: 32px; color: #fff; margin-bottom: 14px; }
.vc-cta-band__text p { font-size: 17px; line-height: 1.6; color: rgba(234,241,249,0.85); margin: 0; }
.vc-cta-band__action { position: relative; flex-shrink: 0; }

/* =========================================================
   14. Programs
   ========================================================= */
.vc-program-card { display: flex; flex-direction: column; }
.vc-program-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.vc-program-card__meta { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-muted); }
.vc-program-card h3 { font-size: 20px; margin-bottom: 10px; }
.vc-program-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-muted); margin: 0 0 22px; flex: 1; }
.vc-program-card__foot { display: flex; gap: 8px; padding-top: 18px; border-top: 1px solid var(--border-subtle); }
.vc-program-card__foot .vc-btn { flex: 1; }
.vc-callout { display: flex; align-items: center; gap: 28px; background: var(--brand-soft); border-color: var(--blue-200); }
.vc-callout__body { flex: 1; min-width: 0; }
.vc-callout h3 { font-size: 19px; margin-bottom: 6px; }
.vc-callout p { font-size: 14.5px; color: var(--text-body); line-height: 1.6; margin: 0; }

/* =========================================================
   15. Instructors
   ========================================================= */
.vc-instructor__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.vc-instructor__head h3 { font-size: 18px; margin-bottom: 3px; }
.vc-instructor__org { font-size: 13.5px; color: var(--text-muted); }
.vc-instructor__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.vc-instructor__exp { font-size: 13px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 5px; }
.vc-instructor__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.vc-filterbar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }

/* =========================================================
   16. References
   ========================================================= */
.vc-dash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.vc-dash-cell { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); padding: 24px; }
.vc-dash-cell__value { font-size: 40px; font-weight: var(--fw-extrabold); letter-spacing: var(--ls-tight); color: #fff; }
.vc-dash-cell__value--accent { color: var(--green-200); }
.vc-dash-cell__label { font-size: 15px; font-weight: var(--fw-semibold); color: #fff; margin-top: 6px; }
.vc-dash-cell__sub { font-size: 13px; color: rgba(234,241,249,0.55); margin-top: 2px; }
.vc-clients { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.vc-client-plate { height: 76px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); font-size: 16px; font-weight: var(--fw-semibold); color: var(--text-body); letter-spacing: var(--ls-snug); text-align: center; padding: 0 12px; }
.vc-testimonial { display: flex; flex-direction: column; }
.vc-testimonial__quote-icon { color: var(--accent); margin-bottom: 14px; }
.vc-testimonial__stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--warning); }
.vc-testimonial__stars svg { fill: var(--warning); }
.vc-testimonial__text { font-size: 15.5px; line-height: 1.7; color: var(--text-body); flex: 1; text-wrap: pretty; margin: 0; }
.vc-testimonial__by { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-subtle); }
.vc-testimonial__name { font-size: 14.5px; font-weight: var(--fw-semibold); color: var(--text-strong); }
.vc-testimonial__org { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* =========================================================
   17. Contact
   ========================================================= */
.vc-contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.vc-contact-aside { position: sticky; top: 96px; }
.vc-perks { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.vc-perk { display: flex; gap: 14px; align-items: flex-start; }
.vc-perk__title { font-size: 15.5px; font-weight: var(--fw-semibold); color: var(--text-strong); }
.vc-perk__desc { font-size: 14px; color: var(--text-muted); margin-top: 2px; line-height: 1.5; }

/* =========================================================
   18. Native form fields  (and Gravity Forms base in gravity-forms.css)
   ========================================================= */
.vc-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: var(--space-5); }
.vc-field label { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-strong); }
input[type="text"], input[type="email"], input[type="url"], input[type="tel"],
input[type="number"], input[type="password"], input[type="search"], input[type="date"],
textarea, select {
  width: 100%; min-height: 46px; padding: 0 14px;
  font-family: var(--font-sans); font-size: 15px; color: var(--text-strong);
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-md);
  outline: none; transition: border-color var(--dur), box-shadow var(--dur);
}
textarea { padding: 12px 14px; min-height: 120px; line-height: var(--lh-normal); resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--border-focus); box-shadow: var(--focus-ring); }
::placeholder { color: var(--text-faint); }

/* =========================================================
   19. NavBar
   ========================================================= */
.vc-header { position: sticky; top: 0; z-index: 50; background: var(--surface); border-bottom: 1px solid var(--border-subtle); transition: background var(--dur), border-color var(--dur); }
.vc-header.is-scrolled { background: rgba(255,255,255,0.86); backdrop-filter: saturate(180%) blur(12px); border-bottom-color: var(--border); }
.vc-header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: var(--space-6); }
.vc-brand { display: inline-flex; align-items: center; gap: var(--space-3); }
.vc-brand img { height: 34px; width: auto; }
.vc-nav { display: flex; align-items: center; gap: 4px; }
.vc-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.vc-nav a { display: inline-flex; align-items: center; height: 40px; padding: 8px 16px; font-size: 15px; font-weight: var(--fw-medium); color: var(--text-body); border-radius: var(--radius-sm); }
.vc-nav a:hover { color: var(--brand-primary); }
.vc-nav .current-menu-item > a, .vc-nav .current_page_item > a { color: var(--brand-primary); font-weight: var(--fw-semibold); }
.vc-header__actions { display: flex; align-items: center; gap: var(--space-4); }
.vc-nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); cursor: pointer; color: var(--text-strong); }
.vc-nav .menu-item-has-children { position: relative; }
.vc-nav .sub-menu { position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: var(--space-2); display: none; flex-direction: column; gap: 2px; }
.vc-nav .menu-item-has-children:hover .sub-menu { display: flex; }
.vc-nav .sub-menu a { height: 38px; width: 100%; }

/* =========================================================
   20. Footer (dark)
   ========================================================= */
.vc-footer { background: var(--brand-deep); color: var(--text-on-dark); }
.vc-footer__inner { padding-block: 64px 40px; }
.vc-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.vc-footer__brand img { height: 34px; width: auto; }
.vc-footer__desc { margin-top: 18px; font-size: 14px; line-height: 1.7; color: rgba(234,241,249,0.66); max-width: 300px; }
.vc-footer__contact { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; font-size: 13px; color: rgba(234,241,249,0.55); }
.vc-footer__contact span { display: inline-flex; align-items: center; gap: 7px; }
.vc-footer__col h4 { font-size: 13px; font-weight: var(--fw-semibold); letter-spacing: 0.02em; margin-bottom: 16px; color: #fff; text-transform: none; }
.vc-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.vc-footer__col a { font-size: 14px; color: rgba(234,241,249,0.66); }
.vc-footer__col a:hover { color: #fff; }
.vc-footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(234,241,249,0.45); }

/* =========================================================
   21. WordPress core / editor
   ========================================================= */
.alignleft { float: left; margin: 0 var(--space-6) var(--space-4) 0; }
.alignright { float: right; margin: 0 0 var(--space-4) var(--space-6); }
.aligncenter { display: block; margin-inline: auto; }
.alignwide { max-width: var(--container-xl); margin-inline: auto; }
.alignfull { max-width: none; }
.wp-caption-text, .wp-element-caption { font-size: var(--fs-sm); color: var(--text-muted); text-align: center; margin-top: var(--space-2); }
.sticky, .gallery-caption, .bypostauthor { display: block; }
blockquote { margin: var(--space-6) 0; padding: var(--space-4) var(--space-6); border-left: 4px solid var(--accent); background: var(--surface-subtle); border-radius: 0 var(--radius-md) var(--radius-md) 0; color: var(--text-body); }
code, kbd, pre { font-family: var(--font-mono); font-size: 0.92em; }
pre { background: var(--gray-900); color: #e9edf2; padding: var(--space-5); border-radius: var(--radius-md); overflow-x: auto; }
:not(pre) > code { background: var(--surface-sunken); padding: 2px 6px; border-radius: var(--radius-xs); }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--space-10) 0; }
table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-6); }
th, td { padding: var(--space-3) var(--space-4); border: 1px solid var(--border); text-align: left; }
th { background: var(--surface-subtle); font-weight: var(--fw-semibold); color: var(--text-strong); }

/* Posts / blog */
.vc-entry { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xs); transition: box-shadow var(--dur), transform var(--dur); }
.vc-entry:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.vc-entry__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.vc-entry__body { padding: var(--space-6); }
.vc-entry__meta { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: var(--space-2); }
.vc-entry__title { font-size: var(--fs-h4); margin-bottom: var(--space-2); }
.vc-entry__title a { color: var(--text-strong); }
.vc-entry__title a:hover { color: var(--brand-primary); }
.vc-article { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px,4vw,56px); box-shadow: var(--shadow-xs); }
.vc-article__header { margin-bottom: var(--space-8); }
.vc-article h1 { font-size: clamp(28px,4vw,var(--fs-h1)); }
.vc-page-hero { background: linear-gradient(180deg, var(--brand-soft) 0%, var(--bg-page) 100%); padding-block: var(--space-16); }
.vc-page-hero h1 { font-size: clamp(30px,5vw,var(--fs-h1)); margin-bottom: var(--space-2); }
.vc-breadcrumb { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--space-3); }
.vc-pagination { display: flex; justify-content: center; gap: var(--space-2); margin-top: var(--space-12); }
.vc-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); color: var(--text-body); font-weight: var(--fw-medium); }
.vc-pagination .page-numbers:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.vc-pagination .page-numbers.current { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; }
.vc-widget { margin-bottom: var(--space-6); }
.vc-widget__title { font-size: var(--fs-h4); margin-bottom: var(--space-4); }
.vc-comments ol { list-style: none; padding: 0; }
.vc-comments .comment-body { padding: var(--space-5); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: var(--space-4); background: var(--surface); }

/* =========================================================
   22. Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .vc-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .vc-contact-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .vc-contact-aside { position: static; }
  .vc-dash-grid, .vc-clients { grid-template-columns: repeat(2, 1fr); }
  .vc-cta-band { flex-direction: column; align-items: flex-start; gap: 24px; padding: 48px 36px; }
}
@media (max-width: 860px) {
  .vc-grid--3, .vc-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .vc-nav, .vc-header__actions .vc-btn { display: none; }
  .vc-nav-toggle { display: inline-flex; }
  .vc-header.is-open .vc-nav { position: absolute; top: 72px; left: 0; right: 0; display: block; background: var(--surface); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: var(--space-4); }
  .vc-header.is-open .vc-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .vc-header.is-open .vc-nav a { height: 48px; width: 100%; }
  .vc-hero-dark__inner { padding-block: 64px 72px; }
  .vc-hero-dark h1 { font-size: clamp(30px,7vw,44px); }
}
@media (max-width: 640px) {
  .vc-callout { flex-direction: column; align-items: flex-start; gap: 16px; text-align: left; }
  .vc-callout .vc-btn { width: 100%; justify-content: center; }
  .vc-program-card__foot { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .vc-grid--2, .vc-grid--3, .vc-grid--4 { grid-template-columns: 1fr; }
  .vc-footer__grid { grid-template-columns: 1fr; }
  .vc-dash-grid, .vc-clients { grid-template-columns: 1fr 1fr; }
  .vc-hero-dark__stats { gap: 24px; }
  :root { --section-y: var(--space-16); }
}

/* === 화면 전환 애니메이션: 본문 페이드 인 (opacity 만 — transform 은 하위 position:fixed
   요소의 고정을 깨뜨릴 수 있어 사용하지 않음) === */
@keyframes vcFade {
	from { opacity: 0; }
	to   { opacity: 1; }
}
.vc-main { animation: vcFade 0.3s ease both; }
@media (prefers-reduced-motion: reduce) {
	.vc-main { animation: none; }
}
