/* deck/content — 일반 콘텐츠 (제목 + 본문 + 우측 시각 영역, 1920x1080) */
:root {
  --color-primary: {{tk_primary}};
  --color-secondary: {{tk_secondary}};
  --color-accent: {{tk_accent}};
  --color-bg: {{tk_background}};
  --color-text: {{tk_text_primary}};
  --color-muted: {{tk_text_secondary}};
  --grid: 16px;
  --radius: {{tk_radius}};
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 1920px; height: 1080px; }
body {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}
.slide { width: 1920px; height: 1080px; display: flex; flex-direction: column; }
.slide__inner {
  flex: 1;
  padding: calc(var(--grid) * 5) calc(var(--grid) * 6);
  display: flex;
  flex-direction: column;
  gap: calc(var(--grid) * 3);
}
.content__header {
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: calc(var(--grid) * 1.5);
  display: flex;
  flex-direction: column;
  gap: var(--grid);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 20px;
}
.content__title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}
.content__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: calc(var(--grid) * 4);
}
.content__text {
  display: flex;
  flex-direction: column;
  gap: calc(var(--grid) * 2);
}
.content__lede {
  font-size: 32px;
  line-height: 1.5;
  color: var(--color-text);
  font-weight: 500;
}
.content__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--grid);
}
.content__bullets li {
  font-size: 26px;
  line-height: 1.5;
  color: var(--color-muted);
  padding-left: calc(var(--grid) * 2);
  position: relative;
}
.content__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 4px;
}
.content__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-box {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-bg);
  border-radius: var(--radius);
  padding: calc(var(--grid) * 3);
  display: flex;
  flex-direction: column;
  gap: var(--grid);
}
.visual-box__label {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.visual-box__value {
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}
.visual-box__caption {
  font-size: 22px;
  opacity: 0.85;
}
