/* ========================================
ABDERAM BLOG - PREMIUM DESIGN SYSTEM
Uses shared design tokens from ../tokens.css
======================================== */

@import "../tokens.css";

:root {
	/* Blog-specific overrides */
	--content-width: 720px;
	--space-section: clamp(80px, 12vh, 140px);
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: var(--bg-elevated) var(--bg-primary);
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
	background: var(--bg-elevated);
	border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--accent);
}

::selection {
	background: var(--accent);
	color: var(--text-inverted);
}

body {
	font-family: var(--font-body);
	color: var(--text-primary);
	background: var(--bg-primary);
	line-height: 1.9;
	overflow-x: hidden;
	letter-spacing: 0.01em;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	background: none;
	border: none;
	font-family: inherit;
	cursor: pointer;
}

/* Noise Texture */
.noise-overlay {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9996;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
}

/* Cursor Spotlight */
.cursor-spotlight {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9995;
	background: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%),
			oklch(0.50 0.18 265 / 0.06) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.cursor-spotlight.active {
	opacity: 1;
}

@media (max-width: 768px) {
	.cursor-spotlight {
		display: none;
	}
}

/* ========================================
HEADER
======================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	padding: 0 var(--gutter);
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	background: oklch(0.97 0.008 75 / 0.85);
	backdrop-filter: blur(30px);
	border-bottom: 1px solid var(--border-subtle);
}

.header-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--text-primary);
	letter-spacing: -0.03em;
}

.header-logo .accent {
	color: var(--accent);
}

.header-logo img {
	height: 120px;
	width: auto;
}

.header-logo svg {
	width: 32px;
	height: 32px;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.header-nav a {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-secondary);
	letter-spacing: 0.08em;
	position: relative;
	padding: 8px 0;
	transition: color 0.3s ease;
}

.header-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--accent);
	transition: width 0.5s var(--ease-out);
}

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

.header-nav a:hover::after {
	width: 100%;
}

.header-nav .nav-cta {
	padding: 10px 22px;
	background: var(--accent);
	color: var(--text-inverted);
	border-radius: 100px;
	font-weight: 600;
	transition: transform 0.4s var(--ease-out), background 0.3s ease, box-shadow 0.4s ease;
}

.header-nav .nav-cta::after {
	display: none;
}

.header-nav .nav-cta:hover {
	background: var(--accent-hover);
	transform: scale(1.05);
	box-shadow: 0 15px 40px oklch(0.50 0.18 265 / 0.25);
}

.header-nav .nav-active {
	color: var(--accent);
}

.header-nav .nav-active::after {
	width: 100%;
}

@media (max-width: 768px) {
	.header {
		height: 60px;
		padding: 0 20px;
	}

	.header-logo img {
		height: 72px;
	}

	.header-nav a {
		font-size: 12px;
	}

	.header-nav .nav-cta {
		padding: 8px 16px;
		font-size: 12px;
	}
}

/* ========================================
BLOG HERO
======================================== */
.blog-hero {
	padding: 140px var(--gutter) var(--space-xl);
	max-width: 1200px;
	margin: 0 auto;
}

.blog-hero-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin-bottom: var(--space-md);
	opacity: 0.8;
}

.blog-hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 7vw, 5rem);
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin-bottom: var(--space-md);
	max-width: 800px;
}

.blog-hero-subtitle {
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
	color: var(--text-secondary);
	line-height: 1.9;
	max-width: 560px;
}

/* ========================================
FEATURED POST
======================================== */
.featured-section {
	padding: 0 var(--gutter) var(--space-section);
	max-width: 1200px;
	margin: 0 auto;
}

.featured-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin-bottom: var(--space-md);
}

.featured-card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: var(--space-xl);
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 24px;
	padding: var(--space-xl);
	align-items: center;
	transition: border-color 0.4s ease, box-shadow 0.6s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.featured-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(800px circle at var(--spot-x, 50%) var(--spot-y, 50%),
			oklch(0.50 0.18 265 / 0.06) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.featured-card:hover::before {
	opacity: 1;
}

.featured-card:hover {
	border-color: oklch(0.50 0.18 265 / 0.15);
}

.featured-content {
	position: relative;
	z-index: 1;
}

.featured-card-category {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin-bottom: var(--space-sm);
	font-weight: 600;
}

.featured-title {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.03em;
	margin-bottom: var(--space-md);
	line-height: 1.1;
}

.featured-excerpt {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: var(--space-lg);
}

.featured-meta {
	display: flex;
	gap: var(--space-md);
	font-size: 13px;
	color: var(--text-muted);
}

.featured-arrow {
	position: absolute;
	bottom: var(--space-lg);
	right: var(--space-lg);
	width: 48px;
	height: 48px;
	border: 1px solid var(--border-subtle);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	transition: all 0.4s var(--ease-out);
	z-index: 2;
}

.featured-card:hover .featured-arrow {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--text-inverted);
	transform: translate(4px, -4px);
}

.featured-visual {
	position: relative;
	z-index: 1;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 16/10;
	background: var(--bg-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.featured-icon {
	width: 80px;
	height: 80px;
	color: var(--accent);
	opacity: 0.3;
}

@media (max-width: 1024px) {
	.featured-card {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.featured-visual {
		display: none;
	}
}

/* ========================================
POSTS GRID
======================================== */
.posts-section {
	padding: 0 var(--gutter) var(--space-section);
	max-width: 1200px;
	margin: 0 auto;
}

.posts-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--space-xl);
}

.posts-header h2 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.03em;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.post-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 20px;
	transition: transform 0.6s var(--ease-out), border-color 0.4s ease, box-shadow 0.6s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.post-card-link {
	display: block;
	padding: var(--space-lg);
	color: inherit;
	text-decoration: none;
	position: relative;
	z-index: 1;
}

.post-card-link:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: -2px;
	border-radius: 20px;
}

.post-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(600px circle at var(--spot-x, 50%) var(--spot-y, 50%),
			oklch(0.50 0.18 265 / 0.08) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.post-card:hover::before {
	opacity: 1;
}

.post-card:hover {
	transform: translateY(-6px);
	border-color: oklch(0.50 0.18 265 / 0.2);
	box-shadow: 0 30px 60px oklch(0 0 0 / 0.08);
}

.post-card-content {
	position: relative;
	z-index: 1;
}

.post-card-category {
	display: inline-block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin-bottom: var(--space-sm);
	font-weight: 600;
}

.post-card-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	margin-bottom: var(--space-sm);
	line-height: 1.25;
	transition: color 0.3s ease;
}

.post-card:hover .post-card-title {
	color: var(--accent);
}

.post-card-excerpt {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: var(--space-md);
}

.post-card-meta {
	font-size: 12px;
	color: var(--text-muted);
	display: flex;
	gap: var(--space-sm);
	align-items: center;
}

.post-card-meta .dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--text-muted);
}

.post-card-number {
	font-family: var(--font-display);
	font-size: 4rem;
	font-weight: 700;
	color: oklch(0 0 0 / 0.04);
	position: absolute;
	top: var(--space-md);
	right: var(--space-md);
	line-height: 1;
	letter-spacing: -0.05em;
	z-index: 0;
}

@media (max-width: 1024px) {
	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.posts-grid {
		grid-template-columns: 1fr;
	}

	.posts-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-sm);
	}

	.posts-section {
		padding: 0 20px var(--space-section);
	}

	.blog-hero {
		padding: 80px 20px var(--space-lg);
	}

	.featured-section {
		padding: 0 20px var(--space-section);
	}
}

/* ========================================
NEWSLETTER SECTION
======================================== */
.newsletter-section {
	padding: var(--space-section) var(--gutter);
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.newsletter-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, oklch(0.50 0.18 265 / 0.04) 0%, transparent 70%);
	pointer-events: none;
}

.newsletter-container {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.newsletter-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin-bottom: var(--space-md);
}

.newsletter-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.03em;
	margin-bottom: var(--space-sm);
}

.newsletter-text {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: var(--space-lg);
	line-height: 1.8;
}

.newsletter-form {
	display: flex;
	gap: var(--space-sm);
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-form input {
	flex: 1;
	padding: 16px 22px;
	background: var(--bg-primary);
	border: 1px solid var(--border-subtle);
	border-radius: 100px;
	color: var(--text-primary);
	font-size: 1rem;
	font-family: var(--font-body);
	transition: all 0.4s var(--ease-out);
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 4px oklch(0.50 0.18 265 / 0.1);
}

.newsletter-form input::placeholder {
	color: var(--text-muted);
}

.newsletter-form button {
	padding: 16px 32px;
	background: var(--accent);
	color: var(--text-inverted);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	white-space: nowrap;
	transition: all 0.5s var(--ease-out);
}

.newsletter-form button:hover {
	background: var(--accent-hover);
	transform: scale(1.04);
	box-shadow: 0 20px 40px oklch(0.50 0.18 265 / 0.25);
}

.newsletter-form button.subscribed {
	background: var(--color-success) !important;
}

@media (max-width: 768px) {
	.newsletter-section {
		padding: var(--space-section) 20px;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-form input {
		text-align: center;
	}
}

/* ========================================
FOOTER
======================================== */
.footer {
	padding: var(--space-xl) var(--gutter) var(--space-lg);
	max-width: 1200px;
	margin: 0 auto;
	border-top: 1px solid var(--border-subtle);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-md);
}

.footer-logo {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.02em;
}

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

.footer-links {
	display: flex;
	gap: var(--space-md);
}

.footer-links a {
	font-size: 13px;
	color: var(--text-muted);
	transition: color 0.3s ease;
}

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

.footer-copy {
	font-size: 13px;
	color: var(--text-muted);
}

@media (max-width: 768px) {
	.footer {
		padding: var(--space-lg) 20px;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}
}

/* ========================================
BLOG POST - ARTICLE STYLES
======================================== */
.article {
	max-width: var(--content-width);
	margin: 0 auto;
	padding: 140px var(--gutter) var(--space-section);
}

.article-header {
	margin-bottom: var(--space-xl);
}

.article-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-muted);
	margin-bottom: var(--space-lg);
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
}

.article-back:hover {
	color: var(--accent);
}

.article-category {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin-bottom: var(--space-md);
}

.article-title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.04em;
	line-height: 1.08;
	margin-bottom: var(--space-md);
}

.article-meta {
	display: flex;
	gap: var(--space-md);
	align-items: center;
	flex-wrap: wrap;
	font-size: 14px;
	color: var(--text-muted);
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--border-subtle);
}

.article-meta .dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--text-muted);
}

.article-body {
	font-size: 1.1rem;
	line-height: 1.95;
	color: var(--text-primary);
}

.article-body h2 {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.03em;
	margin: var(--space-xl) 0 var(--space-md);
	line-height: 1.2;
}

.article-body h3 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	margin: var(--space-lg) 0 var(--space-sm);
	line-height: 1.3;
}

.article-body p {
	margin-bottom: 1.5em;
	color: var(--text-secondary);
}

.article-body strong {
	color: var(--text-primary);
	font-weight: 600;
}

.article-body ul,
.article-body ol {
	margin-bottom: 1.5em;
	padding-left: 1.5em;
	color: var(--text-secondary);
}

.article-body li {
	margin-bottom: 0.5em;
}

.article-body blockquote {
	padding: var(--space-md) var(--space-lg);
	margin: var(--space-lg) 0;
	background: var(--accent-muted);
	border-radius: 16px;
	font-size: 1.15rem;
	font-weight: 400;
	color: var(--text-primary);
	line-height: 1.8;
}

.article-body blockquote strong {
	color: var(--accent);
}

.article-body .stat-callout {
	background: var(--accent-muted);
	border: 1px solid oklch(0.50 0.18 265 / 0.12);
	border-radius: 16px;
	padding: var(--space-lg);
	margin: var(--space-lg) 0;
	text-align: center;
}

.article-body .stat-number {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
	margin-bottom: var(--space-xs);
	letter-spacing: -0.03em;
}

.article-body .stat-label {
	font-size: 1rem;
	color: var(--text-secondary);
}

.article-body .tip-box {
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: var(--space-lg);
	margin: var(--space-lg) 0;
}

.article-body .tip-box .tip-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--accent);
	margin-bottom: var(--space-sm);
	display: block;
}

.article-body .tip-box p {
	margin-bottom: 0;
}

.article-body a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity 0.3s ease;
}

.article-body a:hover {
	opacity: 0.7;
}

.article-body img {
	border-radius: 16px;
	margin: var(--space-lg) auto;
	box-shadow: 0 20px 40px oklch(0 0 0 / 0.06);
	width: 100%;
}

.article-body .table-wrap {
	overflow-x: auto;
	margin: var(--space-lg) 0;
	border-radius: 16px;
	border: 1px solid var(--border-subtle);
}

.article-body table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.article-body th {
	background: var(--bg-secondary);
	font-family: var(--font-display);
	font-weight: 600;
	text-align: left;
	padding: var(--space-sm) var(--space-md);
	color: var(--text-primary);
	border-bottom: 1px solid var(--border-subtle);
}

.article-body td {
	padding: var(--space-sm) var(--space-md);
	border-bottom: 1px solid var(--border-subtle);
	color: var(--text-secondary);
}

.article-body tr:last-child td {
	border-bottom: none;
}

.article-outro {
	margin-top: var(--space-xxl);
	padding: var(--space-xl);
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 20px;
	text-align: center;
}

.article-outro h3 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.03em;
	margin-bottom: var(--space-sm);
}

.article-outro p {
	font-size: 1.05rem;
	color: var(--text-secondary);
	margin-bottom: var(--space-lg);
	line-height: 1.8;
}

.article-outro .btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	background: var(--accent);
	color: var(--text-inverted);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	transition: all 0.5s var(--ease-out);
}

.article-outro .btn:hover {
	background: var(--accent-hover);
	transform: translateY(-3px);
	box-shadow: 0 25px 50px oklch(0.50 0.18 265 / 0.25);
}

@media (max-width: 768px) {
	.article {
		padding: 100px 20px var(--space-section);
	}

	.article-body {
		font-size: 1rem;
	}

	.article-body h2 {
		font-size: 1.5rem;
	}

	.article-body h3 {
		font-size: 1.2rem;
	}

	.article-meta {
		flex-wrap: wrap;
	}
}

/* ========================================
ABOUT PAGE
======================================== */
.about-page {
	max-width: 800px;
	margin: 0 auto;
	padding: 140px var(--gutter) var(--space-section);
}

.about-page-tag {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin-bottom: var(--space-md);
}

.about-page h1 {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin-bottom: var(--space-lg);
}

.about-page h2 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -0.03em;
	margin: var(--space-lg) 0 var(--space-sm);
}

.about-page p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.9;
	margin-bottom: 1.2em;
}

.about-page ul {
	padding-left: 1.5em;
	margin-bottom: 1.5em;
}

.about-page li {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 0.5em;
	line-height: 1.7;
}

@media (max-width: 768px) {
	.about-page {
		padding: 100px 20px var(--space-section);
	}
}

/* ========================================
UTILITY
======================================== */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}