.heightCard {
    height: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    flex-direction: column !important;
}

/* Annual-plan line shown under the "/Month" headline on pricing-table cards:
   billed yearly total + "Save $X/yr" pill on a single row. Default centered to
   match the legacy table's centered price; the pricing-v2 redesign left-aligns
   its price, so we follow it there (override below) to stay aligned. */
.card-annual-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}
.card-annual-billed {
    font-size: 0.8rem;
    color: #6b7280;
}
.card-annual-save {
    background: #ecfdf5;
    color: #047857;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
}

/* pricing-v2 cards left-align the price, so left-align the annual line too. */
.pricing-v2 .card-annual-meta {
    justify-content: flex-start;
}
