
/* ========================================
   소마코 Single Post v2 디자인 추가분
   추가 날짜: 2026-02-19
   설명: Prototype v2 디자인 → 실제 WP 적용
   사용법: 기존 style.css 맨 끝에 이 전체를 붙여넣기
======================================== */


/* ========================================
   0️⃣ CSS 변수 (기존에 없는 것만)
======================================== */

.single-post-article {
  --smk-red: #d32f2f;
  --smk-red-dark: #b71c1c;
  --smk-red-light: #ffebee;
  --smk-red-soft: #fff5f5;
  --smk-dark: #09090b;
  --smk-gray-900: #18181b;
  --smk-gray-800: #27272a;
  --smk-gray-700: #3f3f46;
  --smk-gray-600: #52525b;
  --smk-gray-500: #71717a;
  --smk-gray-400: #a1a1aa;
  --smk-gray-300: #d4d4d8;
  --smk-gray-200: #e4e4e7;
  --smk-gray-100: #f4f4f5;
  --smk-gray-50: #fafafa;
  --smk-blue: #2563eb;
  --smk-blue-light: #eff6ff;
  --smk-green: #16a34a;
  --smk-green-light: #f0fdf4;
  --smk-amber: #d97706;
  --smk-amber-light: #fffbeb;
  --smk-purple: #7c3aed;
  --smk-purple-light: #f5f3ff;
}


/* ========================================
   1️⃣ 헤더 개선 — 부제목, 바이라인
======================================== */

/* 카테고리 배지 → 채움형 */
.single-post-article-category {
  border: none !important;
  background: var(--smk-red) !important;
  color: white !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 0.25rem 0.625rem !important;
  border-radius: 0.25rem !important;
  letter-spacing: 0.02em !important;
}

/* 부제목 */
.single-post-article-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--smk-gray-600);
  margin: 0;
  margin-bottom: 1.5rem;
  word-break: keep-all;
  font-weight: 400;
}

/* 바이라인 에디터 역할 */
.single-post-article-author-role {
  font-size: 0.75rem;
  color: var(--smk-gray-400);
  font-weight: 400;
}

.single-post-article-author-name-wrap {
  display: flex;
  flex-direction: column;
}

/* 읽기 시간 */
.single-post-article-reading-time {
  font-size: 0.75rem;
  color: var(--smk-gray-400);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: auto;
  margin-right: 1rem;
}

.single-post-article-reading-time svg {
  width: 0.875rem;
  height: 0.875rem;
}


/* ========================================
   2️⃣ 에디터 프로필 카드 (글 하단)
======================================== */

.single-post-editor-profile {
  border-top: 1px solid var(--smk-gray-200);
  padding-top: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.editor-card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--smk-gray-50);
  border: 1px solid var(--smk-gray-200);
  border-radius: 1rem;
}

.editor-card-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--smk-gray-200);
}

.editor-card-avatar img {
  width: 100% !important;
  height: 100% !important;
  max-width: 4.5rem !important;
  max-height: 4.5rem !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
}

.editor-card-info {
  flex: 1;
  min-width: 0;
}

.editor-card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--smk-red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.125rem;
}

.editor-card-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--smk-dark);
  margin-bottom: 0.25rem;
}

.editor-card-bio {
  font-size: 0.8125rem;
  color: var(--smk-gray-500);
  line-height: 1.5;
  margin: 0;
}


/* ========================================
   3️⃣ 광고 지면 (AD Zone)
======================================== */

.single-post-ad-zone {
  margin: 2rem 0;
}

.ad-zone-inner {
  border: 1px solid var(--smk-gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  background: var(--smk-gray-50);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-zone-inner img {
  width: 100%;
  display: block;
}

.ad-zone-badge {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--smk-gray-400);
  background: rgba(255,255,255,0.85);
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
}

.ad-zone-placeholder {
  font-size: 0.75rem;
  color: var(--smk-gray-300);
  text-align: center;
}


/* ========================================
   4️⃣ 인콘텐츠 뉴스레터 CTA
======================================== */

.single-post-newsletter-cta {
  margin: 2.5rem 0;
}

.newsletter-cta-inner {
  background: var(--smk-dark);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
}

.newsletter-cta-inner h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin: 0 0 0.375rem;
}

.newsletter-cta-inner p {
  font-size: 0.875rem;
  color: var(--smk-gray-400);
  margin: 0 0 1.25rem;
}

.newsletter-cta-form {
  display: flex;
  gap: 0.5rem;
  max-width: 24rem;
  margin: 0 auto;
}

.newsletter-cta-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--smk-gray-800);
  border-radius: 0.5rem;
  background: var(--smk-gray-900);
  color: white;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}

.newsletter-cta-input::placeholder {
  color: var(--smk-gray-600);
}

.newsletter-cta-input:focus {
  border-color: var(--smk-red);
}

.newsletter-cta-btn {
  padding: 0.75rem 1.25rem;
  background: var(--smk-red);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.newsletter-cta-btn:hover {
  background: var(--smk-red-dark);
}


/* ========================================
   5️⃣ 관련 글 → 3열 카드 그리드
======================================== */

.single-post-article-related-posts-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
}

.single-post-article-related-post {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.single-post-article-related-post:hover {
  box-shadow: none !important;
  transform: translateY(-2px);
  transition: transform 0.2s;
}

.single-post-article-related-post-inner {
  flex-direction: column !important;
}

.single-post-article-related-post-thumbnail {
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 0.75rem !important;
  margin-bottom: 0.625rem;
}

.single-post-article-related-post-thumbnail img {
  border-radius: 0.75rem;
}

.single-post-article-related-post-info {
  padding: 0 !important;
  height: auto !important;
}

.single-post-article-related-post-category {
  border: none !important;
  padding: 0 !important;
  color: var(--smk-red) !important;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  margin-bottom: 0.25rem !important;
}

.single-post-article-related-post-title {
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}

.single-post-article-related-posts-title {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--smk-gray-400) !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.single-post-article-related-posts-title::before {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--smk-red);
  border-radius: 0.125rem;
  flex-shrink: 0;
}


/* ========================================
   6️⃣ 콘텐츠 컴포넌트 — Gutenberg HTML 블록용
   (에디터가 복붙하여 사용)
======================================== */

/* --- 형광 밑줄 --- */
.entry-content .hl,
.hl {
  background: linear-gradient(to top, #fff176 0%, #fff176 40%, transparent 40%) !important;
  padding: 0 0.125rem;
  display: inline;
  max-width: none !important;
  max-height: none !important;
}

/* --- 비교 카드 --- */
.entry-content .comp-compare {
  margin: 2rem 0;
  padding: 0;
  max-width: 100%;
}

.compare-card {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--smk-gray-200);
}

.compare-card-header {
  padding: 0.75rem 1rem;
  background: var(--smk-gray-50);
  border-bottom: 1px solid var(--smk-gray-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare-card-header-icon {
  font-size: 0.875rem;
}

.compare-card-header-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--smk-gray-700);
}

.compare-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-col {
  padding: 1.25rem;
}

.compare-col:first-child {
  border-right: 1px solid var(--smk-gray-200);
  background: var(--smk-gray-50);
}

.compare-col:last-child {
  background: var(--smk-red-soft);
}

.compare-col-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 0.2rem;
}

.compare-col:first-child .compare-col-tag {
  color: var(--smk-gray-500);
  background: var(--smk-gray-200);
}

.compare-col:last-child .compare-col-tag {
  color: var(--smk-red);
  background: rgba(211, 47, 47, 0.1);
}

.compare-item {
  margin-bottom: 0.75rem;
}

.compare-item:last-child {
  margin-bottom: 0;
}

.compare-item-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--smk-gray-400);
  margin-bottom: 0.125rem;
}

.compare-item-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--smk-dark);
  line-height: 1.45;
  word-break: keep-all;
}

.compare-col:last-child .compare-item-value {
  color: var(--smk-red-dark);
}


/* --- 파이프라인 (수직) --- */
.entry-content .comp-pipeline {
  margin: 2rem 0;
  padding: 0;
  max-width: 100%;
}

.pipeline {
  border-radius: 0.75rem;
  border: 1px solid var(--smk-gray-200);
  overflow: hidden;
}

.pipeline-header {
  padding: 0.75rem 1rem;
  background: var(--smk-gray-50);
  border-bottom: 1px solid var(--smk-gray-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pipeline-header-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--smk-gray-700);
}

.pipeline-body {
  padding: 1.25rem;
}

.pipeline-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

.pipeline-step:not(:last-child) {
  padding-bottom: 1.5rem;
}

.pipeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 2.75rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--smk-gray-200), var(--smk-gray-100));
}

.pipeline-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pipeline-icon--spark { background: #fef3c7; }
.pipeline-icon--target { background: #dbeafe; }
.pipeline-icon--cart { background: #dcfce7; }
.pipeline-icon--globe { background: #f3e8ff; }
.pipeline-icon--red { background: var(--smk-red-light); }
.pipeline-icon--blue { background: var(--smk-blue-light); }
.pipeline-icon--green { background: var(--smk-green-light); }
.pipeline-icon--amber { background: var(--smk-amber-light); }
.pipeline-icon--purple { background: var(--smk-purple-light); }

.pipeline-content {
  flex: 1;
  min-width: 0;
  padding-top: 0.125rem;
}

.pipeline-role {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.pipeline-role--spark { color: var(--smk-amber); }
.pipeline-role--target { color: var(--smk-blue); }
.pipeline-role--cart { color: var(--smk-green); }
.pipeline-role--globe { color: var(--smk-purple); }

.pipeline-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--smk-dark);
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.pipeline-desc {
  font-size: 0.8125rem;
  color: var(--smk-gray-500);
  line-height: 1.55;
  word-break: keep-all;
}


/* --- 수치 하이라이트 --- */
.entry-content .comp-stats {
  margin: 2rem 0;
  padding: 0;
  max-width: 100%;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stat-row + .stat-row {
  margin-top: 0.75rem;
}

.stat-card {
  padding: 1.125rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--smk-gray-200);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.stat-card--red::before { background: var(--smk-red); }
.stat-card--blue::before { background: var(--smk-blue); }
.stat-card--green::before { background: var(--smk-green); }
.stat-card--amber::before { background: var(--smk-amber); }

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--smk-gray-400);
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--smk-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-unit {
  font-size: 0.9375rem;
  font-weight: 700;
}

.stat-sub {
  font-size: 0.6875rem;
  color: var(--smk-gray-400);
  margin-top: 0.3rem;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.15rem 0.375rem;
  border-radius: 0.2rem;
  margin-top: 0.375rem;
}

.stat-badge--up { color: var(--smk-green); background: var(--smk-green-light); }
.stat-badge--hot { color: var(--smk-red); background: var(--smk-red-light); }


/* --- 인사이트 콜아웃 --- */
.entry-content .comp-insight {
  margin: 2rem 0;
  padding: 0;
  max-width: 100%;
}

.insight-callout {
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--smk-red);
  background: var(--smk-red-soft);
}

.insight-callout-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smk-red);
  margin-bottom: 0.5rem;
}

.insight-callout-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--smk-dark);
  line-height: 1.65;
  word-break: keep-all;
  margin: 0;
}


/* --- 인용 블록 --- */
.entry-content .comp-quote {
  margin: 2.5rem 0;
  padding: 0;
  max-width: 100%;
}

.quote-block {
  padding: 1.5rem;
  background: var(--smk-gray-50);
  border-radius: 0.75rem;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--smk-red);
  opacity: 0.15;
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  line-height: 1;
}

.quote-block-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--smk-dark);
  line-height: 1.6;
  word-break: keep-all;
  padding-left: 0.25rem;
  margin: 0;
}

.quote-block-source {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  color: var(--smk-gray-400);
  font-weight: 500;
  padding-left: 0.25rem;
}


/* --- 액션 스텝 --- */
.entry-content .comp-steps {
  margin: 2rem 0;
  padding: 0;
  max-width: 100%;
}

.action-steps {
  border-radius: 0.75rem;
  border: 1px solid var(--smk-gray-200);
  overflow: hidden;
}

.action-steps-header {
  padding: 0.875rem 1.25rem;
  background: var(--smk-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-steps-header-icon {
  font-size: 0.875rem;
}

.action-steps-header-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: white;
}

.action-step {
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--smk-gray-100);
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.action-step:last-child {
  border-bottom: none;
}

.action-step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  background: var(--smk-red);
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.action-step-content {
  flex: 1;
}

.action-step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--smk-dark);
  margin-bottom: 0.25rem;
  line-height: 1.4;
  word-break: keep-all;
}

.action-step-desc {
  font-size: 0.8125rem;
  color: var(--smk-gray-500);
  line-height: 1.6;
  word-break: keep-all;
  margin: 0;
}


/* --- 소마코 콕 --- */
.entry-content .comp-somakok {
  margin: 3rem 0 2rem;
  padding: 0;
  max-width: 100%;
}

.somako-kok {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--smk-dark);
  position: relative;
}

.somako-kok::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--smk-red);
}

.somako-kok-header {
  padding: 1.25rem 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.somako-kok-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
}

.somako-kok-title span {
  font-size: 1.125rem;
}

.somako-kok-brand {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--smk-gray-500);
  text-transform: uppercase;
}

.somako-kok-body {
  padding: 1rem 1.5rem 1.5rem;
}

.somako-kok-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
}

.somako-kok-item:not(:last-child) {
  border-bottom: 1px solid var(--smk-gray-800);
}

.somako-kok-check {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 0.3rem;
  background: var(--smk-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.somako-kok-check svg {
  width: 0.75rem;
  height: 0.75rem;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.somako-kok-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--smk-gray-300);
  line-height: 1.65;
  word-break: keep-all;
  margin: 0;
}

.somako-kok-text strong {
  color: white;
  font-weight: 700;
}


/* ========================================
   7️⃣ 본문 타이포그래피 보강
======================================== */

/* 본문 기본 스타일 보강 */
.entry-content p {
  word-break: keep-all !important;
}

/* 본문 strong */
.entry-content strong {
  font-weight: 700;
  color: var(--smk-dark);
}


/* ========================================
   8️⃣ 모바일 반응형 — v2 컴포넌트
======================================== */

@media (max-width: 770px) {

  /* 부제목 */
  .single-post-article-subtitle {
    font-size: 0.9375rem;
  }

  /* 읽기 시간 */
  .single-post-article-reading-time {
    display: none;
  }

  /* 에디터 프로필 카드 */
  .editor-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  /* 관련 글 1열 */
  .single-post-article-related-posts-list {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* 뉴스레터 CTA */
  .newsletter-cta-inner {
    padding: 1.5rem;
  }

  .newsletter-cta-form {
    flex-direction: column;
  }

  /* 비교 카드 */
  .compare-columns {
    grid-template-columns: 1fr;
  }

  .compare-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--smk-gray-200);
  }

  /* 수치 카드 */
  .stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }

  /* 컴포넌트 여백 */
  .entry-content .comp-compare,
  .entry-content .comp-pipeline,
  .entry-content .comp-stats,
  .entry-content .comp-insight,
  .entry-content .comp-quote,
  .entry-content .comp-steps,
  .entry-content .comp-somakok {
    margin: 1.5rem 0;
  }
}

@media (max-width: 375px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   9️⃣ 모바일 보호 패치
   문제: style.css의 `body .entry-content div { width:100%!important; padding:0!important; }`가
         v2 컴포넌트 내부 div를 모두 파괴함
   해결: 더 높은 specificity (.entry-content .comp-xxx div = 0,0,2,1)로
         style.css (body .entry-content div = 0,0,1,2)를 덮어씀
   날짜: 2025-02-19
======================================== */

@media (max-width: 770px) {

  /* ── 전체 컴포넌트 div 보호 ── */
  .entry-content .comp-pipeline div,
  .entry-content .comp-compare div,
  .entry-content .comp-stats div,
  .entry-content .comp-insight div,
  .entry-content .comp-quote div,
  .entry-content .comp-steps div,
  .entry-content .comp-somakok div {
    width: auto !important;
    max-width: none !important;
    padding-left: unset !important;
    padding-right: unset !important;
    margin-left: unset !important;
    margin-right: unset !important;
    word-break: normal !important;
    hyphens: manual !important;
  }

  /* ── 전체 컴포넌트 p 보호 ── */
  .entry-content .comp-pipeline p,
  .entry-content .comp-compare p,
  .entry-content .comp-stats p,
  .entry-content .comp-insight p,
  .entry-content .comp-quote p,
  .entry-content .comp-steps p,
  .entry-content .comp-somakok p {
    width: auto !important;
    max-width: none !important;
    padding-left: unset !important;
    padding-right: unset !important;
  }


  /* ========================================
     파이프라인 모바일
  ======================================== */

  .entry-content .comp-pipeline {
    margin: 1.5rem 0 !important;
  }

  .entry-content .comp-pipeline .pipeline-body {
    padding: 1rem !important;
  }

  .entry-content .comp-pipeline .pipeline-icon {
    width: 2rem !important;
    height: 2rem !important;
    min-width: 2rem !important;
    font-size: 0.9375rem !important;
    border-radius: 0.5rem !important;
    flex-shrink: 0 !important;
  }

  .entry-content .comp-pipeline .pipeline-step {
    gap: 0.75rem !important;
  }

  .entry-content .comp-pipeline .pipeline-step:not(:last-child) {
    padding-bottom: 1.25rem !important;
  }

  /* 세로선 위치 조정 (아이콘 작아졌으므로) */
  .entry-content .comp-pipeline .pipeline-step:not(:last-child)::before {
    left: 1rem !important;
    top: 2.25rem !important;
  }

  .entry-content .comp-pipeline .pipeline-role {
    font-size: 0.625rem !important;
  }

  .entry-content .comp-pipeline .pipeline-title {
    font-size: 0.875rem !important;
  }

  .entry-content .comp-pipeline .pipeline-desc {
    font-size: 0.8125rem !important;
  }

  .entry-content .comp-pipeline .pipeline-header {
    padding: 0.625rem 1rem !important;
  }


  /* ========================================
     비교 카드 모바일
  ======================================== */

  .entry-content .comp-compare .compare-col {
    padding: 1rem !important;
  }


  /* ========================================
     수치 카드 모바일
  ======================================== */

  .entry-content .comp-stats .stat-card {
    padding: 0.875rem 1rem !important;
  }

  .entry-content .comp-stats .stat-value {
    font-size: 1.5rem !important;
  }


  /* ========================================
     인사이트 콜아웃 모바일
  ======================================== */

  .entry-content .comp-insight .insight-callout {
    padding: 1rem 1.25rem !important;
  }


  /* ========================================
     인용 블록 모바일
  ======================================== */

  .entry-content .comp-quote .quote-block {
    padding: 1.25rem !important;
  }

  .entry-content .comp-quote .quote-block-text {
    font-size: 1rem !important;
  }


  /* ========================================
     액션 스텝 모바일
  ======================================== */

  .entry-content .comp-steps .action-step {
    padding: 1rem 1rem !important;
    gap: 0.75rem !important;
  }

  .entry-content .comp-steps .action-step-num {
    width: 1.5rem !important;
    height: 1.5rem !important;
    min-width: 1.5rem !important;
    font-size: 0.6875rem !important;
    flex-shrink: 0 !important;
  }

  .entry-content .comp-steps .action-step-title {
    font-size: 0.875rem !important;
  }

  .entry-content .comp-steps .action-step-desc {
    font-size: 0.8125rem !important;
  }

  .entry-content .comp-steps .action-steps-header {
    padding: 0.75rem 1rem !important;
  }


  /* ========================================
     소마코 콕 모바일
  ======================================== */

  .entry-content .comp-somakok .somako-kok-header {
    padding: 1rem 1.25rem 0 !important;
  }

  .entry-content .comp-somakok .somako-kok-body {
    padding: 0.75rem 1.25rem 1.25rem !important;
  }

  .entry-content .comp-somakok .somako-kok-item {
    gap: 0.625rem !important;
    padding: 0.625rem 0 !important;
  }

  .entry-content .comp-somakok .somako-kok-check {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem !important;
    flex-shrink: 0 !important;
  }

  .entry-content .comp-somakok .somako-kok-check svg {
    width: 0.625rem !important;
    height: 0.625rem !important;
  }

  .entry-content .comp-somakok .somako-kok-text {
    font-size: 0.875rem !important;
  }

  .entry-content .comp-somakok .somako-kok-title {
    font-size: 0.8125rem !important;
  }

  .entry-content .comp-somakok .somako-kok-brand {
    font-size: 0.5625rem !important;
  }
}


/* ========================================
   375px 이하 (iPhone SE 등)
======================================== */

@media (max-width: 375px) {

  .entry-content .comp-pipeline .pipeline-body {
    padding: 0.75rem !important;
  }

  .entry-content .comp-pipeline .pipeline-icon {
    width: 1.75rem !important;
    height: 1.75rem !important;
    min-width: 1.75rem !important;
    font-size: 0.8125rem !important;
  }

  .entry-content .comp-steps .action-step {
    padding: 0.75rem !important;
  }

  .entry-content .comp-somakok .somako-kok-body {
    padding: 0.625rem 1rem 1rem !important;
  }
}
