.page-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#transformers-result {
  margin-top: 30px;
}

/* === БЛОК СРАВНЕНИЯ === */

.tt-pair {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.tt-pair:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* === ДВЕ КАРТОЧКИ === */

.tt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* === КАРТОЧКА === */

.tt-col {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.tt-col:hover {
  background: rgba(0,0,0,0.02);
}

/* === ЛЕВАЯ ЧАСТЬ === */

.tt-left {
  flex: 1;
}

.tt-title {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.3px;
}

.tt-model {
  font-size: 18px;
  font-weight: 600;
  margin: 4px 0 6px;
  color: #222;
}

.tt-type {
  font-size: 13px;
}

.tt-install {
  font-size: 12px;
  color: #666;
}

/* === ПРАВАЯ ЧАСТЬ === */

.tt-right {
  text-align: right;
  min-width: 140px;
}

.tt-block {
  margin-bottom: 6px;
}

.tt-label {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.3px;
}

.tt-value {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.tt-empty {
  color: #bbb;
}

/* === РАЗДЕЛЕНИЕ ABB / KPB === */

.tt-col.abb {
  border-right: 1px dashed #e3e3e3;
  padding-right: 10px;
}

.tt-col.kpb {
  padding-left: 10px;
}

/* === ЗАГОЛОВКИ === */

h2 {
  margin: 40px 0 15px;
  font-size: 22px;
}

/* ссылка = полноценная карточка */
.tt-link {
  display: flex;              /* ВАЖНО */
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;

  text-decoration: none;
  color: inherit;
}

/* внутренние блоки */
.tt-link .tt-left,
.tt-link .tt-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* чтобы не скакала правая часть */
.tt-link .tt-right {
  min-width: 120px;
  text-align: right;
}

/* === МОБИЛКА === */

@media (max-width: 768px) {

  .tt-row {
    grid-template-columns: 1fr;
  }

  .tt-col {
    border-right: none;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
  }

  .tt-col:last-child {
    border-bottom: none;
  }

  .tt-right {
    text-align: left;
  }
}