.twoUfi-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 9999px;
	border-style: solid;
	border-width: 2px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1.2;
	box-sizing: border-box;
}

.twoUfi-btn:hover {
	opacity: 0.9;
	text-decoration: none;
}

.twoUfi-btn:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Sizes */
.twoUfi-btn--sm {
	padding: 8px 20px;
	font-size: 12px;
}

.twoUfi-btn--md {
	padding: 12px 28px;
	font-size: 14px;
}

.twoUfi-btn--lg {
	padding: 16px 36px;
	font-size: 16px;
}

/* Full width */
.twoUfi-btn--full {
	width: 100%;
}

/* Mobile */
@media (max-width: 950px) {
	.twoUfi-btn {
    	display: flex;
    	width: 100%;
    	line-height: 1;
        min-height: 50px;
        padding-top: 0;
        padding-bottom: 0;
		}
    .twoUfi-btn--sm { font-size: 13px; }
    .twoUfi-btn--md { font-size: 15px; }
    .twoUfi-btn--lg { font-size: 16px; }
}