
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;600;700&family=Noto+Sans+KR:wght@400;500;700&display=swap');

    :root {
      --bg: #faf9f6;
      --surface: #ffffff;
      --accent: #2d6a4f;
      --accent-light: #e8f5f0;
      --accent2: #d62828;
      --text: #1a1a1a;
      --muted: #6b6b6b;
      --border: #e0ddd6;
      --warn: #fff3cd;
      --warn-border: #e6a817;
      --shadow: 0 2px 16px rgba(0,0,0,0.07);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Noto Sans KR', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.8;
      font-size: 16px;
    }

    /* ── 헤더 ── */
    header {
      background: var(--accent);
      color: #fff;
      padding: 56px 24px 48px;
      text-align: center;
    }
    .header-label {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      color: #d4edda;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    header h1 {
      font-family: 'Noto Serif KR', serif;
      font-size: clamp(24px, 5vw, 38px);
      font-weight: 700;
      line-height: 1.4;
      max-width: 720px;
      margin: 0 auto 16px;
    }
    .header-meta {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      margin-top: 16px;
    }
    .header-meta span { margin: 0 8px; }

    /* ── 본문 래퍼 ── */
    .container {
      max-width: 740px;
      margin: 0 auto;
      padding: 0 20px 80px;
    }

    /* ── 목차 ── */
    .toc {
      background: var(--accent-light);
      border-left: 4px solid var(--accent);
      border-radius: 0 8px 8px 0;
      padding: 24px 28px;
      margin: 40px 0 36px;
    }
    .toc-title {
      font-weight: 700;
      font-size: 14px;
      color: var(--accent);
      letter-spacing: 1px;
      margin-bottom: 12px;
    }
    .toc ol { padding-left: 20px; }
    .toc li { margin: 6px 0; }
    .toc a { color: var(--accent); text-decoration: none; font-size: 15px; }
    .toc a:hover { text-decoration: underline; }

    /* ── 섹션 공통 ── */
    section { margin-bottom: 56px; }
    h2 {
      font-family: 'Noto Serif KR', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 16px;
      padding-top: 8px;
      border-bottom: 2px solid var(--accent-light);
      padding-bottom: 10px;
    }
    h3 {
      font-size: 17px;
      font-weight: 700;
      margin: 28px 0 10px;
    }
    p { margin-bottom: 16px; color: #2a2a2a; }

    /* ── 유튜브 임베드 ── */
    .video-wrap {
      background: #000;
      border-radius: 12px;
      overflow: hidden;
      margin: 32px 0;
      box-shadow: var(--shadow);
      position: relative;
      padding-top: 56.25%;
    }
    .video-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d6a4f 100%);
      color: #fff;
      text-align: center;
      padding: 24px;
      gap: 12px;
    }
    .video-placeholder .yt-icon {
      font-size: 56px;
      line-height: 1;
    }
    .video-placeholder p {
      color: rgba(255,255,255,0.85);
      font-size: 14px;
      margin: 0;
    }
    .video-placeholder a {
      display: inline-block;
      background: #ff0000;
      color: #fff;
      padding: 10px 24px;
      border-radius: 24px;
      font-weight: 700;
      text-decoration: none;
      font-size: 14px;
      margin-top: 8px;
    }
    .video-placeholder a:hover { background: #cc0000; }

    /* ── 핵심 카드 ── */
    .key-card {
      background: var(--surface);
      border-radius: 12px;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      padding: 28px 28px 24px;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
    }
    .key-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 5px; height: 100%;
      background: var(--accent);
      border-radius: 4px 0 0 4px;
    }
    .key-badge {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }
    .key-card h3 {
      margin-top: 4px;
      font-size: 18px;
    }

    /* ── 경고 박스 ── */
    .warn-box {
      background: var(--warn);
      border: 1px solid var(--warn-border);
      border-radius: 10px;
      padding: 18px 20px;
      margin: 20px 0;
      font-size: 15px;
    }
    .warn-box strong { color: #8a5700; }

    /* ── 위험 신호 박스 ── */
    .danger-box {
      background: #fff5f5;
      border: 1px solid #f5c6cb;
      border-radius: 10px;
      padding: 20px 24px;
      margin: 20px 0;
    }
    .danger-box h3 {
      color: var(--accent2);
      margin-top: 0;
      font-size: 16px;
    }
    .danger-list { list-style: none; padding: 0; margin: 12px 0 0; }
    .danger-list li {
      padding: 8px 0;
      border-bottom: 1px solid #fde8e8;
      font-size: 15px;
      display: flex;
      gap: 10px;
    }
    .danger-list li:last-child { border-bottom: none; }
    .danger-list .sym { color: var(--accent2); font-weight: 700; min-width: 20px; }

    /* ── 음식 그리드 ── */
    .food-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 20px 0;
    }
    .food-card {
      border-radius: 10px;
      padding: 18px 20px;
    }
    .food-card.bad {
      background: #fff5f5;
      border: 1px solid #f5c6cb;
    }
    .food-card.good {
      background: var(--accent-light);
      border: 1px solid #b7dfcc;
    }
    .food-card h4 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .food-card.bad h4 { color: var(--accent2); }
    .food-card.good h4 { color: var(--accent); }
    .food-card ul { padding-left: 18px; font-size: 14px; line-height: 1.9; }

    /* ── 수면 자세 일러스트 ── */
    .posture-visual {
      background: linear-gradient(135deg, var(--accent-light), #f0faf5);
      border: 1px solid #b7dfcc;
      border-radius: 12px;
      padding: 28px;
      text-align: center;
      margin: 20px 0;
    }
    .posture-visual svg { max-width: 300px; width: 100%; }
    .posture-label {
      font-size: 14px;
      color: var(--accent);
      font-weight: 700;
      margin-top: 12px;
    }

    /* ── 요약 표 ── */
    .summary-table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0;
      font-size: 15px;
      background: var(--surface);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .summary-table th {
      background: var(--accent);
      color: #fff;
      padding: 12px 16px;
      text-align: left;
      font-weight: 700;
    }
    .summary-table td {
      padding: 12px 16px;
      border-bottom: 1px solid var(--border);
    }
    .summary-table tr:last-child td { border-bottom: none; }
    .summary-table tr:nth-child(even) td { background: var(--accent-light); }

    /* ── 결론 박스 ── */
    .conclusion {
      background: var(--accent);
      color: #fff;
      border-radius: 14px;
      padding: 32px 28px;
      text-align: center;
      margin-top: 40px;
    }
    .conclusion h2 {
      color: #fff;
      border-bottom: 1px solid rgba(255,255,255,0.3);
      font-size: 20px;
      padding-bottom: 12px;
      margin-bottom: 20px;
    }
    .conclusion p { color: rgba(255,255,255,0.9); margin-bottom: 10px; }
    .conclusion strong { color: #a8e6cf; }

    /* ── FAQ ── */
    .faq-item {
      border: 1px solid var(--border);
      border-radius: 10px;
      margin-bottom: 12px;
      background: var(--surface);
      overflow: hidden;
    }
    .faq-q {
      font-weight: 700;
      padding: 16px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 15px;
    }
    .faq-q:hover { background: var(--accent-light); }
    .faq-a {
      display: none;
      padding: 0 20px 16px;
      font-size: 15px;
      color: var(--muted);
    }
    .faq-item.open .faq-a { display: block; }
    .faq-item.open .faq-q { color: var(--accent); }
    .chevron { transition: transform 0.2s; }
    .faq-item.open .chevron { transform: rotate(180deg); }

    /* ── 반응형 ── */
    @media (max-width: 600px) {
      .food-grid { grid-template-columns: 1fr; }
      header { padding: 40px 16px 36px; }
      .key-card { padding: 22px 20px; }
    }

/* =====================================================
   📋 워드프레스 CSS
   붙여넣는 곳:
   방법 A) 외모 > 사용자 정의하기 > 추가 CSS
   방법 B) 자식 테마 style.css 하단에 추가
   방법 C) Elementor / Divi 등 페이지빌더의 커스텀 CSS
===================================================== */

/* ── 공통 변수 ── */
.mp-hero-label,
.mp-toc,
.mp-stat-grid,
.mp-research-block,
.mp-callout,
.mp-agency-grid,
.mp-compare-table,
.mp-step-list,
.mp-faq-item,
.mp-conclusion,
.mp-refs {
  --mp-ink: #1a1612;
  --mp-ink2: #4a453e;
  --mp-ink3: #7a736a;
  --mp-red: #c0392b;
  --mp-amber: #e67e22;
  --mp-green: #27ae60;
  --mp-border: #e8e2d9;
  --mp-surface: #ffffff;
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
}

/* ── 히어로 배너 라벨 ── */
.mp-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.mp-hero-sub {
  font-size: 16px;
  color: #4a453e;
  line-height: 1.75;
  margin-bottom: 10px !important;
}
.mp-hero-meta {
  font-size: 13px;
  color: #7a736a;
  margin-bottom: 28px !important;
}
.mp-divider {
  border: none;
  border-top: 2px solid #e8e2d9;
  margin: 32px 0;
}

/* ── 목차 ── */
.mp-toc {
  background: #fff;
  border: 1px solid #e8e2d9;
  border-left: 5px solid #1a1612;
  border-radius: 6px;
  padding: 24px 28px;
  margin: 40px 0;
}
.mp-toc-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a736a;
  margin-bottom: 14px;
}
.mp-toc ol {
  padding-left: 20px;
  margin: 0;
}
.mp-toc li {
  margin: 7px 0;
  font-size: 14px;
}
.mp-toc a {
  color: #1a1612;
  text-decoration: none;
  border-bottom: 1px solid #e8e2d9;
  transition: color 0.2s, border-color 0.2s;
}
.mp-toc a:hover {
  color: #c0392b;
  border-color: #c0392b;
}

/* ── 섹션 헤딩 ── */
.mp-h2 {
  font-size: clamp(21px, 3vw, 28px) !important;
  font-weight: 700 !important;
  border-top: 2px solid #1a1612 !important;
  padding-top: 16px !important;
  margin-top: 56px !important;
  margin-bottom: 20px !important;
  color: #1a1612 !important;
  line-height: 1.3 !important;
}
.mp-h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1a1612 !important;
  margin: 28px 0 12px !important;
}

/* ── 통계 카드 그리드 ── */
.mp-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
@media (max-width: 600px) {
  .mp-stat-grid { grid-template-columns: 1fr 1fr; }
}
.mp-stat-card {
  background: #fff;
  border: 1px solid #e8e2d9;
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mp-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.mp-stat-red::after  { background: #c0392b; }
.mp-stat-amber::after { background: #e67e22; }
.mp-stat-green::after { background: #27ae60; }
.mp-stat-num {
  display: block;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.mp-stat-red .mp-stat-num   { color: #c0392b; }
.mp-stat-amber .mp-stat-num { color: #e67e22; }
.mp-stat-green .mp-stat-num { color: #27ae60; }
.mp-stat-label {
  font-size: 12px;
  color: #7a736a;
  line-height: 1.45;
}
.mp-stat-source {
  font-size: 11px;
  color: #7a736a;
  margin-top: 8px;
  opacity: 0.75;
}

/* ── 콜아웃 박스 ── */
.mp-callout {
  border-radius: 6px;
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 4px solid;
}
.mp-callout p { margin: 0 !important; font-size: 15px; line-height: 1.75; }
.mp-callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mp-callout-danger  { background: #fdf2f0; border-color: #c0392b; }
.mp-callout-danger .mp-callout-label  { color: #c0392b; }
.mp-callout-warning { background: #fef9ec; border-color: #e67e22; }
.mp-callout-warning .mp-callout-label { color: #e67e22; }
.mp-callout-info    { background: #eef4fb; border-color: #2980b9; }
.mp-callout-info .mp-callout-label    { color: #2980b9; }
.mp-callout-success { background: #eafaf1; border-color: #27ae60; }
.mp-callout-success .mp-callout-label { color: #27ae60; }

/* ── 연구 블록 ── */
.mp-research-block {
  background: #fff;
  border: 1px solid #e8e2d9;
  border-radius: 8px;
  padding: 24px;
  margin: 20px 0;
}
.mp-research-block p { color: #4a453e; font-size: 15px; line-height: 1.8; }
.mp-rb-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.mp-rb-icon {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: #1a1612;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.mp-rb-org {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7a736a;
  margin-bottom: 4px;
}
.mp-rb-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1612;
  line-height: 1.35;
}
.mp-source-note {
  font-size: 12px !important;
  color: #7a736a !important;
  margin-top: 12px !important;
}

/* ── 기관 카드 그리드 ── */
.mp-agency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
  margin: 16px 0 28px;
}
.mp-agency-card {
  background: #fff;
  border: 1px solid #e8e2d9;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mp-agency-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.mp-icon-intl { background: #eef4fb; }
.mp-icon-kr   { background: #eafaf1; }
.mp-agency-body h4 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1a1612 !important;
  margin: 0 0 5px !important;
}
.mp-agency-body p {
  font-size: 13px !important;
  color: #4a453e !important;
  margin: 0 0 8px !important;
  line-height: 1.6 !important;
}
.mp-agency-body a {
  font-size: 12px;
  color: #2980b9;
  word-break: break-all;
  text-decoration: none;
}
.mp-agency-body a:hover { color: #c0392b; text-decoration: underline; }

/* ── 비교 표 ── */
.mp-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.mp-compare-table th {
  background: #1a1612;
  color: #fff;
  padding: 13px 14px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}
.mp-compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e8e2d9;
  color: #4a453e;
}
.mp-compare-table tr:last-child td { border-bottom: none; }
.mp-compare-table tr:nth-child(even) td { background: #faf8f5; }
.mp-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.mp-bad  { background: #fde8e6; color: #c0392b; }
.mp-good { background: #e6f7ee; color: #27ae60; }
.mp-mid  { background: #fef3e2; color: #e67e22; }

/* ── 단계 리스트 ── */
.mp-step-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 28px !important;
}
.mp-step-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px !important;
  padding: 0 !important;
}
.mp-step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #1a1612;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.mp-step-content {
  font-size: 15px;
  color: #4a453e;
  line-height: 1.75;
}
.mp-step-content strong { color: #1a1612; }

/* ── FAQ ── */
.mp-faq-item {
  background: #fff;
  border: 1px solid #e8e2d9;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.mp-faq-q {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1612;
  background: #faf8f5;
  border-bottom: 1px solid #e8e2d9;
}
.mp-faq-a {
  padding: 16px 20px;
  font-size: 14px;
  color: #4a453e;
  line-height: 1.8;
}

/* ── 결론 CTA ── */
.mp-conclusion {
  background: #1a1612;
  color: #fff;
  border-radius: 10px;
  padding: 44px 36px;
  text-align: center;
  margin: 48px 0;
}
.mp-conclusion h2 {
  font-size: clamp(20px, 3vw, 28px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 14px !important;
}
.mp-conclusion p {
  color: rgba(255,255,255,0.75) !important;
  max-width: 500px;
  margin: 0 auto 24px !important;
  font-size: 15px !important;
}
.mp-cta-btn {
  display: inline-block;
  background: #c0392b;
  color: #fff !important;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.mp-cta-btn:hover { background: #a93226; }

/* ── 참고 문헌 ── */
.mp-refs {
  background: #f0ede8;
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 48px;
}
.mp-refs h3 {
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a736a !important;
  margin-bottom: 14px !important;
}
.mp-refs ol {
  padding-left: 18px;
  margin: 0;
}
.mp-refs li {
  font-size: 13px;
  color: #7a736a;
  margin-bottom: 8px;
  line-height: 1.6;
}
.mp-refs a { color: #2980b9; text-decoration: none; }
.mp-refs a:hover { text-decoration: underline; }

/* =====================================================
   📋 당뇨병 글 전용 CSS
   기존 추가 CSS 맨 아래에 이어서 붙여넣기
   =====================================================

/* ── 당뇨 글 공통 변수 ── */
.db-hero-label, .db-toc, .db-stat-grid,
.db-type-grid, .db-callout, .db-agency-grid,
.db-table, .db-step-list, .db-faq-item,
.db-conclusion, .db-refs, .db-food-grid,
.db-exercise-grid, .db-comp-grid {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
}

/* ── 배너 라벨 ── */
.db-hero-label {
  display: inline-flex;
  align-items: center;
  background: #1a6b3c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.db-hero-sub {
  font-size: 16px;
  color: #2a3a30;
  line-height: 1.8;
  margin-bottom: 10px !important;
}
.db-hero-meta {
  font-size: 13px;
  color: #7a736a;
  margin-bottom: 16px !important;
}
.db-warning-top {
  background: #fff8e1;
  border: 1px solid #f9a825;
  border-left: 4px solid #f9a825;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 13px;
  color: #5a4000;
  margin-bottom: 24px;
}
.db-divider {
  border: none;
  border-top: 2px solid #e0ead5;
  margin: 28px 0;
}

/* ── 목차 ── */
.db-toc {
  background: #f0f7f2;
  border: 1px solid #b7dfcc;
  border-left: 5px solid #1a6b3c;
  border-radius: 6px;
  padding: 24px 28px;
  margin: 36px 0;
}
.db-toc-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a6b3c;
  margin-bottom: 14px;
}
.db-toc ol { padding-left: 20px; margin: 0; }
.db-toc li { margin: 7px 0; font-size: 14px; }
.db-toc a {
  color: #1a6b3c;
  text-decoration: none;
  border-bottom: 1px solid #b7dfcc;
  transition: color 0.2s;
}
.db-toc a:hover { color: #c0392b; border-color: #c0392b; }

/* ── 헤딩 ── */
.db-h2 {
  font-size: clamp(20px, 3vw, 27px) !important;
  font-weight: 700 !important;
  color: #1a6b3c !important;
  border-bottom: 2px solid #e0ead5 !important;
  padding-bottom: 10px !important;
  margin-top: 52px !important;
  margin-bottom: 20px !important;
  line-height: 1.35 !important;
}
.db-h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #1a3a2a !important;
  margin: 28px 0 12px !important;
}

/* ── 통계 카드 ── */
.db-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}
@media (max-width: 680px) {
  .db-stat-grid { grid-template-columns: 1fr 1fr; }
}
.db-stat-card {
  background: #fff;
  border: 1px solid #e0ead5;
  border-radius: 8px;
  padding: 20px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.db-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.db-stat-red::after   { background: #c0392b; }
.db-stat-amber::after { background: #e67e22; }
.db-stat-blue::after  { background: #2980b9; }
.db-stat-green::after { background: #1a6b3c; }
.db-stat-num {
  display: block;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.db-stat-red .db-stat-num   { color: #c0392b; }
.db-stat-amber .db-stat-num { color: #e67e22; }
.db-stat-blue .db-stat-num  { color: #2980b9; }
.db-stat-green .db-stat-num { color: #1a6b3c; }
.db-stat-label  { font-size: 12px; color: #5a6a5a; line-height: 1.45; }
.db-stat-source { font-size: 11px; color: #9aaa9a; margin-top: 6px; }

/* ── 당뇨 유형 카드 ── */
.db-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}
@media (max-width: 640px) {
  .db-type-grid { grid-template-columns: 1fr; }
}
.db-type-card {
  background: #fff;
  border: 1px solid #e0ead5;
  border-radius: 8px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
}
.db-type-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.db-type-1::before { background: #c0392b; }
.db-type-2::before { background: #e67e22; }
.db-type-g::before { background: #f1c40f; }
.db-type-icon { font-size: 24px; margin-bottom: 8px; }
.db-type-card h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #1a3a2a !important;
  margin: 0 0 8px !important;
}
.db-type-card p {
  font-size: 13px !important;
  color: #4a5a4a !important;
  line-height: 1.7 !important;
  margin: 0 0 10px !important;
}
.db-type-tag {
  display: inline-block;
  background: #f0f7f2;
  color: #1a6b3c;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── 콜아웃 ── */
.db-callout {
  border-radius: 6px;
  padding: 18px 22px;
  margin: 20px 0;
  border-left: 4px solid;
}
.db-callout p { margin: 0 !important; font-size: 15px; line-height: 1.8; }
.db-callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.db-callout-danger  { background: #fdf2f0; border-color: #c0392b; }
.db-callout-danger .db-callout-label  { color: #c0392b; }
.db-callout-warning { background: #fef9ec; border-color: #e67e22; }
.db-callout-warning .db-callout-label { color: #e67e22; }
.db-callout-info    { background: #eef4fb; border-color: #2980b9; }
.db-callout-info .db-callout-label    { color: #2980b9; }
.db-callout-success { background: #f0f7f2; border-color: #1a6b3c; }
.db-callout-success .db-callout-label { color: #1a6b3c; }

/* ── 증상 카드 ── */
.db-symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0 20px;
}
@media (max-width: 600px) {
  .db-symptom-grid { grid-template-columns: 1fr; }
}
.db-symptom-card {
  background: #fff;
  border: 1px solid #e0ead5;
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}
.db-sym-icon { font-size: 28px; margin-bottom: 8px; }
.db-symptom-card strong {
  display: block;
  font-size: 15px;
  color: #1a3a2a;
  margin-bottom: 6px;
}
.db-symptom-card p {
  font-size: 13px !important;
  color: #4a5a4a !important;
  margin: 0 !important;
  line-height: 1.65 !important;
}

/* ── 혈당 진단표 ── */
.db-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.db-table th {
  background: #1a6b3c;
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}
.db-table td {
  padding: 11px 14px;
  border-bottom: 1px solid #e0ead5;
  color: #3a4a3a;
}
.db-table tr:last-child td { border-bottom: none; }
.db-table tr:nth-child(even) td { background: #f8faf8; }
.db-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.db-good   { background: #e6f7ee; color: #1a6b3c; }
.db-mid    { background: #fef3e2; color: #e67e22; }
.db-bad    { background: #fde8e6; color: #c0392b; }
.db-target { background: #eef4fb; color: #2980b9; }

/* ── 체크리스트 ── */
.db-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 16px 0 !important;
  background: #f8faf8;
  border: 1px solid #e0ead5;
  border-radius: 8px;
  padding: 20px 24px !important;
}
.db-checklist li {
  font-size: 15px;
  color: #2a3a2a;
  padding: 7px 0 !important;
  border-bottom: 1px solid #e8f0e8;
}
.db-checklist li:last-child { border-bottom: none; }

/* ── 예방 단계 리스트 ── */
.db-step-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 16px 0 !important;
}
.db-step-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px !important;
  padding: 0 !important;
}
.db-step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #1a6b3c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.db-step-content {
  font-size: 15px;
  color: #3a4a3a;
  line-height: 1.8;
}
.db-step-content strong { color: #1a3a2a; }

/* ── 음식 그리드 ── */
.db-food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}
@media (max-width: 560px) {
  .db-food-grid { grid-template-columns: 1fr; }
}
.db-food-bad, .db-food-good {
  border-radius: 8px;
  padding: 20px;
}
.db-food-bad {
  background: #fdf2f0;
  border: 1px solid #f5c6cb;
}
.db-food-good {
  background: #f0f7f2;
  border: 1px solid #b7dfcc;
}
.db-food-bad h4  { font-size: 15px !important; font-weight: 700 !important; color: #c0392b !important; margin: 0 0 12px !important; }
.db-food-good h4 { font-size: 15px !important; font-weight: 700 !important; color: #1a6b3c !important; margin: 0 0 12px !important; }
.db-food-bad ul, .db-food-good ul {
  padding-left: 18px !important;
  margin: 0 !important;
}
.db-food-bad li, .db-food-good li {
  font-size: 14px;
  line-height: 1.9;
  color: #3a4a3a;
}

/* ── 운동 카드 ── */
.db-exercise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0;
}
@media (max-width: 640px) {
  .db-exercise-grid { grid-template-columns: 1fr; }
}
.db-exercise-card {
  background: #fff;
  border: 1px solid #e0ead5;
  border-radius: 8px;
  padding: 20px;
  border-top: 3px solid #1a6b3c;
}
.db-ex-icon { font-size: 28px; margin-bottom: 8px; }
.db-exercise-card h4 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1a3a2a !important;
  margin: 0 0 10px !important;
}
.db-exercise-card p {
  font-size: 13px !important;
  color: #4a5a4a !important;
  margin: 0 0 6px !important;
  line-height: 1.6 !important;
}

/* ── 합병증 카드 ── */
.db-comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}
@media (max-width: 580px) {
  .db-comp-grid { grid-template-columns: 1fr; }
}
.db-comp-card {
  background: #fff;
  border: 1px solid #e0ead5;
  border-radius: 8px;
  padding: 20px;
}
.db-comp-header {
  font-size: 14px;
  font-weight: 700;
  color: #1a3a2a;
  background: #f0f7f2;
  margin: -20px -20px 14px;
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
}
.db-comp-card ul { padding-left: 0 !important; margin: 0 !important; list-style: none !important; }
.db-comp-card li {
  font-size: 14px;
  color: #3a4a3a;
  padding: 7px 0;
  border-bottom: 1px solid #eef4ee;
  line-height: 1.6;
}
.db-comp-card li:last-child { border-bottom: none; }

/* ── 기관 카드 ── */
.db-agency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin: 14px 0 24px;
}
.db-agency-card {
  background: #fff;
  border: 1px solid #e0ead5;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.db-agency-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.db-icon-kr   { background: #f0f7f2; }
.db-icon-intl { background: #eef4fb; }
.db-agency-body h4 {
  font-size: 15px !important; font-weight: 700 !important;
  color: #1a3a2a !important; margin: 0 0 5px !important;
}
.db-agency-body p {
  font-size: 13px !important; color: #4a5a4a !important;
  margin: 0 0 8px !important; line-height: 1.6 !important;
}
.db-agency-body a {
  font-size: 12px; color: #1a6b3c; text-decoration: none;
  word-break: break-all;
}
.db-agency-body a:hover { color: #c0392b; text-decoration: underline; }

/* ── FAQ ── */
.db-faq-item {
  background: #fff;
  border: 1px solid #e0ead5;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.db-faq-q {
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #1a3a2a;
  background: #f8faf8;
  border-bottom: 1px solid #e0ead5;
}
.db-faq-a {
  padding: 15px 20px;
  font-size: 14px;
  color: #3a4a3a;
  line-height: 1.8;
}

/* ── 결론 CTA ── */
.db-conclusion {
  background: #1a3a2a;
  color: #fff;
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
  margin: 44px 0;
}
.db-conclusion h2 {
  font-size: clamp(19px, 3vw, 26px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 14px !important;
}
.db-conclusion p {
  color: rgba(255,255,255,0.8) !important;
  max-width: 500px;
  margin: 0 auto 24px !important;
  font-size: 15px !important;
}
.db-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.db-cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.db-cta-btn:hover { opacity: 0.88; }
.db-cta-primary  { background: #27ae60; color: #fff !important; }
.db-cta-secondary { background: rgba(255,255,255,0.15); color: #fff !important; border: 1px solid rgba(255,255,255,0.4); }

/* ── 참고 문헌 ── */
.db-refs {
  background: #f3f7f3;
  border-radius: 8px;
  padding: 22px 26px;
  margin-top: 44px;
}
.db-refs h3 {
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5a7a5a !important;
  margin-bottom: 14px !important;
}
.db-refs ol { padding-left: 18px; margin: 0; }
.db-refs li { font-size: 13px; color: #5a7a5a; margin-bottom: 7px; line-height: 1.6; }
.db-refs a { color: #1a6b3c; text-decoration: none; }
.db-refs a:hover { text-decoration: underline; }

/* =====================================================
   장 건강 블로그 포스트 - GeneratePress 추가 CSS
   워드프레스: 외모 → 추가 CSS 에 붙여넣기
   ===================================================== */

/* ── 전체 래퍼: GeneratePress 콘텐츠 너비 재정의 방지 ── */
.gpblog-wrap {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif !important;
  color: #222 !important;
  line-height: 1.85 !important;
  word-break: keep-all !important;
}

/* ── 카테고리 뱃지 ── */
.gpblog-category {
  display: inline-block !important;
  background: #2ecc71 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  margin-bottom: 18px !important;
  text-decoration: none !important;
}

/* ── 포스트 메타 ── */
.gpblog-meta {
  font-size: 13px !important;
  color: #888 !important;
  margin-bottom: 32px !important;
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  list-style: none !important;
  padding: 0 !important;
}
.gpblog-meta li {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.gpblog-meta li::before { content: none !important; }

/* ── 스토리 박스 ── */
.gpblog-story {
  background: #f9f9f9 !important;
  border-left: 5px solid #aaa !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-radius: 0 10px 10px 0 !important;
  padding: 24px 28px !important;
  margin: 32px 0 !important;
  font-style: italic !important;
  color: #444 !important;
  font-size: 15px !important;
  line-height: 2 !important;
  box-shadow: none !important;
}
.gpblog-story strong {
  color: #111 !important;
  font-style: normal !important;
}
.gpblog-story .gpblog-story-end {
  font-style: normal !important;
  font-weight: 700 !important;
  color: #1a9c4e !important;
  margin-top: 14px !important;
  display: block !important;
}

/* ── 히어로 요약 박스 ── */
.gpblog-hero {
  background: linear-gradient(135deg, #e8f8ef 0%, #eaf6ff 100%) !important;
  border-left: 5px solid #2ecc71 !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-radius: 10px !important;
  padding: 24px 28px !important;
  margin: 32px 0 !important;
  box-shadow: none !important;
}
.gpblog-hero p {
  margin: 0 !important;
  font-size: 15px !important;
  color: #333 !important;
}
.gpblog-hero strong { color: #1a9c4e !important; }

/* ── 목차 ── */
.gpblog-toc {
  background: #f4f4f4 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 22px 28px !important;
  margin: 36px 0 !important;
  box-shadow: none !important;
}
.gpblog-toc .gpblog-toc-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  margin: 0 0 12px !important;
  color: #444 !important;
  border: none !important;
  padding: 0 !important;
}
.gpblog-toc ol {
  margin: 0 !important;
  padding-left: 20px !important;
}
.gpblog-toc li {
  margin-bottom: 6px !important;
  font-size: 14px !important;
  padding: 0 !important;
}
.gpblog-toc li::before { content: none !important; }
.gpblog-toc a {
  color: #2ecc71 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}
.gpblog-toc a:hover { text-decoration: underline !important; }

/* ── 섹션 H2 제목 ── */
.gpblog-wrap h2.gpblog-h2 {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #111 !important;
  margin: 48px 0 16px !important;
  padding: 0 0 10px 0 !important;
  border-bottom: 3px solid #2ecc71 !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  background: none !important;
}

/* ── 섹션 H3 소제목 ── */
.gpblog-wrap h3.gpblog-h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #1a9c4e !important;
  margin: 26px 0 10px !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

/* ── 4이유 카드 그리드 ── */
.gpblog-reason-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
  gap: 16px !important;
  margin: 24px 0 !important;
}
.gpblog-reason-card {
  background: #fff !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 18px 14px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
  text-align: center !important;
}
.gpblog-reason-card .gpblog-num {
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #2ecc71 !important;
  margin-bottom: 6px !important;
  display: block !important;
}
.gpblog-reason-card h4 {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
  color: #111 !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.gpblog-reason-card p {
  font-size: 12.5px !important;
  color: #666 !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}

/* ── 일반 카드 그리드 ── */
.gpblog-card-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
  gap: 18px !important;
  margin: 24px 0 !important;
}
.gpblog-card {
  background: #fff !important;
  border: 1.5px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 20px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}
.gpblog-card .gpblog-icon {
  font-size: 28px !important;
  margin-bottom: 8px !important;
  display: block !important;
}
.gpblog-card h4 {
  font-size: 14px !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
  color: #111 !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.gpblog-card p {
  font-size: 13px !important;
  color: #555 !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* ── FODMAP 2열 비교 ── */
.gpblog-fodmap-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
  margin: 24px 0 !important;
}
.gpblog-fodmap-col {
  border-radius: 12px !important;
  padding: 20px !important;
}
.gpblog-fodmap-col.high {
  background: #fff3f3 !important;
  border: 1.5px solid #ffb3b3 !important;
}
.gpblog-fodmap-col.low {
  background: #f0fff4 !important;
  border: 1.5px solid #84d9a0 !important;
}
.gpblog-fodmap-col h4 {
  font-size: 14px !important;
  font-weight: 800 !important;
  margin: 0 0 10px !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.gpblog-fodmap-col.high h4 { color: #c0392b !important; }
.gpblog-fodmap-col.low  h4 { color: #1a9c4e !important; }
.gpblog-fodmap-col ul {
  margin: 0 !important;
  padding-left: 18px !important;
  list-style: disc !important;
}
.gpblog-fodmap-col li {
  font-size: 13.5px !important;
  color: #444 !important;
  margin-bottom: 5px !important;
  padding: 0 !important;
}
.gpblog-fodmap-col li::before { content: none !important; }

/* ── 비교 테이블 ── */
.gpblog-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 24px 0 !important;
  font-size: 14px !important;
}
.gpblog-table th {
  background: #1a9c4e !important;
  color: #fff !important;
  padding: 12px 14px !important;
  text-align: left !important;
  font-weight: 700 !important;
  border: none !important;
}
.gpblog-table td {
  padding: 11px 14px !important;
  border-bottom: 1px solid #eee !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  vertical-align: top !important;
  background: transparent !important;
}
.gpblog-table tr:nth-child(even) td { background: #f9fafb !important; }
.gpblog-table td:first-child {
  font-weight: 700 !important;
  color: #1a9c4e !important;
}

/* ── 순서(스텝) 박스 ── */
.gpblog-order-box {
  background: #eaf6ff !important;
  border: 1.5px solid #90caf9 !important;
  border-radius: 12px !important;
  padding: 22px 26px !important;
  margin: 24px 0 !important;
  box-shadow: none !important;
}
.gpblog-order-box .gpblog-order-title {
  font-size: 14.5px !important;
  font-weight: 800 !important;
  color: #1565c0 !important;
  margin: 0 0 14px !important;
  display: block !important;
}
.gpblog-order-steps {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
.gpblog-order-step {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: #222 !important;
}
.gpblog-step-num {
  background: #1565c0 !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
.gpblog-step-arrow {
  color: #aaa !important;
  font-size: 12px !important;
  margin-left: 38px !important;
  display: block !important;
}

/* ── 하이라이트 박스 (노란) ── */
.gpblog-highlight {
  background: #fff8e1 !important;
  border: 1.5px solid #ffd54f !important;
  border-radius: 10px !important;
  padding: 20px 24px !important;
  margin: 28px 0 !important;
  font-size: 14.5px !important;
  box-shadow: none !important;
}
.gpblog-highlight .gpblog-label {
  font-weight: 800 !important;
  color: #e65100 !important;
  font-size: 13px !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* ── 팁 박스 (초록) ── */
.gpblog-tip {
  background: #e8f8ef !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 18px 22px !important;
  margin: 24px 0 !important;
  font-size: 14.5px !important;
  box-shadow: none !important;
}
.gpblog-tip .gpblog-tip-label {
  font-weight: 800 !important;
  color: #1a9c4e !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* ── 경고 박스 (노란/주황) ── */
.gpblog-warn {
  background: #fff3cd !important;
  border: 1.5px solid #ffc107 !important;
  border-radius: 10px !important;
  padding: 18px 22px !important;
  margin: 24px 0 !important;
  font-size: 14.5px !important;
  box-shadow: none !important;
}
.gpblog-warn .gpblog-warn-label {
  font-weight: 800 !important;
  color: #856404 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* ── 인용 하이라이트 (초록 왼쪽 선) ── */
.gpblog-quote {
  background: #f0fff4 !important;
  border-left: 4px solid #2ecc71 !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 12px 16px !important;
  border-radius: 0 8px 8px 0 !important;
  font-size: 14.5px !important;
  color: #1a5c34 !important;
  margin: 0 0 18px !important;
  box-shadow: none !important;
}

/* ── 체크리스트 ── */
.gpblog-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 18px 0 !important;
}
.gpblog-checklist li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 15px !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
}
.gpblog-checklist li::before { content: "✅" !important; flex-shrink: 0 !important; }

/* ── CTA 박스 ── */
.gpblog-cta {
  background: linear-gradient(135deg, #1a9c4e 0%, #27ae60 100%) !important;
  color: #fff !important;
  border-radius: 14px !important;
  padding: 32px !important;
  text-align: center !important;
  margin-top: 56px !important;
  box-shadow: none !important;
}
.gpblog-cta h3 {
  font-size: 1.25rem !important;
  margin: 0 0 10px !important;
  color: #fff !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.gpblog-cta p {
  margin: 0 !important;
  font-size: 14.5px !important;
  opacity: 0.9 !important;
  color: #fff !important;
}

/* ── 태그 ── */
.gpblog-tags { margin-top: 36px !important; }
.gpblog-tags a {
  display: inline-block !important;
  background: #eef9f3 !important;
  color: #1a9c4e !important;
  border: 1px solid #c3e6cb !important;
  border-radius: 20px !important;
  padding: 4px 12px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  margin: 4px 4px 0 0 !important;
  text-decoration: none !important;
}
.gpblog-tags a:hover {
  background: #d4f5e3 !important;
  text-decoration: none !important;
}

/* ── 반응형 ── */
@media (max-width: 640px) {
  .gpblog-fodmap-grid {
    grid-template-columns: 1fr !important;
  }
  .gpblog-reason-grid,
  .gpblog-card-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .gpblog-wrap h2.gpblog-h2 {
    font-size: 1.15rem !important;
  }
  .gpblog-table {
    font-size: 12px !important;
  }
  .gpblog-table th,
  .gpblog-table td {
    padding: 8px !important;
  }
}
@media (max-width: 420px) {
  .gpblog-reason-grid,
  .gpblog-card-grid {
    grid-template-columns: 1fr !important;
  }
}