 /**************************************************************************************/
.path-card {
  position: relative;
  padding: 1.75rem 1.7rem 1.55rem;
  border-radius: 30px;
  border: 1px solid rgba(201, 166, 104, 0.22);
  background:
    linear-gradient(180deg, rgba(8,12,20,0.92), rgba(4,8,14,0.97));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.025),
    0 0 0 1px rgba(201,166,104,0.04);
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(217, 183, 123, 0.10) 0%,
    rgba(217, 183, 123, 0.03) 20%,
    transparent 45%
  );
}

.path-card h3 {
  color: #f4ead8;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.path-card p {
  color: rgba(233, 226, 214, 0.78);
}
.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(217, 183, 123, 0.10) 0%,
    rgba(217, 183, 123, 0.04) 18%,
    transparent 42%,
    transparent 100%
  );
}
.path-card .card-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 166, 104, 0.35);
  color: #e7cfac;
  background: rgba(201, 166, 104, 0.05);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 166, 104, 0.38);
  background: linear-gradient(180deg, rgba(201,166,104,0.10), rgba(201,166,104,0.05));
  color: #f0dfc2;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.path-card .btn:hover {
  transform: translateY(-1px);
  border-color: rgba(223, 190, 132, 0.58);
  background: linear-gradient(180deg, rgba(201,166,104,0.16), rgba(201,166,104,0.08));
}