/* magazine/executive — 임원 보고용 KPI 슬라이드 (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);
  font-size: 24px;
  line-height: 1.5;
}
.slide {
  width: 1920px;
  height: 1080px;
  display: flex;
  flex-direction: column;
}
.slide__inner {
  flex: 1;
  padding: calc(var(--grid) * 6) calc(var(--grid) * 8);
  display: flex;
  flex-direction: column;
  gap: calc(var(--grid) * 3);
}
.slide__header { border-bottom: 2px solid var(--color-accent); padding-bottom: calc(var(--grid) * 2); }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: calc(var(--grid) * 1.5);
}
.kpi-headline {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1.1;
}
.slide__body { flex: 1; display: flex; flex-direction: column; gap: calc(var(--grid) * 2); }
.lede { font-size: 36px; font-weight: 500; color: var(--color-text); }
.bullets { list-style: none; display: flex; flex-direction: column; gap: var(--grid); }
.bullets li {
  font-size: 28px;
  color: var(--color-muted);
  padding-left: calc(var(--grid) * 2);
  position: relative;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
}
.slide__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-muted);
  padding-top: var(--grid);
  font-size: 18px;
  color: var(--color-muted);
}
