/* single-series.css */

.mw-series-picker {
	max-width: 800px;
	margin: 0 auto 2.5rem;
	padding: 0 1rem;
	text-align: center;
}

.mw-series-picker-label {
	font-size: 15px;
	font-weight: 600;
	color: #0b6a6a;
	letter-spacing: .02em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.mw-series-tabs {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.mw-series-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .02em;
	padding: .6rem 1.75rem;
	border: 2px solid #0f6f6a;
	border-radius: 14px;
	background: transparent;
	color: #0f6f6a;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.mw-series-tab-date {
	font-size: 13px;
	font-weight: 400;
	opacity: .8;
}

.mw-series-tab:hover {
	background-color: rgba(15, 111, 106, 0.08);
}

.mw-series-tab.is-active {
	background-color: #0f6f6a;
	color: #ffffff;
}

.mw-series-panel {
	display: none;
}

.mw-series-panel.is-active {
	display: block;
}
