/* layout_T2.css — T2「分栏 Hero 型」专属布局层 */
.t2-layout {
  width: 100%;
}

/* 所有通栏内容区统一限宽居中 */
.t2-layout > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
/* hero 和 trust-panel 全宽不受限 */
.t2-layout > .hero-v2 {
  max-width: none;
  margin: 0;
  padding: 0;
}
.t2-layout > .duba-trust-panel {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* 对比表格样式（T2布局中内嵌使用） */
.t2-layout .cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  margin: 20px 0;
}
.t2-layout .cmp-table th {
  background: #1e293b;
  color: #fff;
  padding: 12px 10px;
  text-align: left;
  font-size: 13px;
}
.t2-layout .cmp-table td {
  padding: 11px 10px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.t2-layout .cmp-table tr td:first-child {
  font-weight: 600;
  color: #1e293b;
  background: #f8fafc;
  text-align: left;
}

/* T2 Hero 区左右分栏栅格 */
.t2-layout .hero-split .container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}
.t2-layout .hero-split .hero-left {
  min-width: 0;
}
.t2-layout .hero-split .hero-right .entity-card {
  background: var(--blue-50);
  border-radius: 14px;
  padding: 22px;
}

@media (max-width: 768px) {
  .t2-layout .hero-split .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
