/* =========================================================
  Worker Insight Skin / style.css 1차본
  목적: 직장인 정보형 매거진 티스토리 스킨
  구성: 반응형 카드형 메인 + 목록 광고 대응 + 본문 가독성 강화
========================================================= */

/* =========================
  1. Design Tokens
========================= */
:root {
  --ws-navy: #0f2a4d;
  --ws-navy-dark: #081827;
  --ws-blue: #2563eb;
  --ws-blue-soft: #eaf2ff;
  --ws-sky: #eef6ff;
  --ws-bg: #f8fafc;
  --ws-white: #ffffff;
  --ws-text: #1f2937;
  --ws-muted: #6b7280;
  --ws-light-muted: #9ca3af;
  --ws-border: #e5e7eb;
  --ws-border-strong: #cbd5e1;
  --ws-point: #f97316;
  --ws-green: #10b981;
  --ws-red: #ef4444;

  --ws-shadow-sm: 0 6px 18px rgba(15, 42, 77, 0.06);
  --ws-shadow-md: 0 12px 36px rgba(15, 42, 77, 0.1);
  --ws-shadow-lg: 0 24px 60px rgba(15, 42, 77, 0.15);

  --ws-radius-sm: 10px;
  --ws-radius-md: 16px;
  --ws-radius-lg: 22px;

  --ws-container: 1120px;
  --ws-post-width: 820px;

  --ws-font: 'Noto Sans KR', 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =========================
  2. Reset / Base
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.worker-skin {
  margin: 0;
  background: var(--ws-white);
  color: var(--ws-text);
  font-family: var(--ws-font);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.worker-skin img,
.worker-skin video,
.worker-skin iframe {
  max-width: 100%;
}

.worker-skin img {
  height: auto;
  vertical-align: middle;
}

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

.worker-skin button,
.worker-skin input,
.worker-skin textarea,
.worker-skin select {
  font-family: inherit;
}

.worker-skin button {
  cursor: pointer;
}

.worker-skin ul,
.worker-skin ol {
  margin-top: 0;
  margin-bottom: 0;
}

.ws-container {
  width: min(var(--ws-container), calc(100% - 40px));
  margin-inline: auto;
}

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

.ws-skip a {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--ws-radius-sm);
  background: var(--ws-navy);
  color: #fff;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.ws-skip a:focus {
  transform: translateY(0);
}

/* =========================
  3. Page Visibility Rules
========================= */
#tt-body-page .ws-main-hero,
#tt-body-page .ws-category-shortcut,
#tt-body-page .ws-home-intro,
#tt-body-guestbook .ws-main-hero,
#tt-body-guestbook .ws-category-shortcut,
#tt-body-guestbook .ws-home-intro,
#tt-body-tag .ws-main-hero,
#tt-body-tag .ws-category-shortcut,
#tt-body-tag .ws-home-intro {
  display: none;
}

#tt-body-index .ws-list-header {
  display: none;
}

#tt-body-page .ws-bottom-widgets {
  margin-top: 0;
}

/* =========================
  4. Header / Navigation
========================= */
.ws-header {
  position: relative;
  z-index: 100;
  background: var(--ws-white);
}

.ws-topbar {
  background: var(--ws-navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.ws-topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ws-topbar-text {
  margin: 0;
  font-weight: 600;
}

.ws-topbar-links {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.ws-topbar-links a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  transition: color 0.2s ease;
}

.ws-topbar-links a:hover {
  color: #fff;
}

.ws-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ws-border);
}

.ws-nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ws-brand {
  min-width: 190px;
}

.ws-logo {
  margin: 0;
  line-height: 1.2;
}

.ws-logo a {
  display: inline-flex;
  align-items: center;
  color: var(--ws-navy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.ws-blog-desc {
  margin: 4px 0 0;
  color: var(--ws-muted);
  font-size: 12px;
  line-height: 1.4;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-gnb {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.ws-gnb ul,
.ws-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ws-gnb > ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ws-gnb li {
  position: relative;
}

.ws-gnb a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--ws-text);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.ws-gnb a:hover {
  color: var(--ws-blue);
}

.ws-gnb li ul {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 180px;
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-md);
  background: #fff;
  box-shadow: var(--ws-shadow-md);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.ws-gnb li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.ws-gnb li ul a {
  display: block;
  min-height: auto;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ws-muted);
  font-size: 13px;
  white-space: nowrap;
}

.ws-gnb li ul a:hover {
  background: var(--ws-bg);
  color: var(--ws-blue);
}

.ws-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-search-toggle,
.ws-menu-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ws-border);
  border-radius: 999px;
  background: #fff;
  color: var(--ws-navy);
  font-size: 20px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ws-search-toggle:hover,
.ws-menu-toggle:hover {
  background: var(--ws-blue-soft);
  border-color: #bfd4ff;
  transform: translateY(-1px);
}

.ws-menu-toggle {
  display: none;
}

.ws-search-panel {
  display: none;
  border-bottom: 1px solid var(--ws-border);
  background: #fff;
}

.ws-search-panel.is-open {
  display: block;
}

.ws-search-box {
  display: flex;
  gap: 10px;
  padding: 18px 0;
}

.ws-search-box input,
.ws-widget-search input,
.ws-protected-form input {
  min-width: 0;
  flex: 1;
  height: 46px;
  padding: 0 15px;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-sm);
  background: #fff;
  color: var(--ws-text);
  font-size: 15px;
  outline: none;
}

.ws-search-box input:focus,
.ws-widget-search input:focus,
.ws-protected-form input:focus {
  border-color: var(--ws-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.ws-search-box button,
.ws-widget-search button,
.ws-protected-form button {
  height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--ws-radius-sm);
  background: var(--ws-navy);
  color: #fff;
  font-weight: 800;
}

.ws-mobile-menu {
  display: none;
  border-bottom: 1px solid var(--ws-border);
  background: #fff;
}

.ws-mobile-menu.is-open {
  display: block;
}

.ws-mobile-menu .ws-container {
  padding: 14px 0 18px;
}

.ws-mobile-menu a {
  display: block;
  padding: 12px 4px;
  border-bottom: 1px solid var(--ws-border);
  color: var(--ws-text);
  font-weight: 800;
}

.ws-mobile-menu li ul a {
  padding-left: 18px;
  color: var(--ws-muted);
  font-size: 14px;
  font-weight: 700;
}

/* =========================
  5. Hero
========================= */
.ws-main-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(238, 246, 255, 0.97), rgba(238, 246, 255, 0.72), rgba(238, 246, 255, 0.24)),
    url('./images/hero-office.jpg') center right / cover no-repeat;
  border-bottom: 1px solid var(--ws-border);
}

.ws-main-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.12), transparent 34%);
}

.ws-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 72px 0;
}

.ws-hero-copy {
  max-width: 620px;
}

.ws-eyebrow {
  margin: 0 0 12px;
  color: var(--ws-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-hero-copy h2 {
  margin: 0 0 20px;
  color: var(--ws-navy);
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.22;
  letter-spacing: -0.06em;
}

.ws-hero-copy p:not(.ws-eyebrow) {
  margin: 0;
  max-width: 520px;
  color: var(--ws-muted);
  font-size: 17px;
  line-height: 1.85;
}

.ws-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--ws-radius-sm);
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ws-btn:hover {
  transform: translateY(-1px);
}

.ws-btn-primary {
  background: var(--ws-navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 42, 77, 0.2);
}

.ws-btn-primary:hover {
  background: #173b6c;
}

.ws-btn-ghost {
  border: 1px solid rgba(15, 42, 77, 0.22);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ws-navy);
}

/* =========================
  6. Category Shortcut
========================= */
.ws-category-shortcut {
  background: #fff;
  border-bottom: 1px solid var(--ws-border);
}

.ws-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--ws-border);
}

.ws-category-item {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 26px 16px;
  border-right: 1px solid var(--ws-border);
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ws-category-item:hover {
  background: var(--ws-bg);
  transform: translateY(-2px);
}

.ws-category-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  border-radius: 999px;
  background: var(--ws-blue-soft);
  font-size: 22px;
}

.ws-category-item strong {
  color: var(--ws-navy);
  font-size: 16px;
  font-weight: 900;
}

.ws-category-item em {
  color: var(--ws-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

/* =========================
  7. Home Intro
========================= */
.ws-home-intro {
  background: var(--ws-white);
}

.ws-home-intro-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 42px 0 10px;
}

.ws-intro-card {
  padding: 24px;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-lg);
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: var(--ws-shadow-sm);
}

.ws-intro-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--ws-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.ws-intro-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ws-navy);
  font-size: 18px;
  font-weight: 900;
}

.ws-intro-card p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================
  8. List Header / Archive
========================= */
.ws-list-header,
.ws-page-header {
  background: linear-gradient(180deg, #f8fbff, #fff);
  border-bottom: 1px solid var(--ws-border);
}

.ws-list-header .ws-container,
.ws-page-header {
  padding: 50px 0 34px;
  text-align: center;
}

.ws-list-header h2,
.ws-page-header h1 {
  margin: 0;
  color: var(--ws-navy);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.3;
  letter-spacing: -0.05em;
}

.ws-list-desc {
  margin: 12px auto 0;
  max-width: 620px;
  color: var(--ws-muted);
  font-size: 15px;
}

/* =========================
  9. Advertisement Areas
========================= */
.ws-ad-wrap {
  width: 100%;
}

.ws-ad-box {
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0;
  padding: 14px;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-md);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  color: var(--ws-muted);
  text-align: center;
  overflow: hidden;
}

.ws-ad-list-upper .ws-ad-box {
  margin-top: 32px;
  margin-bottom: 16px;
}

.ws-ad-list-lower .ws-ad-box {
  margin-top: 12px;
  margin-bottom: 44px;
}

.ws-ad-post-upper .ws-ad-box {
  margin: 0 0 34px;
}

.ws-ad-post-lower .ws-ad-box {
  margin: 44px 0 34px;
}

.ws-ad-box:empty::before {
  content: '광고 영역';
  color: var(--ws-light-muted);
  font-size: 13px;
  font-weight: 800;
}

/* =========================
  10. Article Card Area
========================= */
.ws-article-area {
  background: #fff;
}

.ws-article-area > .ws-container {
  padding: 34px 0 44px;
}

#tt-body-index .ws-article-area > .ws-container,
#tt-body-category .ws-article-area > .ws-container,
#tt-body-search .ws-article-area > .ws-container,
#tt-body-archive .ws-article-area > .ws-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ws-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-lg);
  background: #fff;
  box-shadow: var(--ws-shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ws-card:hover {
  transform: translateY(-4px);
  border-color: #c9dbff;
  box-shadow: var(--ws-shadow-md);
}

.ws-card-link {
  display: block;
  height: 100%;
}

.ws-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ws-bg) url('./images/default-thumb.jpg') center / cover no-repeat;
}

.ws-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ws-card:hover .ws-card-thumb img {
  transform: scale(1.04);
}

.ws-card-body {
  padding: 20px;
}

.ws-card-category {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--ws-blue);
  font-size: 13px;
  font-weight: 900;
}

.ws-card-title {
  display: -webkit-box;
  min-height: 58px;
  margin: 0 0 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--ws-navy);
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.ws-card-summary {
  display: -webkit-box;
  min-height: 52px;
  margin: 0 0 16px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--ws-muted);
  font-size: 14px;
  line-height: 1.75;
}

.ws-card-date {
  color: var(--ws-light-muted);
  font-size: 13px;
  font-weight: 700;
}

/* =========================
  11. Post Page
========================= */
.ws-post {
  background: #fff;
}

.ws-post-container {
  width: min(var(--ws-post-width), calc(100% - 40px));
  margin-inline: auto;
  padding: 54px 0 64px;
}

.ws-post-header {
  margin-bottom: 32px;
}

.ws-post-category {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--ws-blue);
  font-size: 14px;
  font-weight: 900;
}

.ws-post-title {
  margin: 0 0 16px;
  color: var(--ws-navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.28;
  letter-spacing: -0.06em;
}

.ws-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--ws-muted);
  font-size: 14px;
  font-weight: 600;
}

.ws-post-thumbnail {
  margin: 0 0 38px;
  overflow: hidden;
  border-radius: var(--ws-radius-lg);
  background: var(--ws-bg);
  box-shadow: var(--ws-shadow-sm);
}

.ws-post-thumbnail img {
  width: 100%;
  display: block;
}

.ws-post-content {
  color: var(--ws-text);
  font-size: 17px;
  line-height: 1.92;
}

.ws-post-content::after {
  content: '';
  display: block;
  clear: both;
}

.ws-post-content h1,
.ws-post-content h2,
.ws-post-content h3,
.ws-post-content h4 {
  color: var(--ws-navy);
  line-height: 1.42;
  letter-spacing: -0.05em;
}

.ws-post-content h1 {
  margin: 48px 0 20px;
  font-size: 32px;
}

.ws-post-content h2 {
  margin: 58px 0 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ws-navy);
  font-size: 28px;
}

.ws-post-content h3 {
  margin: 38px 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--ws-blue);
  font-size: 22px;
}

.ws-post-content h4 {
  margin: 30px 0 12px;
  font-size: 19px;
}

.ws-post-content p {
  margin: 18px 0;
}

.ws-post-content a {
  color: var(--ws-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ws-post-content strong,
.ws-post-content b {
  color: var(--ws-navy);
  font-weight: 900;
}

.ws-post-content blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 5px solid var(--ws-blue);
  border-radius: 0 var(--ws-radius-md) var(--ws-radius-md) 0;
  background: var(--ws-blue-soft);
  color: var(--ws-navy);
  font-weight: 700;
}

.ws-post-content ul,
.ws-post-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.ws-post-content li {
  margin: 8px 0;
}

.ws-post-content table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  border-top: 2px solid var(--ws-navy);
  font-size: 15px;
  line-height: 1.65;
}

.ws-post-content th,
.ws-post-content td {
  padding: 13px 12px;
  border: 1px solid var(--ws-border);
  vertical-align: top;
}

.ws-post-content th {
  background: var(--ws-bg);
  color: var(--ws-navy);
  font-weight: 900;
  text-align: left;
}

.ws-post-content figure {
  margin: 28px 0;
}

.ws-post-content figcaption {
  margin-top: 8px;
  color: var(--ws-muted);
  font-size: 13px;
  text-align: center;
}

.ws-post-content pre {
  overflow-x: auto;
  margin: 26px 0;
  padding: 18px;
  border-radius: var(--ws-radius-md);
  background: #0b1220;
  color: #e5e7eb;
  line-height: 1.7;
}

.ws-post-content code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--ws-bg);
  color: var(--ws-red);
  font-size: 0.92em;
}

.ws-post-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

/* 본문 안에서 사용 가능한 정보 박스 스타일 */
.ws-post-content .summary-box,
.ws-post-content .info-box,
.ws-post-content .tip-box {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid var(--ws-border);
  border-left: 6px solid var(--ws-blue);
  border-radius: var(--ws-radius-md);
  background: #fbfdff;
}

.ws-post-content .warning-box {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid #fed7aa;
  border-left: 6px solid var(--ws-point);
  border-radius: var(--ws-radius-md);
  background: #fff7ed;
}

.ws-post-content .checklist-box {
  margin: 28px 0;
  padding: 22px;
  border-radius: var(--ws-radius-md);
  background: var(--ws-bg);
}

.ws-post-content .checklist-box ul {
  margin: 0;
}

/* =========================
  12. Tags / Related / Comments
========================= */
.ws-section-title {
  margin: 0 0 18px;
  color: var(--ws-navy);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.ws-post-tags {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--ws-border);
}

.ws-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ws-tag-list a,
.ws-tag-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--ws-border);
  border-radius: 999px;
  background: #fff;
  color: var(--ws-muted);
  font-size: 13px;
  font-weight: 800;
}

.ws-tag-list a:hover,
.ws-tag-cloud a:hover {
  border-color: var(--ws-blue);
  background: var(--ws-blue-soft);
  color: var(--ws-blue);
}

.ws-related {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--ws-border);
}

.ws-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ws-related-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-md);
  background: #fff;
  box-shadow: var(--ws-shadow-sm);
}

.ws-related-thumb {
  aspect-ratio: 16 / 9;
  background: var(--ws-bg) url('./images/default-thumb.jpg') center / cover no-repeat;
  overflow: hidden;
}

.ws-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-related-card strong {
  display: -webkit-box;
  padding: 12px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--ws-navy);
  font-size: 14px;
  line-height: 1.55;
}

.ws-comment-area {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--ws-border);
}

.ws-comment-wrap {
  color: var(--ws-text);
}

/* 티스토리 기본 댓글 요소 보정 */
.ws-comment-wrap input,
.ws-comment-wrap textarea {
  max-width: 100%;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-sm);
}

/* =========================
  13. Pagination
========================= */
.ws-pagination {
  background: #fff;
}

.ws-pagination-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 0 58px;
}

.ws-page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ws-pagination a {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ws-border);
  border-radius: 10px;
  background: #fff;
  color: var(--ws-muted);
  font-size: 13px;
  font-weight: 900;
}

.ws-pagination a:hover,
.ws-pagination .selected {
  border-color: var(--ws-navy);
  background: var(--ws-navy);
  color: #fff;
}

/* =========================
  14. Tag / Guestbook / Protected / Notice
========================= */
.ws-tag-page,
.ws-guestbook,
.ws-protected,
.ws-notice-post {
  background: #fff;
}

.ws-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 42px 0 64px;
}

.ws-protected-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* 티스토리 방명록 기본 요소 보정 */
.ws-guestbook input,
.ws-guestbook textarea {
  max-width: 100%;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-sm);
}

/* =========================
  15. Bottom Widgets
========================= */
.ws-bottom-widgets {
  margin-top: 10px;
  padding: 44px 0;
  border-top: 1px solid var(--ws-border);
  background: var(--ws-bg);
}

.ws-widget-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.ws-widget {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-lg);
  background: #fff;
  box-shadow: var(--ws-shadow-sm);
}

.ws-widget h2 {
  margin: 0 0 16px;
  color: var(--ws-navy);
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.ws-widget-list,
.ws-category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ws-widget-list li,
.ws-category-list li {
  border-bottom: 1px solid var(--ws-border);
}

.ws-widget-list li:last-child,
.ws-category-list li:last-child {
  border-bottom: 0;
}

.ws-widget-list a,
.ws-category-list a {
  display: block;
  padding: 10px 0;
  color: var(--ws-text);
  font-size: 14px;
  font-weight: 700;
}

.ws-widget-list a:hover,
.ws-category-list a:hover {
  color: var(--ws-blue);
}

.ws-widget-search-form {
  display: flex;
  gap: 8px;
}

.ws-widget-search-form button {
  flex: none;
}

@media (max-width: 640px) {
  .ws-widget-search-form {
    flex-direction: column;
  }

  .ws-widget-search-form button {
    width: 100%;
  }
}

/* =========================
  16. Footer
========================= */
.ws-footer {
  background: linear-gradient(135deg, var(--ws-navy-dark), var(--ws-navy));
  color: rgba(255, 255, 255, 0.86);
}

.ws-footer-inner {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 24px;
  align-items: start;
  padding: 42px 0;
}

.ws-footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ws-footer-brand p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.ws-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.ws-footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.ws-footer-links a:hover {
  color: #fff;
}

.ws-copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

/* =========================
  17. Tistory Default Element Fixes
========================= */
.worker-skin .tt_article_useless_p_margin p {
  margin-top: 18px;
  margin-bottom: 18px;
}

.worker-skin .imageblock,
.worker-skin .figure {
  max-width: 100%;
}

.worker-skin .container_postbtn,
.worker-skin .postbtn_like,
.worker-skin .postbtn_ccl {
  max-width: var(--ws-post-width);
  margin-left: auto;
  margin-right: auto;
}

.worker-skin iframe[src*='ads'],
.worker-skin ins.adsbygoogle {
  max-width: 100%;
}

/* =========================
  18. Responsive
========================= */
@media (max-width: 1080px) {
  .ws-gnb > ul {
    gap: 16px;
  }

  .ws-gnb a {
    font-size: 13px;
  }

  #tt-body-index .ws-article-area > .ws-container,
  #tt-body-category .ws-article-area > .ws-container,
  #tt-body-search .ws-article-area > .ws-container,
  #tt-body-archive .ws-article-area > .ws-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ws-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ws-category-item:nth-child(3) {
    border-right: 1px solid var(--ws-border);
  }

  .ws-home-intro-inner,
  .ws-widget-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .ws-topbar {
    display: none;
  }

  .ws-nav-inner {
    min-height: 66px;
  }

  .ws-blog-desc {
    display: none;
  }

  .ws-gnb {
    display: none;
  }

  .ws-menu-toggle {
    display: inline-flex;
  }

  .ws-main-hero {
    background:
      linear-gradient(90deg, rgba(238, 246, 255, 0.98), rgba(238, 246, 255, 0.86)),
      url('./images/hero-office.jpg') center / cover no-repeat;
  }

  .ws-hero-inner {
    min-height: 360px;
    padding: 56px 0;
  }

  .ws-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.worker-skin {
    font-size: 15px;
  }

  .ws-container,
  .ws-post-container {
    width: min(100% - 32px, var(--ws-container));
  }

  .ws-nav-inner {
    min-height: 62px;
    gap: 14px;
  }

  .ws-logo a {
    font-size: 20px;
  }

  .ws-search-toggle,
  .ws-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .ws-search-box,
  .ws-widget-search,
  .ws-protected-form {
    flex-direction: column;
  }

  .ws-search-box button,
  .ws-widget-search button,
  .ws-protected-form button {
    width: 100%;
  }

  .ws-hero-inner {
    min-height: auto;
    padding: 48px 0;
  }

  .ws-hero-copy h2 {
    font-size: 32px;
  }

  .ws-hero-copy p:not(.ws-eyebrow) {
    font-size: 15px;
  }

  .ws-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ws-btn {
    width: 100%;
  }

  .ws-category-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .ws-category-item {
    min-height: auto;
    align-items: flex-start;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ws-border);
    text-align: left;
  }

  .ws-category-icon {
    margin-bottom: 6px;
  }

  .ws-home-intro-inner {
    padding-top: 30px;
  }

  .ws-intro-card,
  .ws-widget {
    padding: 20px;
    border-radius: var(--ws-radius-md);
  }

  .ws-list-header .ws-container,
  .ws-page-header {
    padding: 38px 0 28px;
  }

  #tt-body-index .ws-article-area > .ws-container,
  #tt-body-category .ws-article-area > .ws-container,
  #tt-body-search .ws-article-area > .ws-container,
  #tt-body-archive .ws-article-area > .ws-container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 24px;
  }

  .ws-card-body {
    padding: 18px;
  }

  .ws-card-title {
    min-height: auto;
    font-size: 18px;
  }

  .ws-card-summary {
    min-height: auto;
  }

  .ws-post-container {
    padding: 36px 0 48px;
  }

  .ws-post-header {
    margin-bottom: 24px;
  }

  .ws-post-title {
    font-size: 30px;
  }

  .ws-post-thumbnail {
    margin-bottom: 28px;
    border-radius: var(--ws-radius-md);
  }

  .ws-post-content {
    font-size: 16px;
    line-height: 1.86;
  }

  .ws-post-content h1 {
    font-size: 28px;
  }

  .ws-post-content h2 {
    margin-top: 44px;
    font-size: 24px;
  }

  .ws-post-content h3 {
    margin-top: 32px;
    font-size: 20px;
  }

  .ws-post-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .ws-post-content th,
  .ws-post-content td {
    padding: 11px 10px;
  }

  .ws-ad-box {
    min-height: 80px;
    margin: 22px 0;
    padding: 12px;
    border-radius: var(--ws-radius-sm);
  }

  .ws-related-grid {
    grid-template-columns: 1fr;
  }

  .ws-pagination-inner {
    gap: 8px;
    padding-bottom: 42px;
  }

  .ws-page-numbers {
    gap: 4px;
  }

  .ws-pagination a {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .ws-bottom-widgets {
    padding: 32px 0;
  }

  .ws-footer-inner {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .ws-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .ws-container,
  .ws-post-container {
    width: min(100% - 24px, var(--ws-container));
  }

  .ws-hero-copy h2,
  .ws-post-title {
    font-size: 28px;
  }

  .ws-header-actions {
    gap: 5px;
  }

  .ws-search-toggle,
  .ws-menu-toggle {
    width: 36px;
    height: 36px;
  }
}

/* =========================
  19. Print
========================= */
@media print {
  .ws-header,
  .ws-footer,
  .ws-bottom-widgets,
  .ws-ad-wrap,
  .ws-related,
  .ws-comment-area,
  .ws-pagination {
    display: none !important;
  }

  .ws-post-container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .ws-post-content {
    font-size: 12pt;
    line-height: 1.7;
  }
}
/* =========================================================
  Worker Insight Skin / 기존 CSS 이관 패치
  사용법: 기존 Worker Insight style.css 맨 아래에 그대로 추가
  목적:
  1. 티스토리 에디터 본문 호환성 강화
  2. 기존 커스터마이징 요소 유지
  3. 광고 박스 / 목차 / CTA / 오픈그래프 / 파일첨부 / 댓글 보정
  4. 새 ws- 스킨 구조와 충돌 방지
========================================================= */

/* =========================
  A. Tistory Editor Base
========================= */
.worker-skin #article-view,
.worker-skin .article-view,
.worker-skin .entry-content {
  font-size: 17px;
  line-height: 1.85;
  color: #333;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.worker-skin #article-view p,
.worker-skin .article-view p,
.worker-skin .entry-content p {
  margin: 0 0 18px;
  line-height: 1.85;
  color: #374151;
}

.worker-skin #article-view p[data-ke-size='size18'] {
  font-size: 1.12em;
  line-height: 1.72;
}

.worker-skin #article-view p[data-ke-size='size16'] {
  font-size: 1em;
  line-height: 1.85;
}

.worker-skin #article-view p[data-ke-size='size14'] {
  font-size: 0.88em;
  line-height: 1.72;
}

.worker-skin #article-view h2,
.worker-skin .article-view h2,
.worker-skin .entry-content h2 {
  margin-top: 42px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
  color: var(--ws-navy, #0f2a4d);
  font-size: 26px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.worker-skin #article-view h3,
.worker-skin .article-view h3,
.worker-skin .entry-content h3 {
  margin-top: 32px;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 4px solid var(--ws-blue, #2563eb);
  color: var(--ws-navy, #0f2a4d);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.worker-skin #article-view h4,
.worker-skin .article-view h4,
.worker-skin .entry-content h4 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--ws-navy, #0f2a4d);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 800;
}

.worker-skin #article-view h2[data-ke-size] {
  font-size: 1.62em;
  line-height: 1.46;
}

.worker-skin #article-view h3[data-ke-size] {
  font-size: 1.44em;
  line-height: 1.48;
}

.worker-skin #article-view h4[data-ke-size] {
  font-size: 1.25em;
  line-height: 1.55;
}

.worker-skin #article-view a,
.worker-skin .article-view a,
.worker-skin .entry-content a {
  color: var(--ws-blue, #2563eb);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.worker-skin #article-view a:hover,
.worker-skin .article-view a:hover,
.worker-skin .entry-content a:hover {
  opacity: 0.82;
}

.worker-skin #article-view ul,
.worker-skin #article-view ol,
.worker-skin .article-view ul,
.worker-skin .article-view ol,
.worker-skin .entry-content ul,
.worker-skin .entry-content ol {
  margin: 14px auto 24px;
  padding: 0 0 0 22px;
  line-height: 1.8;
}

.worker-skin #article-view li,
.worker-skin .article-view li,
.worker-skin .entry-content li {
  margin-bottom: 6px;
}

/* =========================
  B. Existing Blog Utility Classes
========================= */
.worker-skin .adsense-box {
  width: 100%;
  min-height: 90px;
  margin: 30px 0;
  text-align: center;
  overflow: hidden;
}

.worker-skin .toc-box {
  margin: 26px 0;
  padding: 18px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  background: #f8fafc;
}

.worker-skin .toc-box a {
  display: block;
  margin: 7px 0;
  color: #334155;
  font-weight: 700;
  text-decoration: none !important;
}

.worker-skin .toc-box a:hover {
  color: var(--ws-blue, #2563eb);
}

.worker-skin .cta-main {
  display: block;
  margin: 30px 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6b6b, #ff922b);
  color: #fff !important;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.22);
}

.worker-skin .cta-main:hover {
  opacity: 0.92;
}

.worker-skin .summary-box,
.worker-skin .info-box,
.worker-skin .tip-box {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid #dbe3ef;
  border-left: 6px solid var(--ws-blue, #2563eb);
  border-radius: 16px;
  background: #fbfdff;
}

.worker-skin .warning-box {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid #fed7aa;
  border-left: 6px solid #f97316;
  border-radius: 16px;
  background: #fff7ed;
}

/* =========================
  C. Tistory Image / Figure Compatibility
========================= */
.worker-skin #article-view img,
.worker-skin .article-view img,
.worker-skin .entry-content img {
  max-width: 100%;
  height: auto;
}

.worker-skin #article-view figure,
.worker-skin .article-view figure {
  max-width: 100%;
  clear: both;
}

.worker-skin #article-view figure.imageblock {
  display: table;
  position: relative;
}

.worker-skin #article-view figure.imageblock.alignLeft {
  text-align: left;
}

.worker-skin #article-view figure.imageblock.alignCenter {
  margin: 22px auto 0;
  text-align: center;
}

.worker-skin #article-view figure.imageblock.alignRight {
  margin-left: auto;
  text-align: right;
}

.worker-skin #article-view figure.imageblock.floatLeft {
  float: left;
  margin-right: 20px;
}

.worker-skin #article-view figure.imageblock.floatRight {
  float: right;
  margin-left: 20px;
}

.worker-skin #article-view figure.imageblock.widthContent {
  display: block;
}

.worker-skin #article-view figure.imageblock.widthContent img {
  width: 100%;
}

.worker-skin #article-view figure.imageblock img,
.worker-skin #article-view figure img {
  display: inline-block;
  max-width: 100%;
  margin: 0;
  height: auto;
}

.worker-skin #article-view figure img:not([width]),
.worker-skin #article-view figure iframe:not([width]) {
  width: 100%;
}

.worker-skin #article-view figure figcaption {
  width: 100%;
  min-height: 20px;
  padding-top: 10px;
  color: #777;
  font-size: 13px;
  text-align: center;
  word-break: break-word;
  caption-side: bottom;
  box-sizing: content-box;
}

.worker-skin #article-view figure.imagegridblock {
  position: relative;
  width: 100%;
  height: auto;
  margin: 20px 0 0;
  background-color: transparent;
  caret-color: transparent;
}

.worker-skin #article-view figure.imagegridblock .image-container {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
}

.worker-skin #article-view figure.imagegridblock img,
.worker-skin #article-view figure.imagegridblock span img {
  width: 100%;
  margin: 0;
  height: inherit;
}

/* =========================
  D. Tistory File Block
========================= */
.worker-skin #article-view figure.fileblock {
  position: relative;
  width: min(470px, 100%);
  height: 73px;
  box-sizing: border-box;
  margin: 20px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.worker-skin #article-view figure.fileblock a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.worker-skin #article-view figure.fileblock .image {
  float: left;
  width: 30px;
  height: 30px;
  margin: 22px 17px 21px 22px;
  background-image: url('https://t1.daumcdn.net/tistory_admin/static/manage/post-editor/img_editor_content.svg');
  background-position: 0 0;
}

.worker-skin #article-view figure.fileblock .desc {
  position: absolute;
  inset: 4px 60px 0 70px;
}

.worker-skin #article-view figure.fileblock .filename,
.worker-skin #article-view figure.fileblock .name {
  display: block;
  max-width: 272px;
  height: 20px;
  margin: 16px 0 0;
  overflow: hidden;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.worker-skin #article-view figure.fileblock .size {
  height: 16px;
  color: #777;
  font-size: 12px;
}

.worker-skin #article-view figure.fileblock a::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 19px;
  width: 30px;
  height: 30px;
  background-image: url('https://t1.daumcdn.net/tistory_admin/static/manage/post-editor/img_editor_content.svg');
  background-position: -40px 0;
}

/* =========================
  E. Table / Divider / Code Compatibility
========================= */
.worker-skin .ws-table-scroll {
  width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.worker-skin .ws-table-scroll table {
  min-width: 640px;
  margin: 0;
}

.worker-skin #article-view table,
.worker-skin .article-view table {
  width: 100%;
  border-collapse: collapse;
  border-color: #ddd;
}

.worker-skin #article-view table td,
.worker-skin #article-view table th,
.worker-skin .article-view table td,
.worker-skin .article-view table th {
  padding: 10px 9px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  word-break: break-word;
}

.worker-skin #article-view table tr:first-child td,
.worker-skin #article-view table tr:first-child th {
  background: #f8fafc;
  color: var(--ws-navy, #0f2a4d);
  font-weight: 900;
}

.worker-skin #article-view table[data-ke-style='style4'] tr:nth-child(2n) td,
.worker-skin #article-view table[data-ke-style='style5'] tr:nth-child(2n) td,
.worker-skin #article-view table[data-ke-style='style6'] tr:nth-child(2n) td,
.worker-skin #article-view table[data-ke-style='style7'] tr:nth-child(2n) td,
.worker-skin #article-view table[data-ke-style='style12'] tr:nth-child(odd) td,
.worker-skin #article-view table[data-ke-style='style13'] tr:nth-child(odd) td,
.worker-skin #article-view table[data-ke-style='style14'] tr:nth-child(odd) td,
.worker-skin #article-view table[data-ke-style='style15'] tr:nth-child(odd) td {
  background-color: #f9fafb;
}

.worker-skin #article-view table[data-ke-style='style8'],
.worker-skin #article-view table[data-ke-style='style9'],
.worker-skin #article-view table[data-ke-style='style10'],
.worker-skin #article-view table[data-ke-style='style11'] {
  border-left: 0;
  border-right: 0;
}

.worker-skin #article-view table[data-ke-style='style8'] td,
.worker-skin #article-view table[data-ke-style='style9'] td,
.worker-skin #article-view table[data-ke-style='style10'] td,
.worker-skin #article-view table[data-ke-style='style11'] td {
  border-right-color: transparent;
  border-left-color: transparent;
}

.worker-skin #article-view table[data-ke-style='style16'],
.worker-skin #article-view table[data-ke-style='style16'] tr,
.worker-skin #article-view table[data-ke-style='style16'] td {
  border-color: transparent;
}

.worker-skin #article-view pre,
.worker-skin .article-view pre {
  overflow-x: auto;
  margin: 26px 0;
  padding: 18px;
  border-radius: 14px;
  background: #0b1220;
  color: #e5e7eb;
  white-space: pre-wrap;
}

.worker-skin #article-view pre code.hljs {
  display: block;
  padding: 20px;
  border: 1px solid #1f2937;
  font-family: SF Mono, Menlo, Consolas, Monaco, monospace;
  font-size: 14px;
  line-height: 1.71;
  overflow: auto;
}

.worker-skin hr[data-ke-style],
.worker-skin #article-view hr[data-ke-style] {
  border: none;
  font-size: 0;
  line-height: 0;
  margin: 24px auto;
  background: url(https://t1.daumcdn.net/keditor/dist/0.7.21/image/divider-line.svg);
  background-size: 200px 420px;
  cursor: default !important;
}

.worker-skin hr[data-ke-style='style1'],
.worker-skin #article-view hr[data-ke-style='style1'] {
  width: 64px;
  height: 4px;
  padding: 20px;
  background-position: center 0;
}

.worker-skin hr[data-ke-style='style5'],
.worker-skin #article-view hr[data-ke-style='style5'],
.worker-skin hr[data-ke-style='style6'],
.worker-skin #article-view hr[data-ke-style='style6'] {
  height: 2px;
  padding: 21px 0;
  background-repeat: repeat-x;
}

/* =========================
  F. Blockquote / MoreLess
========================= */
.worker-skin #article-view blockquote[data-ke-style='style1'] {
  padding: 34px 0 0;
  border: 0;
  background: url(https://t1.daumcdn.net/keditor/dist/0.7.21/image/blockquote-style1.svg) no-repeat 50% 0;
  color: #333;
  font-size: 1.12em;
  line-height: 1.67;
  text-align: center;
}

.worker-skin #article-view blockquote[data-ke-style='style2'] {
  padding: 1px 0 0 12px;
  border-width: 0 0 0 4px;
  border-style: solid;
  border-color: #d0d0d0;
  color: #666;
  font-size: 1em;
  line-height: 1.75;
  text-align: left;
}

.worker-skin #article-view blockquote[data-ke-style='style3'] {
  padding: 21px 25px 20px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background-color: #fcfcfc;
  color: #666;
  font-size: 1em;
  line-height: 1.75;
  text-align: left;
}

.worker-skin #article-view div[data-ke-type='moreLess'] {
  margin: 22px 0;
  padding: 20px 20px 22px;
  border: 1px dashed #ddd;
  border-radius: 14px;
  background-color: #fafafa;
  color: #333;
  caret-color: auto;
}

.worker-skin #article-view div[data-ke-type='moreLess'] .moreless-content {
  display: none;
}

.worker-skin #article-view div[data-ke-type='moreLess'].open .moreless-content {
  display: block;
}

.worker-skin #article-view div[data-ke-type='moreLess'] .btn-toggle-moreless,
.worker-skin .btn_more,
.worker-skin .btn_less {
  display: block;
  width: 100%;
  margin: 20px 0;
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
}

.worker-skin .btn_less::before,
.worker-skin .btn_more::before {
  content: '...';
  display: inline-block;
  padding-right: 5px;
}

/* =========================
  G. OpenGraph / Video / Slide
========================= */
.worker-skin #article-view figure[data-ke-type='opengraph'] {
  margin: 18px 0;
}

.worker-skin #article-view figure[data-ke-type='opengraph'] a {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  color: #111827;
  text-decoration: none !important;
}

.worker-skin #article-view figure[data-ke-type='opengraph'] div.og-image {
  flex: 0 0 180px;
  width: 180px;
  height: 160px;
  border-right: 1px solid rgba(148, 163, 184, 0.24);
  background-size: cover;
  background-position: center;
}

.worker-skin #article-view figure[data-ke-type='opengraph'] div.og-text {
  min-width: 0;
  padding: 18px;
}

.worker-skin #article-view figure[data-ke-type='opengraph'] p.og-title {
  max-width: 100%;
  margin: 0 0 8px;
  overflow: hidden;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.worker-skin #article-view figure[data-ke-type='opengraph'] .og-desc {
  display: -webkit-box;
  max-height: 42px;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #64748b;
  font-size: 14px;
}

.worker-skin #article-view figure[data-ke-type='video'] {
  display: block;
  position: relative;
  text-align: center;
}

.worker-skin #article-view iframe,
.worker-skin #article-view figure iframe {
  max-width: 100%;
}

.worker-skin #article-view figure[data-ke-type='video'] > iframe[width='0'][height='0'] {
  width: 860px;
  max-width: 100%;
  height: 484px;
}

.worker-skin #article-view figure.imageslideblock {
  position: relative;
  clear: both;
  font-size: 0;
  outline: 0;
}

.worker-skin #article-view figure.imageslideblock div.image-container {
  position: relative;
  min-width: 480px;
  max-width: 100%;
  min-height: 300px;
  max-height: 860px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  background-color: #000;
}

.worker-skin #article-view figure.imageslideblock div.image-container img {
  max-width: 100%;
  max-height: 100%;
}

.worker-skin #article-view figure.imageslideblock figcaption {
  color: #666;
  font-size: 14px;
  text-align: center;
}

/* =========================
  H. Another Category / Media Log / Revenue
========================= */
.worker-skin #mediaLogNest {
  max-width: 1060px;
  height: auto !important;
  margin: 0 auto;
  padding: 0 20px;
}

.worker-skin .another_category {
  margin: 36px 0 56px !important;
}

.worker-skin .article-view .another_category table,
.worker-skin .article-view .another_category table * {
  border: none;
}

.worker-skin #article-view .another_category table td {
  font-size: 11px;
}

.worker-skin .revenue_unit_wrap.position_list {
  max-width: 1120px;
  margin: 30px auto;
}

.worker-skin ins.adsbygoogle,
.worker-skin iframe[src*='googlesyndication'],
.worker-skin iframe[src*='doubleclick'] {
  max-width: 100%;
}

/* =========================
  I. Article Prev / Current / Next
========================= */
.worker-skin .ws-article-page {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--ws-border, #e5e7eb);
}

.worker-skin .ws-article-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--ws-border, #e5e7eb);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.worker-skin .ws-article-page li {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ws-border, #e5e7eb);
  color: #64748b;
  font-size: 14px;
}

.worker-skin .ws-article-page li:last-child {
  border-bottom: 0;
}

.worker-skin .ws-article-page li span {
  flex: 0 0 58px;
  color: #94a3b8;
  font-weight: 800;
}

.worker-skin .ws-article-page li strong {
  min-width: 0;
  color: #334155;
  font-weight: 700;
}

.worker-skin .ws-article-page li a {
  width: 100%;
  display: flex;
  color: inherit;
  text-decoration: none;
}

.worker-skin .ws-article-page-current {
  background: #f8fafc;
}

.worker-skin .ws-article-page-current strong {
  color: var(--ws-navy, #0f2a4d);
  font-weight: 900;
}

/* =========================
  J. Empty List / Not Found
========================= */
.worker-skin .ws-list-empty {
  grid-column: 1 / -1;
  width: 100%;
  margin: 20px 0 44px;
}

.worker-skin .ws-empty-box {
  padding: 24px;
  border: 1px solid var(--ws-border, #e5e7eb);
  border-radius: 18px;
  background: #f8fafc;
  color: #64748b;
  font-size: 14px;
}

.worker-skin .ws-empty-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ws-navy, #0f2a4d);
  font-size: 18px;
  font-weight: 900;
}

.worker-skin .ws-empty-box span {
  position: relative;
  display: block;
  padding-left: 9px;
  line-height: 2;
}

.worker-skin .ws-empty-box span::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(15, 42, 77, 0.32);
}

.worker-skin .absent_post {
  display: none;
}

.worker-skin.notfoundpage .absent_post {
  display: block;
  padding: 80px 0 98px !important;
  background: none !important;
  color: #64748b !important;
  font-size: 14px !important;
  line-height: 1.75;
  text-align: center;
}

.worker-skin.notfoundpage .absent_post::before {
  content: '혹시 다른 글이지 않을까요?';
  display: block;
  margin-bottom: 25px;
  color: #334155;
  font-size: 18px;
  font-weight: 900;
}

/* =========================
  K. Profile / Subscription / Admin Buttons
========================= */
.worker-skin .ws-profile-box {
  text-align: center;
}

.worker-skin .ws-profile-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 999px;
  margin: 0 auto 14px;
}

.worker-skin .ws-profile-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ws-navy, #0f2a4d);
  font-size: 16px;
  font-weight: 900;
}

.worker-skin .ws-profile-box p {
  margin: 0 0 16px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.worker-skin .ws-profile-box .btn_subscription,
.worker-skin .ws-profile-box .button-subscription,
.worker-skin .ws-admin-btn,
.worker-skin .btn-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 38px;
  padding: 0 18px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.worker-skin .ws-profile-box .btn_subscription:hover,
.worker-skin .ws-profile-box .button-subscription:hover,
.worker-skin .ws-admin-btn:hover,
.worker-skin .btn-g:hover {
  border-color: var(--ws-blue, #2563eb);
  background: var(--ws-blue, #2563eb);
  color: #fff;
  text-decoration: none;
}

.worker-skin .ws-profile-box .btn_subscription:not(.following),
.worker-skin .ws-write-btn,
.worker-skin .btn-primary {
  border-color: var(--ws-navy, #0f2a4d);
  background: var(--ws-navy, #0f2a4d);
  color: #fff;
}

.worker-skin .btn_subscription strong {
  display: none;
}

.worker-skin .btn_subscription em {
  font-style: normal;
  font-weight: normal;
}

.worker-skin .ws-profile-btn-group:not(.member) {
  display: none;
}

.worker-skin .ws-profile-btn-group.member {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

/* =========================
  L. Recent / Popular / Archive Widgets
========================= */
.worker-skin .ws-widget-list li {
  list-style: none;
}

.worker-skin .ws-widget-list li a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}

.worker-skin .ws-widget-thumb {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: #f1f5f9;
}

.worker-skin .ws-widget-list strong {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.worker-skin .ws-widget-list em {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
}

.worker-skin .ws-tab-recent h3,
.worker-skin .ws-tab-popular h3 {
  margin: 18px 0 8px;
  color: var(--ws-navy, #0f2a4d);
  font-size: 15px;
  font-weight: 900;
}

.worker-skin .ws-tab-recent h3:first-child {
  margin-top: 0;
}

.worker-skin .ws-category-list .tt_category ul,
.worker-skin .ws-category-list .tt_category li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.worker-skin .ws-category-list .tt_category a {
  display: block;
  padding: 8px 0;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.worker-skin .ws-category-list .tt_category a:hover {
  color: var(--ws-blue, #2563eb);
}

.worker-skin .ws-category-list .tt_category .c_cnt {
  color: #94a3b8;
  font-size: 12px;
}

.worker-skin .ws-category-list .tt_category .sub_category_list {
  margin-left: 14px;
}

/* =========================
  M. Comment / Guestbook Compatibility
========================= */
.worker-skin .ws-comment-wrap ul,
.worker-skin .ws-guestbook ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.worker-skin .ws-comment-wrap .box-total,
.worker-skin .ws-guestbook .box-total {
  margin: 0 0 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
  color: #334155;
  font-size: 14px;
  font-weight: 900;
}

.worker-skin .ws-comment-wrap .item-reply,
.worker-skin .ws-guestbook .item-reply {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #edf2f7;
}

.worker-skin .ws-comment-wrap .thumbnail,
.worker-skin .ws-guestbook .thumbnail {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-right: 12px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
}

.worker-skin .ws-comment-wrap .box-content,
.worker-skin .ws-guestbook .box-content {
  width: calc(100% - 56px);
}

.worker-skin .ws-comment-wrap .box-meta,
.worker-skin .ws-guestbook .box-meta {
  margin-bottom: 4px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
}

.worker-skin .ws-comment-wrap .box-meta strong a,
.worker-skin .ws-guestbook .box-meta strong a {
  color: #334155;
  font-weight: 800;
  text-decoration: none;
}

.worker-skin .ws-comment-wrap .text,
.worker-skin .ws-guestbook .text {
  margin: 0 0 8px;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  word-break: break-word;
}

.worker-skin .ws-comment-wrap .list-reply-comment,
.worker-skin .ws-guestbook .list-reply-comment {
  width: 100%;
  margin: 22px 0 -16px 56px;
  padding: 22px;
  border-radius: 16px;
  background: #f8fafc;
}

.worker-skin .ws-comment-wrap textarea,
.worker-skin .ws-comment-wrap input,
.worker-skin .ws-guestbook textarea,
.worker-skin .ws-guestbook input {
  max-width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
}

.worker-skin .ws-comment-wrap .area-write .box-account,
.worker-skin .ws-guestbook .area-write .box-account {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.worker-skin .ws-comment-wrap .area-write .box-account input,
.worker-skin .ws-guestbook .area-write .box-account input {
  width: calc(50% - 6px);
  padding: 11px 14px;
}

.worker-skin .ws-comment-wrap .area-write .box-textarea textarea,
.worker-skin .ws-guestbook .area-write .box-textarea textarea {
  width: 100%;
  min-height: 122px;
  padding: 16px;
}

.worker-skin .ws-comment-wrap .btn_register,
.worker-skin .ws-guestbook .btn_register {
  min-width: 74px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--ws-navy, #0f2a4d);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

/* =========================
  N. Mobile Adjustments
========================= */
@media screen and (max-width: 768px) {
  .worker-skin #article-view,
  .worker-skin .article-view,
  .worker-skin .entry-content {
    font-size: 16px;
    line-height: 1.82;
  }

  .worker-skin #article-view h2,
  .worker-skin .article-view h2,
  .worker-skin .entry-content h2 {
    font-size: 23px;
    margin-top: 38px;
  }

  .worker-skin #article-view h3,
  .worker-skin .article-view h3,
  .worker-skin .entry-content h3 {
    font-size: 20px;
  }

  .worker-skin .toc-box {
    padding: 14px;
  }

  .worker-skin .cta-main {
    padding: 14px;
    font-size: 16px;
  }

  .worker-skin #article-view figure.imageblock.floatLeft,
  .worker-skin #article-view figure.imageblock.floatRight {
    float: none;
    margin-left: 0;
    margin-right: 0;
  }

  .worker-skin #article-view figure[data-ke-type='opengraph'] a {
    height: 96px;
  }

  .worker-skin #article-view figure[data-ke-type='opengraph'] div.og-image {
    flex-basis: 96px;
    width: 96px;
    height: 96px;
  }

  .worker-skin #article-view figure[data-ke-type='opengraph'] div.og-text {
    height: 96px;
    padding: 12px 14px;
  }

  .worker-skin #article-view figure[data-ke-type='opengraph'] p.og-title {
    font-size: 15px;
  }

  .worker-skin #article-view figure[data-ke-type='opengraph'] .og-desc {
    display: none;
  }

  .worker-skin #article-view iframe {
    width: 100%;
    max-width: 100%;
  }

  .worker-skin #article-view figure[data-ke-type='video'] iframe {
    width: 100%;
    height: 56vw;
  }

  .worker-skin #article-view figure.imageslideblock div.image-container {
    min-width: 100%;
    width: 100%;
    max-height: 100%;
  }

  .worker-skin .ws-article-page li {
    display: block;
  }

  .worker-skin .ws-article-page li span {
    display: block;
    margin-bottom: 4px;
  }

  .worker-skin .ws-article-page li a {
    display: block;
  }

  .worker-skin .ws-comment-wrap .area-write .box-account,
  .worker-skin .ws-guestbook .area-write .box-account {
    display: block;
  }

  .worker-skin .ws-comment-wrap .area-write .box-account input,
  .worker-skin .ws-guestbook .area-write .box-account input {
    width: 100%;
    margin-bottom: 8px;
  }

  .worker-skin .ws-comment-wrap .list-reply-comment,
  .worker-skin .ws-guestbook .list-reply-comment {
    margin-left: 0;
    padding: 18px;
  }

  .worker-skin .ws-widget-list li a {
    align-items: flex-start;
  }
}
/* =========================================================
  Worker Insight Skin / 카테고리 7개 + 소개카드 3개 유지 CSS
  사용법:
  style.css 맨 아래에 추가하세요.
  목적:
  - 7개 카테고리 배너를 컴팩트하게 정리
  - 기존 소개카드 3개는 그대로 유지
  - 첫 화면이 과하게 길어지지 않도록 여백 조정
========================================================= */

/* 카테고리 섹션 전체 */
.ws-category-shortcut-expanded {
  padding: 42px 0 32px;
  background: #ffffff;
  border-bottom: 1px solid var(--ws-border, #e5e7eb);
}

/* 카테고리 제목 영역 */
.ws-section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.ws-section-head h2 {
  margin: 0;
  color: var(--ws-navy, #0f2a4d);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.ws-section-head p:not(.ws-eyebrow) {
  margin: 10px 0 0;
  color: var(--ws-muted, #6b7280);
  font-size: 15px;
  line-height: 1.7;
}

/* 7개 카테고리 그리드 */
.ws-category-grid-7 {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  border-left: 0;
}

.ws-category-grid-7 .ws-category-item {
  min-height: 132px;
  padding: 18px 10px;
  border: 1px solid var(--ws-border, #e5e7eb);
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(15, 42, 77, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ws-category-grid-7 .ws-category-item:first-child {
  border-left: 1px solid var(--ws-border, #e5e7eb);
}

.ws-category-grid-7 .ws-category-item:hover {
  transform: translateY(-3px);
  border-color: #bfd4ff;
  background: #f8fbff;
  box-shadow: 0 14px 30px rgba(15, 42, 77, 0.09);
}

.ws-category-grid-7 .ws-category-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.ws-category-grid-7 .ws-category-item strong {
  display: block;
  color: var(--ws-navy, #0f2a4d);
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ws-category-grid-7 .ws-category-item em {
  display: block;
  margin-top: 5px;
  color: var(--ws-muted, #6b7280);
  font-size: 11.5px;
  line-height: 1.45;
  font-style: normal;
}

/* 소개카드 3개 영역은 유지하되 여백을 조금 줄임 */
.ws-home-intro-inner {
  padding-top: 30px;
  padding-bottom: 12px;
}

.ws-intro-card {
  min-height: 150px;
}

/* 반응형 */
@media (max-width: 1180px) {
  .ws-category-grid-7 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .ws-category-grid-7 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .ws-category-shortcut-expanded {
    padding: 32px 0 24px;
  }

  .ws-section-head {
    margin-bottom: 18px;
    text-align: left;
  }

  .ws-section-head h2 {
    font-size: 24px;
  }

  .ws-category-grid-7 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ws-category-grid-7 .ws-category-item {
    min-height: auto;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "icon title"
      "icon desc";
    column-gap: 12px;
    align-items: center;
    padding: 15px 16px;
    text-align: left;
  }

  .ws-category-grid-7 .ws-category-icon {
    grid-area: icon;
    margin: 0;
  }

  .ws-category-grid-7 .ws-category-item strong {
    grid-area: title;
    font-size: 15px;
  }

  .ws-category-grid-7 .ws-category-item em {
    grid-area: desc;
    font-size: 12px;
  }

  .ws-home-intro-inner {
    padding-top: 24px;
  }
}
/* =========================================================
  Worker Insight Skin / 공지사항·페이지 본문 정렬 수정 CSS
  사용법: style.css 맨 아래에 추가
  목적:
  - 푸터의 /notice 진입 시 공지글 본문이 왼쪽으로 치우치는 현상 수정
  - 일반 페이지, 공지글, 보호글을 모두 동일한 중앙 본문 폭으로 정렬
========================================================= */

/* 공지글 / 페이지 / 보호글 컨테이너 중앙 정렬 강제 */
.worker-skin .ws-notice-post .ws-post-container,
.worker-skin .ws-page-post .ws-post-container,
.worker-skin .ws-protected .ws-post-container,
.worker-skin #tt-body-page .ws-post-container,
.worker-skin #tt-body-page .ws-post-container {
  width: min(820px, calc(100% - 40px)) !important;
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 54px !important;
  padding-bottom: 64px !important;
}

/* 공지글 전체 영역이 왼쪽으로 붙는 것을 방지 */
.worker-skin .ws-notice-post,
.worker-skin .ws-page-post {
  width: 100% !important;
  display: block !important;
  background: #ffffff !important;
}

/* 공지글 제목 영역 */
.worker-skin .ws-notice-post .ws-post-header,
.worker-skin .ws-page-post .ws-post-header {
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 32px !important;
  text-align: left !important;
}

/* 공지글 본문 영역 */
.worker-skin .ws-notice-post .ws-post-content,
.worker-skin .ws-page-post .ws-post-content {
  width: 100% !important;
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 17px !important;
  line-height: 1.9 !important;
}

/* 티스토리 공지 본문 내부 이미지/박스 폭 보정 */
.worker-skin .ws-notice-post .ws-post-content img,
.worker-skin .ws-page-post .ws-post-content img,
.worker-skin .ws-notice-post .ws-post-content iframe,
.worker-skin .ws-page-post .ws-post-content iframe {
  max-width: 100% !important;
}

/* 공지글 안 카드형 박스가 너무 좁아 보이지 않게 보정 */
.worker-skin .ws-notice-post .ws-post-content > div,
.worker-skin .ws-page-post .ws-post-content > div {
  max-width: 100%;
}

/* /notice 화면에서 하단 위젯이 너무 위로 붙는 경우 보정 */
#tt-body-page .ws-bottom-widgets,
#tt-body-index.notice-index .ws-bottom-widgets {
  margin-top: 40px;
}

/* 모바일 공지글 보정 */
@media (max-width: 768px) {
  .worker-skin .ws-notice-post .ws-post-container,
  .worker-skin .ws-page-post .ws-post-container,
  .worker-skin .ws-protected .ws-post-container {
    width: min(100% - 32px, 820px) !important;
    padding-top: 36px !important;
    padding-bottom: 48px !important;
  }

  .worker-skin .ws-notice-post .ws-post-title,
  .worker-skin .ws-page-post .ws-post-title {
    font-size: 30px !important;
    line-height: 1.35 !important;
  }

  .worker-skin .ws-notice-post .ws-post-content,
  .worker-skin .ws-page-post .ws-post-content {
    font-size: 16px !important;
    line-height: 1.85 !important;
  }
}
/* 카테고리 / 검색 / 태그 / 보관함 페이지에서 히어로와 소개카드 숨김 */
#tt-body-category .ws-main-hero,
#tt-body-category .ws-home-intro,
#tt-body-search .ws-main-hero,
#tt-body-search .ws-home-intro,
#tt-body-tag .ws-main-hero,
#tt-body-tag .ws-home-intro,
#tt-body-archive .ws-main-hero,
#tt-body-archive .ws-home-intro {
  display: none !important;
}

/* 공지사항 목록 / 공지사항 상세 화면에서 히어로와 소개카드 숨김 */
.notice-index .ws-main-hero,
.notice-index .ws-home-intro,
#tt-body-notice .ws-main-hero,
#tt-body-notice .ws-home-intro,
#tt-body-page.notice-index .ws-main-hero,
#tt-body-page.notice-index .ws-home-intro {
  display: none !important;
}

/* 일반 글/일반 페이지에서도 혹시 히어로·소개카드가 노출될 경우 방지 */
#tt-body-page .ws-main-hero,
#tt-body-page .ws-home-intro {
  display: none !important;
}

/* 하위 페이지에서는 히어로가 사라지므로 상단 여백 정리 */
#tt-body-category .ws-category-shortcut-expanded,
#tt-body-search .ws-category-shortcut-expanded,
#tt-body-tag .ws-category-shortcut-expanded,
#tt-body-archive .ws-category-shortcut-expanded {
  padding-top: 34px !important;
}

/* 공지사항에서는 카테고리 배너까지 숨기는 것을 권장 */
.notice-index .ws-category-shortcut,
#tt-body-notice .ws-category-shortcut,
#tt-body-page.notice-index .ws-category-shortcut {
  display: none !important;
}

/* 공지사항 본문 여백 보정 */
.notice-index .ws-notice-post .ws-post-container,
#tt-body-notice .ws-notice-post .ws-post-container,
#tt-body-page.notice-index .ws-notice-post .ws-post-container {
  padding-top: 48px !important;
}

@media (max-width: 768px) {
  #tt-body-category .ws-category-shortcut-expanded,
  #tt-body-search .ws-category-shortcut-expanded,
  #tt-body-tag .ws-category-shortcut-expanded,
  #tt-body-archive .ws-category-shortcut-expanded {
    padding-top: 26px !important;
  }

  .notice-index .ws-notice-post .ws-post-container,
  #tt-body-notice .ws-notice-post .ws-post-container,
  #tt-body-page.notice-index .ws-notice-post .ws-post-container {
    padding-top: 34px !important;
  }
}
/* =========================================================
  Worker Insight Skin / 공지사항 페이지 최종 정리 패치
  사용법: style.css 맨 아래에 추가

  목적:
  1. 공지사항(/notice) 진입 시 상단 히어로 중복 노출 제거
  2. 공지사항(/notice) 진입 시 카테고리 배너 중복 노출 제거
  3. 공지사항(/notice) 진입 시 소개카드 3개 중복 노출 제거
  4. 공지사항 본문을 일반 글처럼 중앙 정렬
  5. 공지사항 본문 폭, 제목, 문단, 이미지, 광고 영역 보정
========================================================= */

/* =========================
  1. 공지사항 페이지 상단 중복 영역 숨김
========================= */
body.worker-skin.notice-index .ws-main-hero,
body.worker-skin.notice-index .ws-category-shortcut,
body.worker-skin.notice-index .ws-home-intro,
body.worker-skin.notice-view .ws-main-hero,
body.worker-skin.notice-view .ws-category-shortcut,
body.worker-skin.notice-view .ws-home-intro,
#tt-body-notice .ws-main-hero,
#tt-body-notice .ws-category-shortcut,
#tt-body-notice .ws-home-intro,
#tt-body-page.notice-index .ws-main-hero,
#tt-body-page.notice-index .ws-category-shortcut,
#tt-body-page.notice-index .ws-home-intro,
#tt-body-page.notice-view .ws-main-hero,
#tt-body-page.notice-view .ws-category-shortcut,
#tt-body-page.notice-view .ws-home-intro,
#tt-body-index.notice-index .ws-main-hero,
#tt-body-index.notice-index .ws-category-shortcut,
#tt-body-index.notice-index .ws-home-intro {
  display: none !important;
}

/* 공지글이 출력되는 경우에는 홈 인트로와 카테고리 배너를 다시 숨김 */
body.worker-skin:has(.ws-notice-post) .ws-main-hero,
body.worker-skin:has(.ws-notice-post) .ws-category-shortcut,
body.worker-skin:has(.ws-notice-post) .ws-home-intro {
  display: none !important;
}

/* =========================
  2. 공지사항 본문 전체 중앙 정렬
========================= */
.worker-skin .ws-notice-post {
  width: 100% !important;
  display: block !important;
  background: #ffffff !important;
}

.worker-skin .ws-notice-post .ws-post-container {
  width: min(820px, calc(100% - 40px)) !important;
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 54px !important;
  padding-bottom: 64px !important;
}

/* =========================
  3. 공지사항 제목 영역 정리
========================= */
.worker-skin .ws-notice-post .ws-post-header {
  width: 100% !important;
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 34px !important;
  text-align: left !important;
}

.worker-skin .ws-notice-post .ws-eyebrow {
  margin-bottom: 12px !important;
  color: var(--ws-blue, #2563eb) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
}

.worker-skin .ws-notice-post .ws-post-title {
  margin: 0 0 16px !important;
  color: var(--ws-navy, #0f2a4d) !important;
  font-size: clamp(30px, 4vw, 44px) !important;
  line-height: 1.32 !important;
  letter-spacing: -0.06em !important;
}

.worker-skin .ws-notice-post .ws-post-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  color: var(--ws-muted, #6b7280) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* =========================
  4. 공지사항 본문 영역 정리
========================= */
.worker-skin .ws-notice-post .ws-post-content,
.worker-skin .ws-notice-post #article-view,
.worker-skin .ws-notice-post .article-view {
  width: 100% !important;
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: #1f2937 !important;
  font-size: 17px !important;
  line-height: 1.9 !important;
  word-break: keep-all !important;
}

.worker-skin .ws-notice-post .ws-post-content p,
.worker-skin .ws-notice-post #article-view p,
.worker-skin .ws-notice-post .article-view p {
  margin: 0 0 18px !important;
  color: #374151 !important;
  line-height: 1.9 !important;
}

.worker-skin .ws-notice-post .ws-post-content h2,
.worker-skin .ws-notice-post #article-view h2,
.worker-skin .ws-notice-post .article-view h2 {
  margin-top: 46px !important;
  margin-bottom: 18px !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid var(--ws-border, #e5e7eb) !important;
  color: var(--ws-navy, #0f2a4d) !important;
  font-size: 26px !important;
  line-height: 1.45 !important;
  font-weight: 900 !important;
}

.worker-skin .ws-notice-post .ws-post-content h3,
.worker-skin .ws-notice-post #article-view h3,
.worker-skin .ws-notice-post .article-view h3 {
  margin-top: 34px !important;
  margin-bottom: 14px !important;
  padding-left: 12px !important;
  border-left: 4px solid var(--ws-blue, #2563eb) !important;
  color: var(--ws-navy, #0f2a4d) !important;
  font-size: 22px !important;
  line-height: 1.5 !important;
  font-weight: 900 !important;
}

/* =========================
  5. 공지사항 내부 카드/이미지/표/iframe 폭 보정
========================= */
.worker-skin .ws-notice-post .ws-post-content img,
.worker-skin .ws-notice-post #article-view img,
.worker-skin .ws-notice-post .article-view img,
.worker-skin .ws-notice-post .ws-post-content iframe,
.worker-skin .ws-notice-post #article-view iframe,
.worker-skin .ws-notice-post .article-view iframe {
  max-width: 100% !important;
  height: auto;
}

.worker-skin .ws-notice-post .ws-post-content > div,
.worker-skin .ws-notice-post #article-view > div,
.worker-skin .ws-notice-post .article-view > div {
  max-width: 100% !important;
}

.worker-skin .ws-notice-post table {
  width: 100% !important;
  max-width: 100% !important;
}

.worker-skin .ws-notice-post .ws-table-scroll {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

/* =========================
  6. 공지사항 광고/공백 보정
========================= */
.worker-skin .ws-notice-post .ws-ad-wrap,
.worker-skin .ws-notice-post .ws-ad-box,
.worker-skin .ws-notice-post .adsense-box {
  max-width: 100% !important;
}

.worker-skin .ws-notice-post .adsense-box {
  margin: 30px 0 !important;
  text-align: center !important;
  overflow: hidden !important;
}

/* 공지사항 페이지 하단 위젯과 푸터 간격 */
body.worker-skin.notice-index .ws-bottom-widgets,
body.worker-skin.notice-view .ws-bottom-widgets,
#tt-body-notice .ws-bottom-widgets,
#tt-body-page.notice-index .ws-bottom-widgets,
#tt-body-page.notice-view .ws-bottom-widgets,
body.worker-skin:has(.ws-notice-post) .ws-bottom-widgets {
  margin-top: 24px !important;
}

/* =========================
  7. 공지사항에서는 불필요한 목록형 광고 중복 방지
  주의: 본문 내 광고는 유지, 목록 상단/하단 광고만 숨김
========================= */
body.worker-skin:has(.ws-notice-post) .ws-ad-list-upper,
body.worker-skin:has(.ws-notice-post) .ws-ad-list-lower,
.notice-index .ws-ad-list-upper,
.notice-index .ws-ad-list-lower,
.notice-view .ws-ad-list-upper,
.notice-view .ws-ad-list-lower {
  display: none !important;
}

/* =========================
  8. 모바일 보정
========================= */
@media (max-width: 768px) {
  .worker-skin .ws-notice-post .ws-post-container {
    width: min(100% - 32px, 820px) !important;
    padding-top: 36px !important;
    padding-bottom: 48px !important;
  }

  .worker-skin .ws-notice-post .ws-post-header {
    margin-bottom: 26px !important;
  }

  .worker-skin .ws-notice-post .ws-post-title {
    font-size: 30px !important;
    line-height: 1.35 !important;
  }

  .worker-skin .ws-notice-post .ws-post-content,
  .worker-skin .ws-notice-post #article-view,
  .worker-skin .ws-notice-post .article-view {
    font-size: 16px !important;
    line-height: 1.85 !important;
  }

  .worker-skin .ws-notice-post .ws-post-content h2,
  .worker-skin .ws-notice-post #article-view h2,
  .worker-skin .ws-notice-post .article-view h2 {
    font-size: 24px !important;
    margin-top: 38px !important;
  }

  .worker-skin .ws-notice-post .ws-post-content h3,
  .worker-skin .ws-notice-post #article-view h3,
  .worker-skin .ws-notice-post .article-view h3 {
    font-size: 20px !important;
  }
}
/* 메인 히어로 - 전체 글 보기 버튼 가독성 강화 */
.worker-skin .ws-main-hero .ws-btn-primary {
  background: #0f2a4d !important;
  color: #ffffff !important;
  border: 1px solid #0f2a4d !important;
}

.worker-skin .ws-main-hero .ws-btn-primary:hover {
  background: #081827 !important;
  color: #ffffff !important;
}