/* ==========================================================================
   QUINE Global Blog — Editorial Refresh (2026)
   Calm, thoughtful, excellent reading experience
   ========================================================================== */

:root {
	/* Light theme */
	--surface: rgba(255, 255, 255, 0.96);
	--text: #1c1917;
	--text-muted: #5f5953;
	--accent: #5b21b6;
	--accent-hover: #6b21a8;
	--purple: #5b21b6;
	--purple-light: #7c3aed;
	--gradient-purple: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
	--border: #d6e3f0;
	--code-bg: #0f172a;
	--code-text: #e0f2fe;
	--link: #4f2a8f;
	--link-visited: #5b21b6;

	--title-hover: #7c3aed; /* slightly more violet for post title hovers (light mode) */
}

/* Dark theme */
.dark {
	--bg: #121217;
	--surface: rgba(28, 27, 34, 0.96);
	--text: #f1f0eb;
	--text-muted: #a5a19a;
	--accent: #a78bfa;
	--accent-hover: #c4b5fd;
	--purple: #a78bfa;
	--purple-light: #c4b5fd;
	--gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #c4b5fd 100%);
	--border: #3a3842;
	--code-bg: #1e1e26;
	--code-text: #c4d0ff;
	--link: #b8a4ff;
	--link-visited: #9f8ae8;

	--title-hover: #c4b5fd; /* slightly more violet for post title hovers (dark mode) */
}

html, body {
	margin: 0;
	padding: 0;
	color: var(--text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;

	/* Blue ocean-like gradient background (light mode) */
	background: linear-gradient(
		180deg,
		#5fa8d3 0%,
		#2a6fa8 38%,
		#0d2744 100%
	);
}

/* Dark mode keeps solid background */
.dark html, .dark body {
	background: var(--bg);
}

/* ==========================================================================
   Layout Container
   ========================================================================== */

.blog {
	max-width: 780px;
	margin: 0 auto;
	padding: 2.5rem 1.25rem 4rem;
	background: var(--surface);
	min-height: 100vh;
	box-shadow: 0 0 0 1px var(--border);
	position: relative;
	backdrop-filter: blur(12px);
}

/* Very subtle top wash */
.blog::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.025) 0%,
		transparent 100%
	);
	pointer-events: none;
	z-index: 0;
}

.dark .blog::before {
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.03) 0%,
		transparent 100%
	);
}

/* Slightly tighter on small screens */
@media (max-width: 640px) {
	.blog {
		padding: 1.75rem 1rem 3rem;
		box-shadow: none;
	}
}

/* ==========================================================================
   Header (Home only)
   ========================================================================== */

header {
	margin-bottom: 3rem;
	padding-bottom: 1.75rem;
	border-bottom: 1px solid var(--border);
	position: relative;
}

/* Subtle purple gradient accent under the header */
header::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 120px;
	height: 3px;
	background: var(--gradient-purple);
	border-radius: 3px;
}

header img {
	display: block;
	height: 72px;
	width: auto;
	margin-bottom: 0.75rem;
}

header > div {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.5;
}

header strong {
	background: var(--gradient-purple);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}

/* ==========================================================================
   Post List (Home)
   ========================================================================== */

.post-teaser {
	display: block;
	color: inherit;
	text-decoration: none;
	margin-bottom: 2.25rem;
	padding: 1.1rem 0.75rem 1.35rem;
	border-radius: 6px;
	border-bottom: 1px solid var(--border);
	transition: background-color 0.3s ease;   /* exit speed */
	position: relative;
	overflow: hidden;
}

.post-teaser-content {
	max-width: 23.125rem; /* ~370px equivalent */
}

.post-teaser:hover {
	background-color: rgba(0, 0, 0, 0.028);
	transition: background-color 0.8s ease;   /* slow fade-in on hover */
}

.dark .post-teaser:hover {
	background-color: rgba(255, 255, 255, 0.032);
	transition: background-color 0.8s ease;
}

.dark .post-date {
	background: rgba(20, 40, 70, 0.6);
	border-color: rgba(80, 110, 150, 0.4);
	color: #a3b8d0;
}

/* Sequential diagonal slashes on the right half of the card on hover */
.post-slash-container {
	position: absolute;
	top: 0;
	right: 0;
	width: 52%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.4s ease-in;
}

.post-teaser:hover .post-slash-container {
	opacity: 1;
}

.post-slash-container .slash {
	position: absolute;
	top: 12%;
	width: 2.5px;
	height: 76%;
	background: rgba(91, 33, 182, 0.22);
	transform: rotate(48deg);
	/* The container now controls the overall fade-in.
	   Once visible, the slashes run their continuous pulse. */
	opacity: 0.25;
	animation: slash-pulse 2.6s ease-in-out infinite;
}

.dark .post-slash-container .slash {
	background: rgba(167, 139, 250, 0.26);
}

/* Stagger the pulsing animation per slash */
.post-slash-container .slash:nth-child(1) { left: 6%;  animation-delay: 0ms; }
.post-slash-container .slash:nth-child(2) { left: 18%; animation-delay: 180ms; }
.post-slash-container .slash:nth-child(3) { left: 30%; animation-delay: 360ms; }
.post-slash-container .slash:nth-child(4) { left: 42%; animation-delay: 540ms; }
.post-slash-container .slash:nth-child(5) { left: 54%; animation-delay: 720ms; }

@keyframes slash-pulse {
	0%, 100% { opacity: 0.15; }
	50%      { opacity: 0.85; }
}

.post-teaser:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--accent);
	border-radius: 6px;
}

.post-teaser:last-child {
	border-bottom: none;
	padding-bottom: 0.6rem;
	margin-bottom: 0;
}

.post-date {
	display: block;
	width: fit-content;
	font-size: 0.7rem;
	font-style: italic;
	letter-spacing: 0.02em;
	padding: 0.2rem 0.6rem;
	border-radius: 9999px;
	background: rgba(15, 39, 68, 0.08);
	color: #2c4a6e;
	border: 1px solid rgba(15, 39, 68, 0.18);
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.post-teaser h1,
.post-teaser h2 {
	font-size: 1.35rem;
	line-height: 1.25;
	margin: 0.1rem 0 0.45rem;
	font-weight: 700;
	color: var(--text);
	transition: color 0.12s ease;
}

.post-teaser:hover h2 {
	color: var(--title-hover);
}

.teaser {
	margin: 0.3rem 0 0.6rem;
	color: var(--text-muted);
	font-size: 0.98rem;
	line-height: 1.55;
}

.read-more {
	display: inline-block;
	font-size: 0.9rem;
	color: var(--accent);
	font-weight: 500;
	position: relative;
	transition: color 0.12s ease;
	pointer-events: none; /* the whole card is the link */
}

.post-teaser:hover .read-more {
	color: var(--accent-hover);
}

.post-teaser:hover .read-more::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 1.5px;
	background: var(--gradient-purple);
	border-radius: 2px;
}

/* ==========================================================================
   Computing Facts Ticker (Home only)
   ========================================================================== */

.computing-ticker {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	overflow: hidden;
	margin-bottom: 2rem;
	padding: 0.7rem 0.75rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 4px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 0.82rem;
	color: var(--text-muted);
	position: relative;
	min-height: 3.1rem; /* taller box to comfortably hold two lines */
}

/* Each row is an independent horizontal scroller */
.computing-ticker-row {
	overflow: hidden;
	white-space: nowrap;
	position: relative;

	/* Soft edge fades */
	mask-image: linear-gradient(
		to right,
		transparent 0%,
		black 6%,
		black 94%,
		transparent 100%
	);
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0%,
		black 6%,
		black 94%,
		transparent 100%
	);
}

.computing-ticker-row .computing-ticker-inner {
	display: inline-flex;
	align-items: center;
	gap: 0; /* we control spacing via the joined text */
	animation: ticker-scroll 34s linear infinite;
}

/* Preserve trailing spaces/nbsp at the seam of the duplicated marquee content */
.computing-ticker-inner span {
	white-space: pre;
}

/* Second row scrolls at a different speed for a nice layered effect */
.computing-ticker-row:nth-child(2) .computing-ticker-inner {
	animation-duration: 47s;
	animation-delay: -12s; /* offset so they don't look synchronized */
}

/* Never pause on hover */
.computing-ticker:hover .computing-ticker-inner {
	animation-play-state: running;
}

@keyframes ticker-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}



/* ==========================================================================
   Article / Markdown Content
   ========================================================================== */

.markdown {
	max-width: 68ch;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.78;
}

.markdown h1 {
	font-size: 2.05rem;
	line-height: 1.15;
	margin: 0 0 1.5rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	opacity: 0.85;
	display: flex;
	align-items: center;
	gap: 1rem;
	justify-content: center;
	color: var(--text);
}

.markdown h1::before,
.markdown h1::after {
	content: '';
	flex: 1;
	max-width: 90px;
	border-top: 1px dashed var(--accent);
	opacity: 0.35;
}

.markdown h2 {
	font-size: 1.45rem;
	margin: 2.1em 0 0.6em;
	font-weight: 700;
	line-height: 1.2;
}

.markdown h3 {
	font-size: 1.2rem;
	margin: 1.85em 0 0.5em;
	font-weight: 600;
}

.markdown h4,
.markdown h5,
.markdown h6 {
	font-size: 1.05rem;
	margin: 1.6em 0 0.4em;
	font-weight: 600;
}

.markdown p {
	margin: 0 0 1.15em;
}

.markdown a,
.markdown a:link,
.markdown a:visited {
	color: var(--link);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
}

.markdown a:hover {
	color: var(--accent-hover);
	text-decoration-thickness: 1.5px;
}

.markdown strong {
	font-weight: 600;
}

.markdown em {
	font-style: italic;
}

/* Images */
.markdown img {
	display: block;
	margin: 1.75rem auto;
	max-width: 100%;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.markdown figure {
	margin: 2rem 0;
}

.markdown figcaption {
	margin-top: 0.6rem;
	font-size: 0.875rem;
	color: var(--text-muted);
	text-align: center;
	font-style: italic;
	line-height: 1.4;
}

/* Blockquotes — clean, editorial with purple gradient accent */
.markdown blockquote {
	margin: 1.9rem 0;
	padding: 1rem 1.35rem 1rem 1.5rem;
	border-left: 4px solid;
	border-image: linear-gradient(to bottom, var(--purple), var(--purple-light)) 1;
	background: rgba(0, 0, 0, 0.025);
	color: var(--text);
	font-size: 1.02rem;
	line-height: 1.7;
}

.dark .markdown blockquote {
	background: rgba(255, 255, 255, 0.04);
}

.markdown blockquote p:last-child {
	margin-bottom: 0;
}

/* Code — inline vs block */
.markdown code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	background: rgba(0, 0, 0, 0.06);
	color: #3f2e1e;
	padding: 0.12em 0.4em;
	border-radius: 4px;
	font-size: 0.9em;
	overflow-wrap: anywhere;
}

.dark .markdown code {
	background: rgba(255, 255, 255, 0.08);
	color: #d1c4ff;
	overflow-wrap: anywhere;
}

.markdown pre {
	margin: 1.65rem 0;
	padding: 1rem 1.15rem;
	background: var(--code-bg);
	color: var(--code-text);
	border-radius: 6px;
	overflow-x: auto;
	font-size: 0.92rem;
	line-height: 1.55;
}

.markdown pre code {
	background: transparent;
	color: inherit;
	padding: 0;
	border-radius: 0;
	display: inline;
	font-size: inherit;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
}

/* Lists */
.markdown ul,
.markdown ol {
	margin: 1.1rem 0 1.3rem;
	padding-left: 1.35rem;
}

.markdown li {
	margin-bottom: 0.35rem;
}

/* Horizontal rule */
.markdown hr {
	border: none;
	border-top: 1px solid var(--border);
	margin: 2.4rem 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.35rem 0.9rem;
	margin-top: 3.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--border);
	font-size: 0.9rem;
	color: var(--text-muted);
}

.footer a,
.footer a:link,
.footer a:visited {
	color: var(--text-muted);
	text-decoration: none;
	padding: 0.25rem 0.1rem;
	transition: color 0.1s ease;
}

.footer a:hover {
	color: var(--accent);
}

.footer .spacer {
	display: none;
}

/* Back link on secondary pages (About, Credits) */
.back-to-home {
	margin: 0 0 2rem;
	font-size: 0.9rem;
}

/* Hierarchy indicator on home page - vertical bordered boxes */
.site-hierarchy {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.75rem;
	margin-bottom: 0.5rem;
	gap: 0.1rem;
}

.site-hierarchy .hierarchy-parent,
.site-hierarchy .hierarchy-current {
	display: inline-block;
	padding: 0.3rem 0.7rem;
	border: 1px solid var(--border);
	border-radius: 4px;
	font-size: 0.8rem;
}

.site-hierarchy .hierarchy-parent {
	color: var(--text-muted);
	text-decoration: none;
}

.site-hierarchy .hierarchy-parent:hover {
	background: rgba(0, 0, 0, 0.04);
	color: var(--accent);
}

.site-hierarchy .hierarchy-current {
	background: rgba(0, 0, 0, 0.05);
	font-weight: 600;
	color: var(--text);
}

.site-hierarchy .hierarchy-connector {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid var(--text-muted);
	margin: 1px 0;
	align-self: center;
}

.dark .site-hierarchy .hierarchy-parent {
	border-color: #3f4654;
	color: #a5a19a;
}

.dark .site-hierarchy .hierarchy-parent:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #c4b5fd;
}

.dark .site-hierarchy .hierarchy-current {
	background: rgba(255, 255, 255, 0.07);
	border-color: #3f4654;
	color: #e2e8f0;
}

.dark .site-hierarchy .hierarchy-connector {
	border-top-color: #a5a19a;
}

.back-to-home a,
.back-to-home a:link,
.back-to-home a:visited {
	color: var(--text-muted);
	text-decoration: none;
}

.back-to-home a:hover {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Pill button style for the « Back to all posts link at the top of blog posts.
   (Distinct from the simple text link used on About/Credits pages.) */
.back-to-home .back-to-posts,
a.back-to-posts {
	background-color: #f8f9fb;
	border: 1px solid #e2e8f0;
	padding: 0.55rem 1rem;
	border-radius: 9999px;
	font-size: 0.9rem;
	color: #1c1917;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.15s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	display: inline-block;
	margin-bottom: 1.25rem; /* breathing room before the post title */
}

.back-to-home .back-to-posts:hover,
a.back-to-posts:hover {
	background-color: #ffffff;
	border-color: var(--accent);
	color: var(--accent);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	text-decoration: none;
}

.dark .back-to-home .back-to-posts,
.dark a.back-to-posts {
	background-color: #2a2f38;
	border-color: #3f4654;
	color: #e2e8f0;
}

.dark .back-to-home .back-to-posts:hover,
.dark a.back-to-posts:hover {
	background-color: #343b47;
	border-color: #a78bfa;
	color: #c4b5fd;
}

/* ==========================================================================
   General Links (outside article)
   ========================================================================== */

a, a:link, a:visited {
	color: var(--link);
}

a:hover {
	color: var(--accent-hover);
}

/* ==========================================================================
   Responsive Tweaks
   ========================================================================== */

@media (max-width: 480px) {
	.markdown {
		font-size: 1rem;
		line-height: 1.72;
	}
	
	.markdown h1 {
		font-size: 1.75rem;
	}
	
	.post-teaser h1,
	.post-teaser h2 {
		font-size: 1.22rem;
	}
}

/* ==========================================================================
   Theme Toggle (Dark Mode)
   ========================================================================== */

.theme-toggle {
	position: fixed;
	top: 18px;
	right: 18px;
	z-index: 100;

	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--surface);
	color: var(--text-muted);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
	transition: all 0.2s ease;
}

.theme-toggle:hover {
	color: var(--accent);
	border-color: var(--accent);
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.theme-toggle:active {
	transform: scale(0.94);
}

.dark .theme-toggle {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Icon inside toggle */
.theme-toggle .icon {
	display: block;
	transition: transform 0.3s ease;
}

.theme-toggle:hover .icon {
	transform: rotate(20deg);
}

/* Hide default browser focus ring, add nicer one */
.theme-toggle:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.25);
}

.dark .theme-toggle:focus-visible {
	box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.3);
}

/* Elegant four-circle divider (used after footnotes etc.) */
.post-divider {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.9rem;
	margin: 2.25em 0;
}

.post-divider .circle {
	width: 0.55em;
	height: 0.55em;
	border: 1.5px solid var(--accent);
	border-radius: 50%;
	opacity: 0.65;
}

/* Other posts section on individual post pages */
.other-posts {
	margin-top: 3rem;
	padding: 1.75rem 3rem 0;
	border-top: 1px solid var(--border);
}

.other-posts h3 {
	font-size: 0.95rem;
	margin: 0 0 0.6rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.other-posts ul {
	list-style: none;
	padding: 0;
	margin: 0 0 0.9rem;
}

.other-posts li {
	margin-bottom: 0.35rem;
}

.other-posts li a {
	color: var(--text);
	text-decoration: none;
	font-size: 0.95rem;
}

.other-posts li a:hover {
	color: var(--accent);
	text-decoration: underline;
}

/* Scattered post cards in the Other posts section */
.scattered-posts {
	position: relative;
	min-height: 220px;
	max-width: 45rem; /* ~720px container so rightmost cards can reach ~570px left */
	margin: 0.75rem 0 1rem;
	background: rgba(0, 0, 0, 0.018);
	border-radius: 8px;
}

.dark .scattered-posts {
	background: rgba(255, 255, 255, 0.025);
}

.scattered-post {
	position: absolute;
	display: block;
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 0.55rem 0.8rem;
	max-width: 185px;
	font-size: 0.92rem;
	line-height: 1.25;
	color: var(--text);
	text-decoration: none;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	z-index: 1;
}

.dark .scattered-post {
	background: #2a2f38;
	border-color: #3f4654;
	color: #e2e8f0;
}

.scattered-post:hover {
	transform: scale(1.03) rotate(0deg) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	z-index: 10;
	color: var(--accent);
}

.dark .scattered-post:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Positions are now generated randomly at runtime via inline styles for true variety */

/* Actions row below other posts list */
.other-posts-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
}

/* Greedy spacer that pushes "Check out all our cool Global Projects >" all the way to the right */
.other-posts-actions-spacer {
	flex: 1 1 auto;
}

/* Header row inside Other posts: label on left, Re-shuffle button right-aligned */
.other-posts-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.4rem;
}

/* Re-shuffle button */
.reshuffle-btn {
	font-size: 0.75rem;
	padding: 0.25rem 0.6rem;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text-muted);
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.15s ease;
}

.reshuffle-btn:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.other-posts-actions a {
	background-color: #f8f9fb;
	border: 1px solid #e2e8f0;
	padding: 0.55rem 1rem;
	border-radius: 9999px;
	font-size: 0.9rem;
	color: #1c1917;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.15s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.other-posts-actions a:hover {
	background-color: #ffffff;
	border-color: var(--accent);
	color: var(--accent);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.dark .other-posts-actions a {
	background-color: #2a2f38;
	border-color: #3f4654;
	color: #e2e8f0;
}

.dark .other-posts-actions a:hover {
	background-color: #343b47;
	border-color: #a78bfa;
	color: #c4b5fd;
}

/* Styling for the final "For more insights about..." / footer note on posts */
.post-footer-note {
	background: rgba(255, 255, 255, 0.65);
	border-left: 4px solid var(--accent);
	padding: 1.1rem 1.4rem;
	margin: 2.5rem 0 1.5rem !important;
	border-radius: 0 6px 6px 0;
	font-size: 0.97rem;
	line-height: 1.55;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dark .post-footer-note {
	background: rgba(42, 47, 56, 0.75);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}



