/* =========================================================================
   Pearl Island — Packing Lists ("What to Bring — and What to Leave")
   Two-up checklist cards: a "bring" card (green checks) and a "leave" card
   (red crosses, pink tint). Classes prefixed .ppk- and scoped under
   .pi-widget; colors reuse the brand tokens.
   ========================================================================= */
.pi-widget .ppk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 700px) { .pi-widget .ppk-grid { grid-template-columns: 1fr; } }

.pi-widget .ppk-card {
  background: var(--ppk-bring-bg, #fff);
  border: 1px solid rgba(59, 95, 95, .1);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 14px rgba(30, 36, 48, .06);
}
.pi-widget .ppk-card--leave {
  background: var(--ppk-leave-bg, #fffaf9);
  border-color: rgba(238, 114, 102, .25);
}

.pi-widget .ppk-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--pi-heading, var(--smaragd, #3B5F5F));
}

.pi-widget .ppk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
}
.pi-widget .ppk-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  color: #33404a;
  font-size: .95rem;
  line-height: 1.4;
}
.pi-widget .ppk-list li svg { position: absolute; left: 0; top: 2px; width: 19px; height: 19px; }
