.cg {
  display: grid;
  gap: 16px;
}

.cg-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.cg-tiers {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.cg-card {
  background: #fff;
  border: 1px solid #eadfcf;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(58, 47, 40, 0.06);
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cg-card:hover {
  box-shadow: 0 14px 32px rgba(58, 47, 40, 0.12);
  transform: translateY(-3px);
}

.cg-tag {
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  left: 14px;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  position: absolute;
  text-transform: uppercase;
  top: -10px;
}

.cg-tag.gold {
  background: #f2c14e;
  color: #5c4700;
}

.cg-tag.green {
  background: #2e6b4f;
  color: #fff;
}

.cg-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 6px;
}

.cg-price {
  color: #b02422;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cg-price small s {
  color: #a29482;
  font-size: 14px;
  font-weight: 500;
}

.cg-tagline {
  color: #7a6b5d;
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.cg-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.cg-trust {
  background: #fdf8f1;
  border: 1px solid #eadfcf;
  border-radius: 999px;
  color: #7a6b5d;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
}

.cg-cta {
  display: flex;
}

.cg-btn {
  border-radius: 9px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.cg-btn-solid {
  background: #b02422;
  border: 1px solid #b02422;
  color: #fff;
}

.cg-btn-solid:hover {
  background: #8f1c1a;
}

.cg-btn-coming {
  background: #eadfcf;
  border-color: #eadfcf;
  color: #7a6b5d;
  cursor: default;
}

.cg-view {
  color: #2e6b4f;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
}

.cg-view:hover {
  text-decoration: underline;
}
