/* ======================
   WORK — FILTERS SECTION
   ====================== */

.work-content {
	width: 100%;
	margin: 0 auto;
	padding: 0 40px 80px;
}

@media (max-width: 768px) {
	.work-content {
		padding: 0 20px 0;
	}
}

.work-filters {
	padding: 16px 0;
	border-bottom: 1px solid #e2e5e9;
	max-width: 1400px;
	margin: 0 auto;
}

.work-filters__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-items: center;
}

/* Default: no border, no background */
.work-filter-btn {
	font-family: "Oxygen", sans-serif;
	font-size: 16px;
	font-weight: 700;
	font-style: normal;
	line-height: 24px;
	color: #404040;
	background: transparent;
	border: 2px solid transparent;
	border-radius: 100px;
	padding: 12px 20px;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.work-filter-btn:hover,
.work-filter-btn:focus {
	color: #554FE0 !important;
	background-color: transparent !important;
}

/* Active: solid purple border, white fill */
.work-filter-btn--active {
	border: 1px solid #554FE0;
	background: #ffffff;
	color: #554FE0;
}

.work-filter-btn--active:hover,
.work-filter-btn--active:focus {
	color: #554FE0 !important;
	background-color: #ffffff !important;
}

/* ---- Mobile toggle button — hidden on desktop ---- */
.work-filters__toggle {
	display: none;
}

/* ---- Mobile ≤768px ---- */
@media (max-width: 768px) {

	/* Toggle header */
	.work-filters__toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		background: transparent !important;
		border: none;
		padding: 0;
		cursor: pointer;
		font-family: "Oxygen", sans-serif;
		font-size: 16px;
		font-weight: 700;
		color: #404040 !important;
	}

	.work-filters__toggle:hover,
	.work-filters__toggle:focus {
		background: transparent !important;
		background-color: transparent !important;
		color: #404040 !important;
	}

	.work-filters__toggle-label {
		font-size: 16px;
		color: #404040;
	}

	/* Show sliders icon by default, hide minus */
	.work-filters__toggle-icon--close {
		display: none;
	}

	.work-filters__toggle-icon--open {
		display: flex;
	}

	/* When open */
	.work-filters__toggle[aria-expanded="true"] {
		padding-bottom: 10px;
	}

	.work-filters__toggle[aria-expanded="true"] .work-filters__toggle-icon--open {
		display: none;
	}

	.work-filters__toggle[aria-expanded="true"] .work-filters__toggle-icon--close {
		display: flex;
	}

	/* Filter inner: hidden by default on mobile */
	.work-filters__inner {
		display: none;
		flex-direction: column;
		gap: 0;
		align-items: stretch;
		margin-top: 8px;
	}

	.work-filters__inner.is-open {
		display: flex;
	}

	/* Full-width buttons, centered text */
	.work-filter-btn {
		width: 100%;
		text-align: center;
		border-radius: 100px;
		padding: 12px 20px;
		font-size: 16px;
	}

	/* Active pill full width */
	.work-filter-btn--active {
		width: 100%;
	}
}
