.elementor-6715 .elementor-element.elementor-element-3ec894ca{--display:flex;}.elementor-6715 .elementor-element.elementor-element-3ec894ca.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-6715 .elementor-element.elementor-element-eed580c{--display:flex;}.elementor-6715 .elementor-element.elementor-element-1880116{--display:flex;}.elementor-6715 .elementor-element.elementor-element-0e760e6{--display:flex;}@media(min-width:768px){.elementor-6715 .elementor-element.elementor-element-3ec894ca{--width:428.851%;}}/* Start custom CSS for html, class: .elementor-element-f146a64 */<style>
.typecast-player {
  display: flex;
  align-items: center;
  background: #111;
  border-radius: 50px;
  padding: 12px 20px;
  gap: 14px;
  max-width: 700px;
}
.typecast-play-btn {
  background: #f97316;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.typecast-title {
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex: 1;
}
.typecast-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.typecast-speed {
  background: transparent;
  border: 1px solid #555;
  border-radius: 20px;
  color: white;
  padding: 4px 10px;
  font-size: 13px;
  cursor: pointer;
}
</style>/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-5f9254ed */<style>
.typecast-blog-player {
  display: flex;
  align-items: center;
  background: #111;
  border-radius: 10px;
  padding: 15px 16px;
  gap: 12px;
  max-width: 700px;
}
.typecast-blog-player .typecast-play-btn {
  background: #f97316;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px !important;
  min-width: 32px;
  min-height: 32px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 정지 상태 — ▶ */
.typecast-blog-player .typecast-play-btn::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent white;
  margin-left: 2px;
}
/* 재생 상태 — ‖ (수정) : 기존 border 방식은 높이 0이라 렌더 안 됨 */
.typecast-blog-player .typecast-play-btn.is-playing::before {
  border: none;
  width: 4px;
  height: 12px;
  background: white;
  border-radius: 1px;
  box-shadow: 6px 0 0 white;
  margin-left: -3px;
}
.typecast-blog-player .typecast-title {
  color: white;
  font-weight: 600;
  font-size: 15px;
  flex: 1;
}
.typecast-blog-player .typecast-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.typecast-blog-player .typecast-speed {
  background: transparent;
  border: 1.5px solid #555;
  border-radius: 20px;
  color: white;
  padding: 4px 10px;
  font-weight: 500;
  font-size: 11px;
  cursor: pointer;
}
</style>

<script>
function togglePlay(btn) {
  const player = btn.closest('.typecast-blog-player');
  const audio = player.querySelector('audio');

  document.querySelectorAll('.typecast-blog-player').forEach(p => {
    if (p !== player) {
      p.querySelector('audio').pause();
      p.querySelector('.typecast-play-btn').classList.remove('is-playing');
    }
  });

  if (audio.paused) {
    audio.play();
    btn.classList.add('is-playing');

    if (!player.dataset.played) {
      player.dataset.played = 'true';
      window.dataLayer = window.dataLayer || [];
      window.dataLayer.push({
        event: 'typecast_blog_audio_play',
        audio_character: player.dataset.character || '',
        page_url: window.location.href
      });
    }
  } else {
    audio.pause();
    btn.classList.remove('is-playing');
  }
}

function changeSpeed(btn) {
  const player = btn.closest('.typecast-blog-player');
  const audio = player.querySelector('audio');
  const speeds = [1, 1.5, 2, 0.75];

  let idx = parseInt(player.dataset.speedIndex || '0');
  idx = (idx + 1) % speeds.length;
  player.dataset.speedIndex = idx;

  audio.playbackRate = speeds[idx];
  btn.textContent = '속도 ' + speeds[idx] + 'x';
}
</script>
```

---

## CSS

```css
.wp-block-heading {
  font-size: 24px !important;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: -0.04em;
  color: #222222;
  margin-bottom: 40px;
}

h3.wp-block-heading {
  font-size: 18px !important;
  margin-bottom: 16px;
}

.post-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9em;
  color: #454545 !important;
  word-break: break-word;
  overflow-wrap: break-word;
}

.wp-block-separator {
  border-color: #e0e0e0 !important;
  border-width: 1px !important;
}

.wp-block-quote cite {
  font-size: 16px;
  color: #9ca3af;
  margin-top: 10px;
}

/* 사례 한눈에 보기 카드 */
.case-summary {
  background-color: #ffffff;
  border: 1px solid #f0e3da;
  border-radius: 20px;
  padding: 28px 30px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.case-summary-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fe7e43;
  margin: 0 0 6px 0 !important;
}

.case-summary-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3em;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0 !important;
}

.case-summary-meta {
  font-size: 14px;
  color: #666666;
  line-height: 1.7em;
  margin: 0 0 20px 0 !important;
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.case-metric {
  flex: 1 1 150px;
  background-color: rgba(254, 126, 67, 0.06);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}

.case-metric-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #222222;
  line-height: 1.3em;
  margin-bottom: 6px;
  word-break: keep-all;
}

.case-metric-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #888888;
  line-height: 1.4em;
}

/* 콜아웃 — 보더+그림자 표준 (2026-08-04) */
.callout-box {
  background-color: #ffffff;
  border: 1px solid #ececec;
  border-radius: 25px;
  padding: 25px 20px 25px 30px;
  margin-top: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.callout-box p {
  font-size: 15px;
  font-weight: 400;
  line-height: 2em;
  color: #666666;
  margin: 0 !important;
}

.callout-box .callout-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px !important;
  color: #666666;
}

/* 실무 팁 — 왼쪽 오렌지 보더 + 연한 배경 */
.condition-card {
  background-color: #fffaf7;
  border-left: 3px solid #fe7e43;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.condition-card p {
  font-size: 15px;
  line-height: 1.85em;
  color: #555555;
  margin: 0 !important;
}

.condition-card .condition-title {
  font-size: 15px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px !important;
}/* End custom CSS */