.hcpkm-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  direction: rtl;
}
.hcpkm-column {
  flex: 1 1 260px;
  min-width: 260px;
  padding: 20px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hcpkm-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.hcpkm-highlight {
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,215,0,.55); }
  70%{ box-shadow: 0 0 0 15px rgba(255,215,0,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,215,0,0); }
}
.hcpkm-logo { max-width: 84px; margin: 0 auto 8px; display:block; }
.hcpkm-title { font-size: 20px; font-weight: 700; margin: 4px 0 10px; }
.hcpkm-ribbon {
  position: absolute;
  top: -10px;
  inset-inline-start: 12px;
  background: #FFD700;
  color: #111827;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.hcpkm-features { list-style:none; margin:16px 0 14px; padding:0; text-align:start; }
.hcpkm-features li { display:flex; align-items:center; justify-content:space-between; gap:10px; margin:6px 0; font-size:14px; }
.hcpkm-feature-label { display:flex; align-items:center; gap:8px; opacity:.95; }
.hcpkm-ic { display:inline-flex; align-items:center; }
.hcpkm-stars { white-space:nowrap; }
.hcpkm-star { display:inline-block; line-height:1; vertical-align:middle; }

.hcpkm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px;
  padding: 9px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, background .18s ease;
}
.hcpkm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.22);
  opacity: .97;
}

@media (max-width: 768px) {
  .hcpkm-container { flex-direction: column; }
}
