/* =========================================================
   Education Podcast — Landing Styles
   Design reference: Figma frame "Podcast" (9296:142615)
   Colors: bg #000, accent #0fef9e, text #fff, muted #9f9f9f
   Font: Manrope (loaded via Google Fonts)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

/* ── Design tokens ──────────────────────────────────────── */
:root {
	--pod-bg:          #000000;
	--pod-white:       #ffffff;
	--pod-primary:     #0fef9e;
	--pod-primary-dim: #098D5E;
	--pod-gray-100:    #f2f2f2;
	--pod-gray-200:    #dfdfdf;
	--pod-gray-300:    #bfbfbf;
	--pod-gray-400:    #9f9f9f;
	--pod-gray-500:    #808080;
	--pod-gray-600:    #606060;
	--pod-gray-700:    #404040;
	--pod-gray-800:    #202020;
	--pod-gray-900:    #151515;
	--pod-border:      rgba(255, 255, 255, 0.12);

	--pod-font:        'Manrope', sans-serif;
	--pod-radius:      4px;
	--pod-radius-card: 8px;

	--pod-container:   1200px;
	--pod-gutter:      120px;
}

/* ── Wrapper ────────────────────────────────────────────── */

/*
 * Same wrapper-override trick used by the article landing: the default
 * page.php template wraps content in `.container` which adds horizontal
 * padding.  Cancel it so `.podcast-page` owns its own gutters and the
 * content lines up with the Figma 1200px content area at 1440px.
 */
.container:has(.podcast-page) {
	padding-inline: 0;
}

/*
 * Overview pagination is AJAX-driven (article-landing parity).  Skip the
 * global #page opacity fade (global.css) so pagination does not flash.
 */
body:has(.podcast-page:not(.podcast-page--search)) #page {
	opacity: 1;
}

.podcast-page {
	background-color: var(--pod-bg);
	color: var(--pod-white);
	font-family: var(--pod-font);
	width: 100%;
}

/*
 * Overview: keep the CTA attached to #iux-footer by distributing the
 * overview body and CTA across the available vertical space.
 */
body:has(.podcast-page--overview) #content {
	display: flex;
	flex-direction: column;
}

body:has(.podcast-page--overview) #content > main,
body:has(.podcast-page--overview) #content > .podcast-page--overview,
body:has(.podcast-page--overview) #content .container,
body:has(.podcast-page--overview) #content article,
body:has(.podcast-page--overview) #content .entry-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 0;
}

.podcast-page--overview {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
}

.podcast-page--overview .podcast-page__content {
	width: 100%;
}

/*
 * Search results: pin .podcast-cta above #iux-footer when results are short
 * (same flex-column pattern as the overview --cta-footer surface above).
 */
body:has(.podcast-page--search) #content {
	display: flex;
	flex-direction: column;
}

body:has(.podcast-page--search) #content > main,
body:has(.podcast-page--search) #content > .podcast-page--search,
body:has(.podcast-page--search) #content .container,
body:has(.podcast-page--search) #content article,
body:has(.podcast-page--search) #content .entry-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 0;
}

.podcast-page--search {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.podcast-page--search .podcast-cta {
	margin-top: auto;
}

/* ── Sub-header (Breadcrumb + Search) ───────────────────── */
.podcast-subheader {
	background-color: var(--pod-bg);
}

.podcast-subheader__inner {
	max-width: 1440px;
	margin-inline: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	padding: 24px 64px;
	box-sizing: border-box;
	min-height: 96px;
}

/* Breadcrumb — EN:Manrope/H6 (12px / 500 / 18px) */
.podcast-subheader__breadcrumb .rank-math-breadcrumb p {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 2px;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	font-family: var(--pod-font);
}

.podcast-page .podcast-subheader__breadcrumb .rank-math-breadcrumb a {
	color: var(--pod-white) !important;
	text-decoration: none;
	transition: text-decoration-color 0.2s ease;
}

.podcast-page .podcast-subheader__breadcrumb .rank-math-breadcrumb a:hover {
	color: var(--pod-white) !important;
	text-decoration: underline;
}

.podcast-subheader__breadcrumb .rank-math-breadcrumb .separator {
	color: var(--pod-gray-400);
	user-select: none;
	font-size: 10px;
}

.podcast-subheader__breadcrumb .rank-math-breadcrumb .last {
	color: var(--pod-gray-400);
}

/* Search input */
.podcast-subheader__search {
	flex-shrink: 0;
}

.podcast-search {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 239px;
	padding: 11px 16px;
	border: 1px solid var(--pod-gray-200);
	border-radius: var(--pod-radius);
	box-sizing: border-box;
	transition: border-color 0.2s ease;
}

.podcast-search:focus-within {
	border-color: var(--pod-primary);
}

.podcast-search__icon {
	flex-shrink: 0;
	color: var(--pod-gray-200);
	pointer-events: none;
}

.podcast-search__input {
	flex: 1;
	min-width: 0;
	background-color: transparent;
	border: none;
	color: var(--pod-white);
	font-family: var(--pod-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 0;
	outline: none;
}

.podcast-search__input::placeholder {
	color: var(--pod-gray-200);
}

.podcast-search__input::-webkit-search-cancel-button,
.podcast-search__input::-webkit-search-decoration {
	display: none;
}

.podcast-search__clear {
	display: none;
	flex-shrink: 0;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	color: var(--pod-gray-200);
	line-height: 0;
	transition: color 0.2s ease;
}

a.podcast-search__clear {
	text-decoration: none;
}

.podcast-search__clear:hover {
	color: var(--pod-white);
}

.podcast-search.has-value .podcast-search__clear {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ── Hero — title + subtitle + streaming buttons ───────── */
.podcast-hero {
	background-color: var(--pod-bg);
	padding: 96px 64px;
	text-align: center;
}

.podcast-hero__inner {
	max-width: 990px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

/* H1 — Figma EN:Manrope/H1 (64 / 500 / 96 lh) */
.podcast-hero__title {
	font-size: 64px;
	font-weight: 500;
	line-height: 96px;
	color: var(--pod-white);
	margin: 0;
}

/* H5 — Figma EN:Manrope/H5 (18 / 500 / 28 lh) */
.podcast-hero__subtitle {
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	color: var(--pod-gray-400);
	margin: 0;
}

/* Streaming platform pill buttons */
.podcast-streams {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.podcast-stream {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid var(--pod-gray-200);
	border-radius: var(--pod-radius);
	background: transparent;
	color: var(--pod-gray-200);
	font-family: var(--pod-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.podcast-stream:hover {
	background-color: var(--pod-gray-800);
	border-color: var(--pod-gray-400);
	color: var(--pod-gray-400);
}

.podcast-stream.is-disabled {
	cursor: default;
	opacity: 0.6;
}

.podcast-stream.is-disabled:hover {
	border-color: var(--pod-gray-200);
	color: var(--pod-gray-200);
	background-color: transparent;
}

.podcast-stream__icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.podcast-stream__icon svg {
	display: block;
}

/* ── Search Results header (replaces hero on /search route) */
.podcast-search-header {
	padding-block: 0;
}

.podcast-search-header__title {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--pod-white);
	margin: 0 0 12px;
}

.podcast-page--search .podcast-main {
	padding-top: 0;
	border-top: none;
}

.podcast-page--search .podcast-main__inner {
	padding-top: 0;
}

/* FR-06: flat episode grid on /search (not grouped by series).
 * Combined selector beats `.podcast-series-list { display:flex }` below. */
.podcast-series-list.podcast-search-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	min-height: 200px;
	position: relative;
}

.podcast-series-list.podcast-search-grid.is-loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: var(--pod-radius-card);
}

.podcast-page--search .podcast-card__listen {
	display: none;
}

.podcast-series-list.podcast-search-grid .podcast-empty {
	grid-column: 1 / -1;
}

.podcast-series-list.podcast-search-grid .podcast-card {
	min-width: 0;
	width: 100%;
}

.podcast-series-list.podcast-search-grid .podcast-card__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ── Main section — "Choose Your Podcast" ──────────────── */
.podcast-main {
	background-color: var(--pod-bg);
	border-top: 1px solid var(--pod-gray-800);
	padding-block: 96px;
}

.podcast-main__inner {
	max-width: calc(var(--pod-container) + var(--pod-gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--pod-gutter);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.podcast-main__header {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* H3 — Figma EN:Manrope/H3 (32 / 500 / 48 lh) */
.podcast-main__title {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 32px;
	font-weight: 500;
	line-height: 48px;
	margin: 0;
	white-space: nowrap;
}

.podcast-main__title-text {
	color: var(--pod-gray-100);
}

.podcast-main__title-accent {
	color: var(--pod-primary);
}

.podcast-main__desc {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--pod-gray-400);
	margin: 0;
}

/* ── Results count (search route only) ──────────────────── */
.podcast-count {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: var(--pod-gray-400);
	margin: 0 0 24px;
}

/* ── Series list — one row per podcast series ──────────── */
.podcast-series-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
}

/*
 * Overview rows (not search grid): disable scroll anchoring so the browser
 * does not re-adjust scroll position when page height changes — e.g. page 2
 * used to be short (few series) and grew as more content was published.
 */
.podcast-series-list:not(.podcast-search-grid) {
	overflow-anchor: none;
}

.podcast-series-list.is-loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: var(--pod-radius-card);
}

.podcast-empty {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	text-align: center;
	color: var(--pod-gray-400);
	font-size: 16px;
	min-height: 360px;
}

/* ── Single series row ─────────────────────────────────── */
.podcast-series {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.podcast-series__header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 0;
	border-bottom: 1px solid var(--pod-gray-800);
}

/* H5 — series title (18 / 500 / 28 lh) */
.podcast-series__title {
	flex: 1 0 0;
	min-width: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	color: var(--pod-gray-100);
	margin: 0;
}

.podcast-series__more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	border-radius: var(--pod-radius);
	background: none;
	border: none;
	color: var(--pod-gray-500);
	font-family: var(--pod-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease;
}

.podcast-series__more:hover {
	color: var(--pod-white);
}

.podcast-series__more--disabled {
	cursor: pointer;
}

.podcast-series__more-icon {
	flex-shrink: 0;
	color: currentColor;
}

/* ── Episode row grid ──────────────────────────────────── */
.podcast-series__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* ── Episode card ──────────────────────────────────────── */
.podcast-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background-color: transparent;
	border-radius: var(--pod-radius-card);
	overflow: hidden;
	min-width: 0;
}

.podcast-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.podcast-card__thumbnail {
	position: relative;
	width: 100%;
	aspect-ratio: 48 / 29;
	overflow: hidden;
	background-color: #111;
	border-radius: var(--pod-radius-card);
	flex-shrink: 0;
}

.podcast-card__thumbnail img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	display: block;
}

.podcast-card__thumbnail-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}

.podcast-card__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	padding-top: 0;
}

/* Body 1 — Figma (14 / 400 / 20 lh) */
.podcast-card__episode {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--pod-gray-400);
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.2s ease;
}

/* H5 — episode title (18 / 500 / 28 lh, 2-line clamp) */
.podcast-card__title {
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	color: var(--pod-white);
	margin: 0;
	min-height: calc(28px * 2);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.podcast-card__title a {
	color: var(--pod-white);
	text-decoration: none;
	transition: color 0.2s ease;
}

.podcast-card:hover .podcast-card__title a {
	color: var(--pod-white);
}

.podcast-card__date {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--pod-gray-400);
	margin: 0;
	flex-shrink: 0;
	transition: color 0.2s ease;
}

.podcast-card__listen {
	display: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: var(--pod-gray-500);
	text-decoration: none;
}

.podcast-card:hover .podcast-card__episode,
.podcast-card:hover .podcast-card__date {
	color: var(--pod-white);
}

/* Mobile carousel pagination dots (Figma 9296:144190) */
.podcast-series__dots {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.podcast-series__dots span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background-color: var(--pod-gray-800);
	transition: width 0.2s ease, background-color 0.2s ease;
}

.podcast-series__dots span.is-active {
	width: 24px;
	background-color: var(--pod-gray-700);
}

/* ── Pagination (mirrors articles overview) ─────────────── */
.podcast-pagination-wrap {
	margin-top: 48px;
	display: flex;
	justify-content: center;
}

.podcast-pagination {
	display: flex;
	align-items: center;
	gap: 9px;
}

/* Base — all buttons */
.podcast-pagination__btn {
	width: 32px;
	height: 32px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 8px;
	font-family: var(--pod-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

a.podcast-pagination__btn {
	text-decoration: none;
}

/* Page number — inactive */
.podcast-pagination__page {
	background: transparent;
	border-color: #404040;
	color: #098D5E;
}

.podcast-pagination__page:hover:not(:disabled) {
	border-color: #0FEF9E;
	color: #0FEF9E;
}

/* Page number — active */
.podcast-pagination__page.is-active {
	background: transparent;
	border-color: #0FEF9E;
	color: #0FEF9E;
}

/* Nav buttons (<<, <, >, >>) — enabled */
.podcast-pagination__nav {
	background: #0FEF9E;
	border-color: transparent;
	color: #151515;
	transition: background-color 0.2s ease;
}

.podcast-pagination__nav:hover:not(:disabled) {
	background: #065C3D;
}

/* Nav buttons — disabled */
.podcast-pagination__nav:disabled {
	background: #151515;
	border-color: transparent;
	color: #404040;
	cursor: not-allowed;
}

/* Ellipsis — styled as inactive box */
.podcast-pagination__ellipsis {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #404040;
	border-radius: 8px;
	color: #098D5E;
	font-size: 16px;
}

/* ── CTA section ────────────────────────────────────────── */
.podcast-cta {
	background-color: var(--pod-bg);
	position: relative;
	overflow: hidden;
	padding: 32px 64px;
	box-sizing: border-box;
}

.podcast-cta__glow {
	position: absolute;
	width: 202px;
	height: 152px;
	bottom: -80px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--pod-primary);
	border-radius: 999px;
	filter: blur(140px);
	pointer-events: none;
}

.podcast-cta__inner {
	max-width: 1440px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	position: relative;
}

.podcast-cta__title {
	font-size: 32px;
	font-weight: 500;
	line-height: 48px;
	color: var(--pod-white);
	text-align: center;
	margin: 0;
}

.podcast-cta__desc {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--pod-gray-400);
	text-align: center;
	margin: 0;
	max-width: 880px;
}

.podcast-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: var(--pod-primary);
	border-radius: var(--pod-radius);
	color: var(--pod-gray-800);
	font-family: var(--pod-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease;
}

.podcast-cta__btn:hover {
	background: var(--pod-primary-dim);
	color: var(--pod-gray-800);
}

/* ── Loading spinner (injected by JS) ───────────────────── */
.podcast-spinner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 0;
	width: 100%;
}

.podcast-spinner::after {
	content: '';
	width: 32px;
	height: 32px;
	border: 3px solid var(--pod-border);
	border-top-color: var(--pod-primary);
	border-radius: 50%;
	animation: podcast-spin 0.7s linear infinite;
}

@keyframes podcast-spin {
	to { transform: rotate(360deg); }
}

/* ── Responsive ─────────────────────────────────────────── */

/* Tablet — align CTA title sizing across landing/detail surfaces */
@media (max-width: 1024px) {
	.podcast-cta__title {
		font-size: 24px;
		line-height: 36px;
	}
}

/* Tablet — Figma frame 9296:142773 (834px) */
@media (max-width: 1024px) and (min-width: 769px) {
	.podcast-subheader__inner {
		padding: 24px;
	}

	.podcast-hero {
		padding: 96px 64px;
	}

	.podcast-main__inner {
		padding-inline: 24px;
	}

	.podcast-main {
		padding-block: 96px;
	}

	.podcast-cta {
		padding: 32px 24px;
	}

	.podcast-search-header__title {
		font-size: 32px;
	}

	.podcast-series__title {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	/* 2-col grid — show latest two episodes only */
	.podcast-series__row {
		grid-template-columns: repeat(2, 1fr);
		max-width: none;
	}

	.podcast-page:not(.podcast-page--search) .podcast-series__row .podcast-card:nth-child(n+3) {
		display: none !important;
	}

	.podcast-series__row[data-episode-count="1"] {
		grid-template-columns: minmax(0, 1fr);
		max-width: 50%;
	}

	.podcast-series-list.podcast-search-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile — Figma frame 9296:144110 (390px) */
@media (max-width: 768px) {
	.podcast-subheader__inner {
		height: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
		padding: 24px 16px;
	}

	.podcast-subheader__search {
		width: 100%;
	}

	.podcast-search {
		width: 100%;
	}

	.podcast-hero {
		padding: 96px 16px;
	}

	.podcast-hero__title {
		font-size: 48px;
		line-height: 72px;
	}

	.podcast-hero__subtitle {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.podcast-search-header__title {
		font-size: 32px;
	}

	.podcast-streams {
		gap: 16px;
	}

	.podcast-main {
		padding-block: 96px;
	}

	.podcast-main__inner {
		padding-inline: 16px;
	}

	.podcast-main__title {
		font-size: 24px;
		line-height: 36px;
	}

	.podcast-series__title {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.podcast-cta {
		padding: 32px 24px;
	}

	.podcast-cta__glow {
		filter: blur(200px);
	}

	.podcast-series {
		align-items: center;
	}

	.podcast-series__header {
		width: 100%;
	}

	.podcast-card__title {
		-webkit-line-clamp: 2;
		line-clamp: 2;
		min-height: calc(28px * 2);
	}

	.podcast-series__dots {
		display: flex;
	}

	/* Horizontal swipe carousel (FR-03 — up to 3 cards) */
	.podcast-series__row {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-x: contain;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 24px;
		max-width: none;
		width: 100%;
		padding-bottom: 4px;
	}

	.podcast-series__row::-webkit-scrollbar {
		display: none;
	}

	.podcast-page:not(.podcast-page--search) .podcast-series__row .podcast-card {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		scroll-snap-align: start;
	}

	.podcast-page:not(.podcast-page--search) .podcast-series__row .podcast-card:nth-child(n+3) {
		display: flex !important;
	}

	.podcast-series-list.podcast-search-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.podcast-page--search .podcast-card__title {
		-webkit-line-clamp: 2;
		line-clamp: 2;
		min-height: calc(28px * 2);
	}
}
