.site-specs,
.site-specs * {
  box-sizing: border-box;
}

.site-specs {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-sans);
  color: rgba(0, 0, 0, .82);
}

.site-specs__head {
  text-align: center;
}

.site-specs__title {
  margin: 0;
  color: rgba(0, 0, 0, .82);
  font-size: clamp(40px, 4.2vw, 72px);
  font-weight: var(--fw-light);
  line-height: 1.18;
  letter-spacing: -.055em;
}

.site-specs__desc {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(0, 0, 0, .48);
  font-size: 16px;
  font-weight: var(--fw-light);
  line-height: 1.9;
  letter-spacing: -.005em;
}

.site-specs__model-bar {
  display: none;
}

.site-specs__desktop {
  margin-top: 46px;
}

.site-specs-table-wrap {
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #fff;
}

.site-specs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.site-specs-table th,
.site-specs-table td {
  padding: 14px 20px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.site-specs-table th:last-child,
.site-specs-table td:last-child {
  border-right: 0;
}

.site-specs-table thead th {
  padding-block: 18px;
  color: rgba(255, 255, 255, .9);
  background: #121212;
  font-size: 15px;
  line-height: 1.45;
  font-weight: var(--fw-medium);
  letter-spacing: .03em;
}

.site-specs-table thead th:first-child,
.site-specs-table tbody th {
  width: 36%;
}

.site-specs-table tbody th {
  color: rgba(0, 0, 0, .72);
  background: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.5;
  font-weight: var(--fw-medium);
}

.site-specs-table tbody td {
  color: rgba(0, 0, 0, .6);
  background: rgba(255, 255, 255, .92);
  font-size: 15px;
  line-height: 1.55;
  font-weight: var(--fw-regular);
  font-variant-numeric: tabular-nums;
}

.site-specs-table tbody tr:nth-child(even):not(.site-specs-table__group) td,
.site-specs-table tbody tr:nth-child(even):not(.site-specs-table__group) th {
  background: rgba(247, 247, 245, .72);
}

.site-specs-table tbody tr:not(.site-specs-table__group):hover td,
.site-specs-table tbody tr:not(.site-specs-table__group):hover th {
  background: #f7f7f5;
}

.site-specs-table__diff td {
  color: rgba(0, 0, 0, .82);
  font-weight: var(--fw-medium);
}

.site-specs-table tbody tr:last-child th,
.site-specs-table tbody tr:last-child td {
  border-bottom: 0;
}

.site-specs-table__group th {
  padding: 12px 20px;
  color: rgba(0, 0, 0, .68);
  background: #f0f0ee !important;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  font-weight: var(--fw-medium);
  letter-spacing: .02em;
}

.site-specs-table__shared {
  color: rgba(0, 0, 0, .58);
}

.site-specs-lines {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.site-specs-lines span {
  display: block;
  line-height: 1.55;
}

.site-specs-note {
  display: block;
  margin-top: 6px;
  color: rgba(0, 0, 0, .42);
  font-size: 12px;
  line-height: 1.5;
  font-weight: var(--fw-light);
}

.site-specs__mobile {
  display: none;
}

.site-specs-mobile-group + .site-specs-mobile-group {
  margin-top: 18px;
}

.site-specs-mobile-group__title {
  margin: 0;
  padding: 12px 14px;
  color: rgba(0, 0, 0, .68);
  background: #f0f0ee;
  border: 1px solid #e4e4e1;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: var(--fw-medium);
  letter-spacing: .02em;
}

.site-specs-mobile-list {
  border: 1px solid #e4e4e1;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background: #fff;
}

.site-specs-mobile-row {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  min-height: 48px;
  border-bottom: 1px solid #ececea;
}

.site-specs-mobile-row:last-child {
  border-bottom: 0;
}

.site-specs-mobile-row__label,
.site-specs-mobile-row__value {
  min-width: 0;
  padding: 13px 14px;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}

.site-specs-mobile-row__label {
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, .68);
  background: rgba(247, 247, 245, .78);
  border-right: 1px solid #ececea;
  font-size: 14px;
  line-height: 1.45;
  font-weight: var(--fw-medium);
}

.site-specs-mobile-row__value {
  color: rgba(0, 0, 0, .62);
  font-size: 14px;
  line-height: 1.65;
  font-weight: var(--fw-regular);
  font-variant-numeric: tabular-nums;
}

.site-specs-mobile-row.is-diff .site-specs-mobile-row__value {
  color: rgba(0, 0, 0, .82);
  font-weight: var(--fw-medium);
}

@media (max-width: 768px) {
  .site-specs {
    overflow: hidden;
  }

  .site-specs__head {
    text-align: left;
  }

  .site-specs__title {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.16;
  }

  .site-specs__desc {
    max-width: 100%;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.75;
  }

  .site-specs__model-bar {
    display: flex;
    gap: 8px;
    margin: 22px 0 16px;
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-specs__model-bar::-webkit-scrollbar {
    display: none;
  }

  .site-specs__model-button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 16px;
    color: rgba(0, 0, 0, .62);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    font-weight: var(--fw-medium);
  }

  .site-specs__model-button.is-active {
    color: #fff;
    background: var(--salang-red, #e60021);
    border-color: var(--salang-red, #e60021);
  }

  .site-specs__desktop {
    display: none;
  }

  .site-specs__mobile {
    display: block;
    margin-top: 18px;
  }

  .site-specs-mobile-group + .site-specs-mobile-group {
    margin-top: 14px;
  }

  .site-specs-mobile-row {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  }

  .site-specs-mobile-row__label,
  .site-specs-mobile-row__value {
    padding: 12px;
    font-size: 13.5px;
  }
}
