/* =========================================================
   STATS STRIP SECTION
   Posisi: antara Hero dan Library Announcements
   ========================================================= */

.stats-strip-section {
  background-color: #ffffff;
  padding: 0;
  position: relative;
  z-index: 5;
}

.stats-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

/* ── Single stat card ── */
.p-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 10px 40px;
  border-radius: 16px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 200px;
  font-family: var(--font-primary, "Poppins", sans-serif);
}

.p-stat-card:hover {
  background: #f8fafc;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.1);
}


/* ── Big counter number ── */
.p-stat-number {
  font-family: var(--font-primary, "Poppins", sans-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
  line-height: 1;
  letter-spacing: -2px;
}

/* ── Label (TOTAL COLLECTION etc.) ── */
.p-stat-label {
  font-family: var(--font-primary, "Poppins", sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 6px 0;
}

/* ── Sub-description ── */
.p-stat-desc {
  font-family: var(--font-primary, "Poppins", sans-serif);
  font-size: 0.85rem;
  font-weight: 400;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ── Vertical divider between cards ── */
.stats-divider {
  width: 1px;
  height: 80px;
  background: #e2e8f0;
  flex-shrink: 0;
  align-self: center;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .stats-strip-inner {
    flex-direction: column;
    padding: 40px 5%;
    gap: 32px;
  }

  .stats-divider {
    width: 80px;
    height: 1px;
  }

  .p-stat-card {
    padding: 16px 24px;
  }

  .p-stat-number {
    font-size: 2.6rem;
  }
}
