.awcr-product-content {
  --awcr-ink: #171a1f;
  --awcr-muted: #687078;
  --awcr-line: #e7e9ec;
  --awcr-soft: #f7f8f9;
  --awcr-accent: #171a1f;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--awcr-ink);
  font-family: inherit;
}

.awcr-product-content,
.awcr-product-content * {
  box-sizing: border-box;
}

.awcr-short-highlights {
  max-width: 640px;
  margin: 14px 0 18px;
}

.awcr-short-highlights ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.awcr-short-highlights li {
  position: relative;
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
}

.awcr-short-highlights li::before {
  position: absolute;
  top: 0.65em;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.awcr-product-section + .awcr-product-section {
  margin-top: clamp(40px, 6vw, 72px);
}

.awcr-product-content .awcr-section-title {
  margin: 0 0 18px;
  color: var(--awcr-ink);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.awcr-product-content .awcr-highlight-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--awcr-line);
  list-style: none;
}

.awcr-product-content .awcr-highlight-list li {
  position: relative;
  margin: 0;
  padding: 18px 8px 18px 34px;
  border-bottom: 1px solid var(--awcr-line);
  font-size: 16px;
  line-height: 1.7;
}

.awcr-product-content .awcr-highlight-list li::before {
  position: absolute;
  top: 27px;
  left: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--awcr-accent);
  content: "";
}

.awcr-product-content .awcr-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--awcr-line);
  border-radius: 14px;
  background: #fff;
}

.awcr-product-content .awcr-spec-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  min-width: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--awcr-line);
}

.awcr-product-content .awcr-spec-item:nth-child(odd) {
  border-right: 1px solid var(--awcr-line);
}

.awcr-product-content .awcr-spec-item:last-child,
.awcr-product-content .awcr-spec-item:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}

.awcr-product-content .awcr-spec-label {
  color: var(--awcr-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.awcr-product-content .awcr-spec-value {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--awcr-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 700px) {
	.awcr-short-highlights li {
		font-size: 13px;
	}

  .awcr-product-content .awcr-section-title {
    margin-bottom: 18px;
  }

  .awcr-product-content .awcr-highlight-list li {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
  }

  .awcr-product-content .awcr-highlight-list li::before {
    top: 24px;
  }

  .awcr-product-content .awcr-spec-grid {
    grid-template-columns: 1fr;
  }

  .awcr-product-content .awcr-spec-item,
  .awcr-product-content .awcr-spec-item:nth-child(odd),
  .awcr-product-content .awcr-spec-item:last-child,
  .awcr-product-content .awcr-spec-item:nth-last-child(2):nth-child(odd) {
    grid-template-columns: minmax(105px, 0.7fr) minmax(0, 1.3fr);
    padding: 15px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--awcr-line);
  }

  .awcr-product-content .awcr-spec-item:last-child {
    border-bottom: 0;
  }
}
