.cgv300-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 32px;
  align-items: start;
}

.cgv300-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cgv300-panel h2,
.cgv300-panel h3 {
  margin-top: 0;
}

.cgv300-compatibility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cgv300-compatibility div {
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 800;
}

.cgv300-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.cgv300-table-wrap .spec-table {
  min-width: 1320px;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.cgv300-table-wrap.host-table .spec-table {
  min-width: 680px;
}

.cgv300-table-wrap .spec-table th {
  width: auto;
}

.cgv300-table-wrap .spec-table th,
.cgv300-table-wrap .spec-table td {
  padding: 13px 11px;
  font-size: 14px;
}

.cgv300-table-wrap .spec-table thead th {
  color: #fff;
  background: var(--blue-dark);
  white-space: nowrap;
}

.cgv300-table-wrap .spec-table tbody th {
  min-width: 170px;
}

.cgv300-table-wrap .spec-table tbody tr:nth-child(even) th,
.cgv300-table-wrap .spec-table tbody tr:nth-child(even) td {
  background: #f5fafc;
}

.cgv300-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 900px) {
  .cgv300-overview,
  .cgv300-two-column {
    grid-template-columns: 1fr;
  }

  .cgv300-compatibility {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .cgv300-panel {
    padding: 18px;
  }

  .cgv300-compatibility {
    grid-template-columns: 1fr;
  }
}
