/**
 * Ttobagi vote / strategy speech — scoped styles (prefix ttbvt-).
 * Loaded only when [ttobagi_vote_speech] renders. Do not share selectors with other ttb* prefixes.
 */

.ttbvt-root *,
.ttbvt-root *::before,
.ttbvt-root *::after {
  box-sizing: border-box;
}

.ttbvt-root img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ttbvt-root ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ttbvt-root h1,
.ttbvt-root h2,
.ttbvt-root h3,
.ttbvt-root p {
  margin: 0;
}

/* Design tokens */
.ttbvt-root {
  --ttbvt-color-navy: #1a2b4b;
  --ttbvt-color-border: #e0e0e0;
  --ttbvt-color-text: #333333;
  --ttbvt-color-text-light: #555555;
  --ttbvt-container-width: 1000px;

  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: 'Pretendard', 'Pretendard Variable', -apple-system, BlinkMacSystemFont,
    'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ttbvt-color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
  box-sizing: border-box;
}

.ttbvt-root .ttbvt-page {
  display: flex;
  justify-content: center;
  background: #fff;
}

.ttbvt-root .ttbvt-container {
  width: var(--ttbvt-container-width);
  max-width: var(--ttbvt-container-width);
  min-width: var(--ttbvt-container-width);
}

/* ── Hero ── */
.ttbvt-root .ttbvt-hero {
  position: relative;
  min-height: 320px;
  padding: 48px 40px 52px;
  background: url('../vote-speech/visual-ttobagi.webp') center right / cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ttbvt-root .ttbvt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 43, 75, 0.92) 0%,
    rgba(26, 43, 75, 0.75) 45%,
    rgba(26, 43, 75, 0.2) 100%
  );
  pointer-events: none;
}

.ttbvt-root .ttbvt-hero > * {
  position: relative;
  z-index: 1;
}

.ttbvt-root .ttbvt-hero-brand {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  opacity: 0.95;
}

.ttbvt-root .ttbvt-hero-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.ttbvt-root .ttbvt-hero-subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  opacity: 0.92;
}

/* ── Overview ── */
.ttbvt-root .ttbvt-overview {
  padding: 40px 40px 44px;
}

.ttbvt-root .ttbvt-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.ttbvt-root .ttbvt-overview-col {
  padding: 0 4px;
}

.ttbvt-root .ttbvt-overview-col--accent {
  border-left: 4px solid var(--ttbvt-color-navy);
  padding-left: 20px;
}

.ttbvt-root .ttbvt-overview-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ttbvt-color-navy);
  margin-bottom: 16px;
}

.ttbvt-root .ttbvt-overview-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(12%) sepia(28%) saturate(1200%) hue-rotate(182deg) brightness(95%) contrast(95%);
}

.ttbvt-root .ttbvt-overview-list {
  list-style: none;
  padding: 0;
}

.ttbvt-root .ttbvt-overview-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ttbvt-color-text-light);
}

.ttbvt-root .ttbvt-overview-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ttbvt-color-navy);
}

/* ── Section title ── */
.ttbvt-root .ttbvt-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ttbvt-color-navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* ── Curriculum ── */
.ttbvt-root .ttbvt-curriculum {
  padding: 0 40px 40px;
}

.ttbvt-root .ttbvt-curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ttbvt-root .ttbvt-session-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  border: 1px solid var(--ttbvt-color-border);
  min-height: 0;
}

.ttbvt-root .ttbvt-session-number {
  background: var(--ttbvt-color-navy);
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ttbvt-root .ttbvt-session-body {
  padding: 14px 16px 16px;
  background: #fff;
}

.ttbvt-root .ttbvt-session-title {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ttbvt-color-navy);
  line-height: 1.45;
  margin-bottom: 8px;
}

.ttbvt-root .ttbvt-session-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(28%) saturate(1200%) hue-rotate(182deg) brightness(95%) contrast(95%);
}

.ttbvt-root .ttbvt-session-list {
  list-style: none;
  padding: 0;
}

.ttbvt-root .ttbvt-session-list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 3px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ttbvt-color-text-light);
}

.ttbvt-root .ttbvt-session-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ttbvt-color-text-light);
}

/* ── Benefits ── */
.ttbvt-root .ttbvt-benefits {
  margin-bottom: 40px;
}

.ttbvt-root .ttbvt-benefits-header {
  background: var(--ttbvt-color-navy);
  padding: 18px 40px;
  text-align: center;
}

.ttbvt-root .ttbvt-benefits-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.ttbvt-root .ttbvt-benefits-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--ttbvt-color-navy);
  padding: 28px 32px 36px;
  gap: 12px;
}

.ttbvt-root .ttbvt-benefit-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.ttbvt-root .ttbvt-benefit-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ttbvt-root .ttbvt-benefit-item p {
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
}

/* ── Effects ── */
.ttbvt-root .ttbvt-effects {
  padding: 0 40px 48px;
}

.ttbvt-root .ttbvt-effects-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 12px;
}

.ttbvt-root .ttbvt-effects-list li {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ttbvt-color-text-light);
}

.ttbvt-root .ttbvt-effects-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ttbvt-color-navy);
}

.ttbvt-root .ttbvt-effects-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 7px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ── Mobile (max-width: 767px) ── */
@media (max-width: 767px) {
.ttbvt-root .ttbvt-container {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }

.ttbvt-root .ttbvt-hero {
    min-height: 240px;
    padding: 28px 20px;
    background-position: center right;
  }

.ttbvt-root .ttbvt-hero::before {
    background: linear-gradient(
      to right,
      rgba(26, 43, 75, 0.95) 0%,
      rgba(26, 43, 75, 0.85) 55%,
      rgba(26, 43, 75, 0.3) 100%
    );
  }

.ttbvt-root .ttbvt-hero-brand {
    font-size: 12px;
    margin-bottom: 12px;
  }

.ttbvt-root .ttbvt-hero-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

.ttbvt-root .ttbvt-hero-subtitle {
    font-size: 13px;
  }

.ttbvt-root .ttbvt-overview {
    padding: 24px 20px 32px;
  }

.ttbvt-root .ttbvt-overview-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

.ttbvt-root .ttbvt-overview-col {
    padding: 0;
  }

.ttbvt-root .ttbvt-overview-col--accent {
    background: #eef2f6;
    padding: 20px 16px 20px 20px;
    border-left: 4px solid var(--ttbvt-color-navy);
  }

.ttbvt-root .ttbvt-overview-heading {
    font-size: 15px;
    margin-bottom: 14px;
  }

.ttbvt-root .ttbvt-overview-list li {
    font-size: 13px;
  }

.ttbvt-root .ttbvt-section-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

.ttbvt-root .ttbvt-curriculum {
    padding: 0 20px 32px;
  }

.ttbvt-root .ttbvt-curriculum-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

.ttbvt-root .ttbvt-session-card {
    border-radius: 8px;
    overflow: hidden;
  }

.ttbvt-root .ttbvt-session-body {
    padding: 14px 16px 16px;
  }

.ttbvt-root .ttbvt-session-title {
    font-size: 13px;
  }

.ttbvt-root .ttbvt-session-list li {
    font-size: 12px;
  }

.ttbvt-root .ttbvt-benefits {
    margin-bottom: 32px;
  }

.ttbvt-root .ttbvt-benefits-header {
    padding: 16px 20px;
  }

.ttbvt-root .ttbvt-benefits-title {
    font-size: 15px;
  }

.ttbvt-root .ttbvt-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding: 24px 20px 32px;
  }

.ttbvt-root .ttbvt-benefit-item {
    flex: unset;
  }

.ttbvt-root .ttbvt-benefit-item img {
    width: 40px;
    height: 40px;
  }

.ttbvt-root .ttbvt-benefit-item p {
    font-size: 11px;
  }

.ttbvt-root .ttbvt-benefit-item:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

.ttbvt-root .ttbvt-effects {
    padding: 0 20px 40px;
  }

.ttbvt-root .ttbvt-effects-list {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

.ttbvt-root .ttbvt-effects-list li {
    font-size: 13px;
  }
}

.ttbvt-root .ttbvt-hero-brand,
.ttbvt-root .ttbvt-hero-title,
.ttbvt-root .ttbvt-hero-subtitle {
  color: #fff;
}

.ttbvt-root .ttbvt-hero-brand,
.ttbvt-root .ttbvt-hero-title,
.ttbvt-root .ttbvt-hero-subtitle,
.ttbvt-root .ttbvt-overview-heading,
.ttbvt-root .ttbvt-overview-list li,
.ttbvt-root .ttbvt-section-title,
.ttbvt-root .ttbvt-session-title,
.ttbvt-root .ttbvt-session-list li,
.ttbvt-root .ttbvt-benefits-title,
.ttbvt-root .ttbvt-benefit-item p,
.ttbvt-root .ttbvt-effects-list li {
  word-break: keep-all;
}

.ttbvt-root .ttbvt-benefits-title,
.ttbvt-root .ttbvt-benefit-item p {
  color: #fff;
}
