.sig-card {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sig-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.sig-heading-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.sig-number {
    font-weight: 800;
    line-height: 1;
}

.sig-heading {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.sig-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.sig-bullets-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.sig-bullet-item {
    display: flex;
    align-items: flex-start;
}

.sig-bullet-marker {
    flex-shrink: 0;
    user-select: none;
    font-weight: bold;
}

.sig-bullet-content {
    flex-grow: 1;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .sig-header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .sig-badge {
        align-self: flex-start;
        margin-top: 4px;
    }
}
