.badge-card {
    position: relative;
    width: 200px;
    height: auto;
    position: relative;
    background-color: var(--color-cyan-1);
    border-radius: 20px;
    text-align: center;
    padding: 20px 10px;
}

.badge-card .badge-content {
    background-color: var(--color-white);
    color: var(--color-black);
    border-radius: 20px;
    font-family: "nunito-semibold";
    font-size: 1.125rem;
    line-height: 24px;
    font-weight: bold;
    color: var(--color-black);
    padding: 8px 16px;
}

.badge-card .badge-count {
    width: 40px;
    height: 40px;
    background-color: var(--color-red-primary);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "nunito-semibold";
    font-size: 1.125rem;
    line-height: 24px;
    font-weight: bold;
    color: var(--color-white);
    position: absolute;
    top: 10px;
    right: 10px;
}