.seb {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	text-decoration: none;
	cursor: pointer;
}

.seb__label { line-height: 1; }
.seb__icon { width: 1em; height: 1em; flex: 0 0 auto; }

/* Variant */
.seb--button { padding: .5em .9em; border-radius: .375rem; font-weight: 600; }
.seb--link { text-decoration: underline; }

/* Size */
.seb--sm { font-size: .875rem; }
.seb--md { font-size: 1rem; }
.seb--lg { font-size: 1.125rem; }

/* Color schemes */
.seb--primary { background: #2563eb; color: #fff; }
.seb--secondary { background: #6b7280; color: #fff; }
.seb--text { background: transparent; color: inherit; }

/* Icon placement */
.seb--icon-left .seb__icon { margin-right: .5em; }
.seb--icon-right .seb__icon { margin-left: .5em; }


