.price-guide {
  margin: clamp(34px, 6vw, 76px) 0 0;
  padding: clamp(24px, 4.4vw, 44px) 0 0;
  border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  color: inherit;
}

.pg-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: clamp(20px, 3.2vw, 34px);
}

.pg-eyebrow {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .62;
}

.pg-head h2 {
  margin: 0;
  font: inherit;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: .06em;
}

.pg-head p {
  margin: 0;
  max-width: 680px;
  font-size: 14px;
  line-height: 1.75;
  opacity: .72;
}

.pg-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pg-group {
  min-width: 0;
  border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
  background: color-mix(in srgb, currentColor 4%, transparent);
}

.pg-group.featured {
  border-color: color-mix(in srgb, currentColor 28%, transparent);
}

.pg-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent);
}

.pg-group-head span {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pg-group-head b {
  font-size: 11px;
  letter-spacing: .12em;
  opacity: .6;
  white-space: nowrap;
}

.pg-list {
  display: grid;
}

.pg-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  padding: 13px 16px;
  border-top: 1px solid color-mix(in srgb, currentColor 8%, transparent);
}

.pg-row:first-child {
  border-top: 0;
}

.pg-name {
  min-width: 0;
  font-size: 14px;
  line-height: 1.45;
}

.pg-price {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
  font-size: 17px;
  line-height: 1;
  letter-spacing: .01em;
}

.pg-price .cur {
  font-size: 10px;
  letter-spacing: .12em;
  opacity: .62;
}

.pg-price small {
  font-size: 11px;
  opacity: .68;
}

.pg-sub {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.45;
  opacity: .58;
}

.pg-note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.7;
  opacity: .66;
}

@media (max-width: 760px) {
  .pg-groups {
    grid-template-columns: 1fr;
  }

  .pg-group-head,
  .pg-row {
    padding-left: 14px;
    padding-right: 14px;
  }

  .pg-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .pg-price {
    justify-self: start;
  }
}
