/* tkoff · Comparison Cards — modul-spezifisches CSS
   Setzt globales Theme-CSS voraus (takeoff-2026-system.css). */

/* --- Main Container --- */

.tkoff_comparison {
  background: var(--tkoff-bg);
  padding: 110px 0;
}

/* --- Comparison Grid (Side-by-Side) --- */

.tkoff_comparison_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

/* --- Comparison Card Base --- */

.tkoff_comparison_card {
  border-radius: var(--tkoff-rl);
  padding: 48px;
  border: 1px solid;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tkoff_comparison_card--left {
  background: var(--tkoff-rd-d);
  border-color: var(--tkoff-rd-b);
}

.tkoff_comparison_card--right {
  background: linear-gradient(145deg, var(--tkoff-blue-dim) 0%, var(--tkoff-bg3) 60%);
  border-color: var(--tkoff-blue-b);
}

/* --- Card Tag/Pill --- */

.tkoff_comparison_tag {
  display: inline-block;
  margin-bottom: 24px;
  width: fit-content;
}

/* --- Card Heading (H3 Serif) --- */

.tkoff_comparison_h3 {
    color: var(--tkoff-w);
    font-size: clamp(18px, 2.2vw, 28px) !important;
    letter-spacing: -.2px !important;
    line-height: 1.25;
    /* margin-bottom: 24px !important;
}

/* --- Card Large Number --- */

.tkoff_comparison_number {
  font-family: var(--tkoff-fs);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.5px;
  margin-bottom: 8px;
  margin-top: 0;
}

.tkoff_comparison_number--rd {
  color: var(--tkoff-rd);
}

.tkoff_comparison_number--blue {
  color: var(--tkoff-blue);
}

/* --- Card Number Label --- */

.tkoff_comparison_number_label {
  font-size: 13px;
  color: var(--tkoff-w55);
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: .3px;
}

/* --- Card Lists (✓ and ✕) --- */

.tkoff_comparison_card .tkoff_list {
  margin-top: 0;
  flex-grow: 1;
}

.tkoff_comparison_card .tkoff_list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--tkoff-w80);
  padding: 12px 0;
}

.tkoff_comparison_card .tkoff_list li p {
  margin: 0;
  display: inline;
}

/* --- Conclusion Block --- */

.tkoff_comparison_conclusion {
  text-align: center;
  margin-top: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.tkoff_comparison_conclusion_h {
  margin-bottom: 18px;
  color: var(--tkoff-w);
}

.tkoff_comparison_conclusion_h em {
  font-style: italic;
  color: var(--tkoff-blue);
}

.tkoff_comparison_conclusion_text {
  color: var(--tkoff-w55);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.tkoff_comparison_conclusion_text p {
  margin: 0;
}

/* --- Responsive (max-width: 880px) --- */

@media (max-width: 880px) {
  .tkoff_comparison_grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .tkoff_comparison_card {
    padding: 36px;
  }

  .tkoff_comparison_conclusion {
    margin-top: 40px;
  }

  .tkoff_comparison_number {
    font-size: clamp(28px, 7vw, 48px);
  }

  .tkoff_comparison_h3 {
    font-size: clamp(16px, 2vw, 24px) !important;
  }
}
