/* LISG Dynamic Category Buttons */

.lisg-dcb {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0;
}

.lisg-dcb-btn {
	display: inline-block;
	padding: 10px 22px;
	border: 1px solid #DB6B30;
	color: #DB6B30;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	background: transparent;
	transition: background-color 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}

.lisg-dcb-btn:hover {
	background-color: #DB6B30;
	color: #fff;
}

.lisg-dcb-pills .lisg-dcb-btn {
	border-radius: 999px;
}

@media (max-width: 767px) {
	.lisg-dcb {
		gap: 8px;
		margin: 16px 0;
	}

	.lisg-dcb-btn {
		padding: 8px 16px;
		font-size: 12px;
	}
}
