/**
 * what-is-ktx2.html — VRAM formül kutusu + sıkı karşılaştırma tablosu
 */

.doc-ktx2-formula-box {
  margin: 1.1rem 0 1.35rem;
  padding: 1rem 1.2rem 1.05rem;
  border-radius: var(--radius, 14px);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  background: linear-gradient(
    135deg,
    rgba(46, 231, 242, 0.1),
    rgba(12, 14, 20, 0.92) 48%,
    rgba(181, 108, 255, 0.08)
  );
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.doc-ktx2-formula-main {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text, #e8eaef);
  line-height: 1.45;
  padding-bottom: 0.9rem;
  margin: 0 0 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.doc-ktx2-formula-takeaways {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.doc-ktx2-formula-takeaways li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.94rem;
  color: var(--text-muted, #8b92a4);
  line-height: 1.4;
}

.doc-ktx2-formula-takeaways li strong {
  color: var(--text, #e8eaef);
  font-weight: 600;
}

.doc-ktx2-formula-takeaways__mark {
  flex-shrink: 0;
  width: 1.35rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

.doc-ktx2-basis-ladder {
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 1.1rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(46, 200, 190, 0.22);
  background: linear-gradient(
    128deg,
    rgba(5, 32, 28, 0.97) 0%,
    rgba(8, 42, 36, 0.92) 26%,
    rgba(10, 36, 52, 0.93) 58%,
    rgba(12, 26, 48, 0.98) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 10px 32px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(46, 231, 242, 0.1) inset;
}

@supports (backdrop-filter: blur(10px)) {
  .doc-ktx2-basis-ladder {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

.doc-ktx2-basis-ladder__title {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--text, #e8eaef);
}

.doc-ktx2-basis-ladder__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.doc-ktx2-basis-ladder__list li {
  margin: 0.4rem 0 0;
  font-size: 0.96rem;
  color: var(--text-muted, #8b92a4);
}

.doc-ktx2-basis-ladder__list li:first-child {
  margin-top: 0;
}

.doc-ktx2-basis-ladder__list strong {
  color: var(--text, #e8eaef);
  font-weight: 600;
}

.doc-ktx2-table-wrap .tbl {
  table-layout: fixed;
}

.doc-ktx2-table-wrap .doc-ktx2-col--metric {
  width: 24%;
}

.doc-ktx2-table-wrap .doc-ktx2-col--lane {
  width: 38%;
}

.doc-ktx2-table-wrap .tbl thead th:not(:first-child) {
  text-align: left;
  padding-left: 0.75rem;
}

.doc-ktx2-table-wrap .tbl tbody th[scope="row"] {
  padding: 0.55rem 0.65rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 6, 12, 0.65);
  color: rgba(210, 220, 245, 0.98);
}

.doc-ktx2-table-wrap .tbl tbody td {
  font-weight: 500;
  vertical-align: middle;
  text-align: left;
  padding-left: 0.75rem;
  padding-right: 0.65rem;
}

/* Tam genişlik satır: ikon sütunu sabit, metinler sütunda dikey çizgide */
.doc-ktx2-table-wrap .doc-ktx2-cell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.doc-ktx2-table-wrap .doc-ktx2-cell__glyph {
  flex: 0 0 1.65em;
  width: 1.65em;
  text-align: center;
  font-size: 1.05em;
  line-height: 1;
}

.doc-ktx2-table-wrap .doc-ktx2-cell__text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.doc-ktx2-table-wrap .tbl--striped tbody tr:nth-child(even) th[scope="row"] {
  background: rgba(8, 14, 26, 0.55);
}

.doc-ktx2-table-wrap .tbl tbody tr:last-child th[scope="row"],
.doc-ktx2-table-wrap .tbl tbody tr:last-child td {
  border-bottom: none;
}

.doc-ktx2-table-wrap .tbl tbody tr:last-child th:first-child {
  border-bottom-left-radius: 10px;
}
