/* =========================================================
   HPM Info Cards Module
   ========================================================= */

.hpm-page-module__info-grid {
  margin-top: 2rem;
}

.hpm-page-module__info-card {
  background: #ffffff;
  border: 1px solid #e8e2d9;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.055);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hpm-page-module__info-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.hpm-page-module__info-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 28px 24px;
}

/* Icon circle */
.hpm-page-module__info-card-icon {
  align-items: center;
  background: #00aaa6;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 15px;
  height: 40px;
  justify-content: center;
  margin-bottom: 16px;
  width: 40px;
}

/* Badge / label */
.hpm-page-module__info-card-badge {
  color: #626b73;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* Value / title */
.hpm-page-module__info-card .hpm-page-module__info-card-body > h3 {
  color: #1f1f1f;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Body text */
.hpm-page-module__info-card-text {
  color: #4a5568;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: auto;
}

.hpm-page-module__info-card-text p {
  margin: 0 0 4px;
}

.hpm-page-module__info-card-text p:last-child {
  margin-bottom: 0;
}

/* Section heading alignment */
.hpm-page-module__info-grid ~ * {
  margin-top: 0;
}
