/* =============================================================
   03-shared-components.css
   Reusable components: cards, buttons, labels, badges, dots
   ============================================================= */

/* ── Base card ── */
.card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(17, 25, 39, 0.04);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* ── Card label (section label above content) ── */
.c-lbl {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #9da4ae;
  margin-bottom: 14px;
}
.c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d2d6db;
  display: inline-block;
}

/* ── Card CTA button ── */
.c-btn,
a.c-btn,
a.c-btn:link,
a.c-btn:visited {
  width: 100%;
  background: #1f2a37;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 12px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.12s,
    transform 0.12s;
  font-family: "Inter", sans-serif;
  text-align: center;
  margin-top: auto;
}
.c-btn:hover {
  background: #111927;
  transform: scale(1.02);
}
.c-btn-flush {
  margin-top: 0;
}

/* ── Card support text ── */
.c-sup {
  font-size: 11.5px;
  color: #6c737f;
  text-align: center;
  line-height: 1.45;
  margin-bottom: 14px;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes barFill {
  from {
    width: 0;
  }
  to {
    width: 85%;
  }
}
@keyframes gaugeAnim {
  from {
    stroke-dasharray: 0 163;
  }
  to {
    stroke-dasharray: 135 163;
  }
}
