.product-detail__buying-guide {
  display: grid;
  gap: 16px;
  width: 100%;
  margin-block-start: 20px;
  padding: 28px;
  color: rgb(var(--color-text));
  background: rgb(var(--color-background));
  border: 1px solid rgba(var(--color-entry-line), 0.8);
  border-radius: 14px;
}

.product-detail__buying-guide-eyebrow,
.product-detail__buying-guide-title,
.product-detail__buying-guide-copy,
.product-detail__buying-guide-note {
  margin: 0;
}

.product-detail__buying-guide-eyebrow {
  color: rgba(var(--color-button-text-link, var(--color-text)), 1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail__buying-guide-title {
  color: rgb(var(--color-text));
}

.product-detail__buying-guide-copy,
.product-detail__buying-guide-note {
  color: rgba(var(--color-text), 0.72);
}

.product-detail__buying-guide-copy > :first-child,
.product-detail__buying-guide-note > :first-child {
  margin-block-start: 0;
}

.product-detail__buying-guide-copy > :last-child,
.product-detail__buying-guide-note > :last-child {
  margin-block-end: 0;
}

.product-detail__buying-guide-copy a {
  color: rgba(var(--color-button-text-link, var(--color-text)), 1);
}

.product-detail__buying-guide-links {
  display: grid;
  gap: 10px;
}

.product-detail__buying-guide-links .v-button {
  width: 100%;
  margin: 0;
  text-align: center;
}

.product-detail__buying-guide-note strong {
  color: rgb(var(--color-text));
}

@media (max-width: 959px) {
  .product-detail__buying-guide {
    gap: 14px;
    margin-block-start: 12px;
    padding: 22px;
    border-radius: 12px;
  }
}
