/* Language selector — lives in the site footer (added for multi-language support). */

.lang-select-wrap {
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 1.5em 0 0 0;
	color: rgba(255, 255, 255, 0.5);
	font-family: 'Source Sans Pro', Helvetica, sans-serif;
	font-size: 0.9em;
	-webkit-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.lang-select-wrap:hover {
	color: rgba(255, 255, 255, 0.85);
}

.lang-select-wrap .lang-switcher-icon {
	width: 1em;
	height: 1em;
	margin-right: 0.4em;
	color: currentColor;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

/* Visually hidden, still read by screen readers. */
.lang-select-wrap .lang-switcher-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Override the Strata theme's full-width grey <select> styling. */
.lang-select-wrap select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0 1.25em 0 0.15em;
	border: none;
	border-radius: 0;
	background-color: transparent;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23bbb3ae' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
	background-size: 0.6em;
	background-repeat: no-repeat;
	background-position: right 0.1em center;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: 1.4;
	text-overflow: clip;
	cursor: pointer;
	outline: none;
}

.lang-select-wrap select:focus {
	border: none;
	color: rgba(255, 255, 255, 0.95);
}

/* Native dropdown menu uses OS styling — keep options readable. */
.lang-select-wrap select option {
	color: #1f1815;
	background-color: #ffffff;
}
