/* v27: primary CTA in the comparison section. Scoped to this link only. */
.preview-copy .preview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: fit-content;
  max-width: 100%;
  min-height: 62px;
  margin-top: 28px;
  padding: 8px 9px 8px 24px;
  border: 1px solid #80654e;
  border-radius: 6px;
  background: linear-gradient(130deg, #a68d73, #80654e);
  color: #fff;
  font: 600 13px/1.45 var(--sans);
  text-decoration: none;
  text-align: left;
  box-shadow: 0 8px 22px rgba(84, 59, 39, .10);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.preview-copy .preview-cta__label { min-width: 0; }
.preview-copy .preview-cta__arrow {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
}
.preview-copy .preview-cta__arrow .icon { width: 20px; height: 20px; }
.preview-copy .preview-cta:hover {
  background: linear-gradient(130deg, #957a60, #6b523e);
  box-shadow: 0 12px 28px rgba(84, 59, 39, .16);
  transform: translateY(-2px);
}
.preview-copy .preview-cta:active { transform: translateY(0); }
.preview-copy .preview-cta:focus-visible {
  outline: 3px solid #6b523e;
  outline-offset: 4px;
}
@media (max-width: 700px) {
  .preview-copy .preview-cta {
    display: flex;
    width: 100%;
    min-height: 60px;
    margin-top: 24px;
    gap: 14px;
    padding: 8px 8px 8px 18px;
    font-size: 13px;
  }
  .preview-copy .preview-cta__arrow { flex-basis: 42px; width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .preview-copy .preview-cta { transition: none; }
}
