/* =========================================================================
   Pearl Island — Review CTA ("Tell Us How It Went")
   A soft tinted band with the shared Section Heading and a row of outline
   buttons linking to review platforms, plus an optional note. Scoped under
   .pi-widget; colors reuse the brand tokens (with safe fallbacks).
   ========================================================================= */
.pi-widget .pircta {
  background: linear-gradient(180deg, #f2f6f7, #e9f1f1);
  padding: 84px 0;
  border-radius: 24px;
  text-align: center;
}
@media (max-width: 700px) { .pi-widget .pircta { padding: 56px 0; } }

.pi-widget .pircta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Outline button (not defined in the base button set) */
.pi-widget .pircta .btn-outline {
  background: transparent;
  color: var(--pi-btn-outline, var(--smaragd, #3B5F5F));
  border: 1.5px solid rgba(59, 95, 95, .35);
  box-shadow: none;
}
.pi-widget .pircta .btn-outline:hover {
  border-color: var(--smaragd, #3B5F5F);
  background: var(--smaragd, #3B5F5F);
  color: #fff;
  transform: translateY(-2px);
}

.pi-widget .pircta-note {
  margin-top: 16px;
  color: var(--pi-text, var(--hx-body, #5a6372));
  font-size: .85rem;
}
