/*
Theme Name: Kapengbarako
Theme URI: https://kapengbarako.com
Author: kapengbarako
Author URI: https://kapengbarako.com
Description: A warm, personal editorial theme for WordPress. Light-first reading surface, coffee accent, serif display + sans body, flat by default, fully designed dark mode. Modeled on the Glide Ghost theme. WCAG 2.1 AA.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kapengbarako
Tags: blog, news, one-column, custom-menu, featured-images, translation-ready
*/

/* =========================================================
   Tokens
   ========================================================= */
:root {
	color-scheme: light;
	/* Surfaces */
	--bg: oklch(1 0 0);
	--surface: oklch(0.968 0.004 60);
	--surface-hover: oklch(0.952 0.006 60);
	--line: oklch(0.905 0.008 60);

	/* Ink */
	--ink: oklch(0.24 0.02 55);
	--ink-soft: oklch(0.42 0.02 55);
	--muted: oklch(0.55 0.02 55);

	/* Coffee accent (single voice) */
	--coffee: oklch(0.5 0.12 50);
	--coffee-strong: oklch(0.44 0.13 50);
	--coffee-on: oklch(1 0 0);
	--coffee-soft: oklch(0.93 0.03 55);
	--coffee-ring: oklch(0.5 0.12 50 / 0.35);

	/* Type */
	--font-serif: "Cormorant Garamond", "Source Serif Pro", Georgia, "Times New Roman", serif;
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

	/* Scale */
	--text-xs: 0.8125rem;
	--text-sm: 0.875rem;
	--text-base: 1.125rem;
	--text-lg: 1.3125rem;
	--text-xl: 1.5rem;
	--text-2xl: clamp(1.75rem, 4vw, 2.5rem);
	--text-3xl: clamp(2.25rem, 5vw, 3.25rem);
	--text-4xl: clamp(2.5rem, 7vw, 4.5rem);

	/* Shape */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-pill: 999px;

	/* Layout */
	--measure: 70ch;
	--container: 48rem;
	--gutter: clamp(1.25rem, 5vw, 2rem);
	--space-1: 0.5rem;
	--space-2: 0.75rem;
	--space-3: 1rem;
	--space-4: 1.5rem;
	--space-5: 2rem;
	--space-6: 3rem;
	--space-7: 4.5rem;
	--space-8: 6rem;

	/* Motion */
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--dur: 200ms;

	/* Elevation (drawer / overlay only) */
	--shadow-drawer: 0 12px 48px oklch(0 0 0 / 0.15);
}

[data-theme="dark"] {
	color-scheme: dark;
	--bg: oklch(0.16 0.012 55);
	--surface: oklch(0.21 0.015 55);
	--surface-hover: oklch(0.25 0.018 55);
	--line: oklch(0.31 0.02 55);

	--ink: oklch(0.93 0.01 60);
	--ink-soft: oklch(0.8 0.015 60);
	--muted: oklch(0.68 0.02 60);

	--coffee: oklch(0.76 0.1 55);
	--coffee-strong: oklch(0.82 0.1 55);
	--coffee-on: oklch(0.16 0.012 55);
	--coffee-soft: oklch(0.26 0.03 55);
	--coffee-ring: oklch(0.76 0.1 55 / 0.4);

	--shadow-drawer: 0 12px 48px oklch(0 0 0 / 0.5);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: var(--text-base);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
a { color: var(--coffee); text-decoration: none; transition: color var(--dur) var(--ease-out); }
a:hover { color: var(--coffee-strong); text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-serif);
	line-height: 1.15;
	margin: 0 0 var(--space-3);
	text-wrap: balance;
	font-weight: 500;
}
p { margin: 0 0 var(--space-4); text-wrap: pretty; }
ul, ol { padding-left: 1.5rem; margin: 0 0 var(--space-4); }
blockquote {
	margin: var(--space-5) 0;
	padding: var(--space-3) 0 var(--space-3) var(--space-4);
	border-left: 2px solid var(--coffee);
	font-family: var(--font-serif);
	font-size: var(--text-lg);
	font-style: italic;
	color: var(--ink-soft);
}
pre, code { font-family: var(--font-mono); font-size: 0.9em; }
pre {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: var(--space-4);
	overflow-x: auto;
	line-height: 1.6;
}
code { background: var(--surface); border-radius: var(--radius-sm); padding: 0.1em 0.35em; }
pre code { background: none; padding: 0; }
table { width: 100%; border-collapse: collapse; margin: 0 0 var(--space-4); }
th, td { text-align: left; padding: var(--space-2) var(--space-3); border-bottom: 1px solid var(--line); }
th { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--space-6) 0; }

/* =========================================================
   Accessibility
   ========================================================= */
.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0;
	position: absolute; word-wrap: normal;
}
.skip-link {
	position: absolute; left: var(--gutter); top: -100%; z-index: 100;
	background: var(--coffee); color: var(--coffee-on);
	padding: var(--space-2) var(--space-3); border-radius: var(--radius-md);
	transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: var(--space-3); }
:focus-visible {
	outline: 3px solid var(--coffee-ring);
	outline-offset: 2px;
	border-radius: var(--radius-sm);
}

/* =========================================================
   Layout shell
   ========================================================= */
.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.site-main { flex: 1; width: 100%; }
.container {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
}
.container-wide {
	width: min(100% - (var(--gutter) * 2), 72rem);
	margin-inline: auto;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
	position: sticky; top: 0; z-index: 40;
	background: color-mix(in oklab, var(--bg) 85%, transparent);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	width: min(100% - (var(--gutter) * 2), 72rem);
	margin-inline: auto;
	padding: var(--space-3) 0;
}
.site-brand { display: flex; align-items: center; gap: var(--space-3); }
.site-brand__logo { display: block; }
.site-brand__title {
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	font-weight: 600;
	margin: 0;
	color: var(--ink);
}
.site-brand__title a { color: inherit; }
.site-brand__title a:hover { text-decoration: none; color: var(--coffee); }

.primary-nav { display: flex; align-items: center; gap: var(--space-4); }
.primary-nav .menu {
	display: flex; list-style: none; gap: var(--space-4); margin: 0; padding: 0;
}
.primary-nav .menu a {
	color: var(--ink-soft);
	font-size: var(--text-sm);
	font-weight: 500;
	padding: var(--space-1) 0;
	position: relative;
}
.primary-nav .menu a:hover { color: var(--coffee); text-decoration: none; }
.primary-nav .menu .current-menu-item > a,
.primary-nav .menu .current_page_item > a { color: var(--coffee); }
.primary-nav .menu .current-menu-item > a::after,
.primary-nav .menu .current_page_item > a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
	height: 2px; background: var(--coffee);
}

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

/* Theme toggle */
.theme-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	background: var(--surface); color: var(--ink-soft);
	cursor: pointer; transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.theme-toggle:hover { background: var(--surface-hover); color: var(--coffee); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* Mobile nav */
@media (max-width: 720px) {
	.primary-nav__desktop { display: none; }
	.nav-toggle { display: inline-flex; }
	.primary-nav .menu { display: none; }
}
.nav-toggle {
	display: none; align-items: center; justify-content: center;
	width: 40px; height: 40px; border: 1px solid var(--line);
	border-radius: var(--radius-md); background: var(--surface); color: var(--ink);
	cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-overlay {
	position: fixed; inset: 0; z-index: 60;
	background: oklch(0 0 0 / 0.4);
	opacity: 0; pointer-events: none;
	transition: opacity var(--dur) var(--ease-out);
}
.nav-drawer {
	position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
	width: min(20rem, 85vw);
	background: var(--bg);
	box-shadow: var(--shadow-drawer);
	padding: var(--space-6) var(--gutter);
	transform: translateX(100%);
	transition: transform 300ms var(--ease-out);
	display: flex; flex-direction: column; gap: var(--space-4);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer .close-drawer {
	align-self: flex-end;
	background: none; border: none; color: var(--muted);
	cursor: pointer; padding: var(--space-1);
}
.nav-drawer .close-drawer svg { width: 24px; height: 24px; }
.nav-drawer .menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.nav-drawer .menu a {
	font-family: var(--font-serif); font-size: var(--text-2xl);
	color: var(--ink); display: block; padding: var(--space-1) 0;
}
.nav-drawer .menu a:hover { color: var(--coffee); text-decoration: none; }
.nav-drawer .menu .current-menu-item > a { color: var(--coffee); }

body.nav-open { overflow: hidden; }
body.nav-open .nav-overlay { opacity: 1; pointer-events: auto; }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding: var(--space-8) 0 var(--space-7); }
.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
	gap: var(--space-6);
	align-items: center;
}
.hero__title {
	font-size: var(--text-4xl);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin: 0 0 var(--space-4);
}
.hero__title em { font-style: italic; color: var(--coffee); }
.hero__intro {
	font-size: var(--text-lg);
	color: var(--ink-soft);
	max-width: var(--measure);
	margin: 0;
}
.hero__portrait {
	width: 100%;
	border-radius: var(--radius-md);
	filter: saturate(0.9);
}
@media (max-width: 720px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__portrait { max-width: 320px; }
}

/* =========================================================
   Sections
   ========================================================= */
.section { padding: var(--space-7) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section__title {
	font-size: var(--text-3xl);
	margin-bottom: var(--space-5);
}
.section__title-link { color: inherit; }
.section__title-link:hover { color: var(--coffee); text-decoration: none; }

/* Featured post */
.featured-post {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
	gap: var(--space-6);
	align-items: center;
	margin-bottom: var(--space-7);
}
.featured-post__media a { display: block; border-radius: var(--radius-md); overflow: hidden; }
.featured-post__media img {
	width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
	transition: transform 300ms var(--ease-out);
}
.featured-post:hover .featured-post__media img { transform: scale(1.02); }
.featured-post__eyebrow {
	font-size: var(--text-sm); font-weight: 600; color: var(--coffee);
	margin-bottom: var(--space-2);
}
.featured-post__title a { color: var(--ink); text-decoration: none; }
.featured-post__title a:hover { color: var(--coffee); text-decoration: none; }
.featured-post__excerpt { font-size: var(--text-lg); color: var(--ink-soft); max-width: var(--measure); }
@media (max-width: 720px) {
	.featured-post { grid-template-columns: 1fr; }
}

/* Post grid */
.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-6);
}
.post-card { display: block; }
.post-card__media a { display: block; border-radius: var(--radius-md); overflow: hidden; }
.post-card__media img {
	width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
	transition: transform 300ms var(--ease-out);
}
.post-card:hover .post-card__media img { transform: scale(1.02); }
.post-card__meta { margin: var(--space-3) 0 var(--space-2); }
.post-card__title {
	font-size: var(--text-2xl); margin: 0 0 var(--space-2); position: relative;
}
.post-card__title a { color: var(--ink); text-decoration: none; }
.post-card__title a:hover { color: var(--coffee); text-decoration: none; }
.post-card__title a::after {
	content: ""; position: absolute; left: 0; bottom: -4px; height: 2px;
	width: 0; background: var(--coffee);
	transition: width 300ms var(--ease-out);
}
.post-card__title a:hover::after { width: 100%; }
.post-card__excerpt {
	font-size: var(--text-base); color: var(--ink-soft); margin: 0;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Meta */
.post-meta {
	display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2);
	font-size: var(--text-sm); color: var(--muted);
}
.post-meta a { color: var(--muted); }
.post-meta a:hover { color: var(--coffee); }
.post-meta__dot { color: var(--line); }

/* Pagination / Load more */
.pagination {
	display: flex; justify-content: center;
	padding: var(--space-7) 0 var(--space-8);
	gap: var(--space-3);
}
.pagination .page-numbers,
.pagination .load-more,
.pagination a {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 44px; padding: 0 var(--space-4);
	border: 1px solid var(--line); border-radius: var(--radius-md);
	background: var(--surface); color: var(--ink-soft);
	font-size: var(--text-sm); font-weight: 500;
	transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.pagination a:hover { background: var(--surface-hover); color: var(--coffee); text-decoration: none; }
.pagination .page-numbers.current { background: var(--coffee); color: var(--coffee-on); border-color: var(--coffee); }
.pagination .load-more { background: var(--coffee); color: var(--coffee-on); border-color: var(--coffee); }
.pagination .load-more:hover { background: var(--coffee-strong); color: var(--coffee-on); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 44px; padding: 0 var(--space-4);
	border-radius: var(--radius-md);
	font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 500;
	cursor: pointer; border: 1px solid transparent;
	transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.btn--primary { background: var(--coffee); color: var(--coffee-on); }
.btn--primary:hover { background: var(--coffee-strong); color: var(--coffee-on); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--coffee); border-color: var(--coffee); }
.btn--ghost:hover { background: var(--coffee-soft); text-decoration: none; }

/* =========================================================
   Single post
   ========================================================= */
.entry-header { padding: var(--space-7) 0 var(--space-5); }
.entry-header .post-meta { margin-bottom: var(--space-3); }
.entry-title {
	font-size: var(--text-4xl);
	letter-spacing: -0.03em;
	max-width: 18ch;
}
.entry__featured { margin-bottom: var(--space-6); }
.entry__featured img { border-radius: var(--radius-md); }
.entry-content {
	max-width: var(--measure);
	margin-inline: auto;
	font-size: var(--text-base);
}
.entry-content h2 { font-size: var(--text-2xl); margin-top: var(--space-6); }
.entry-content h3 { font-size: var(--text-xl); margin-top: var(--space-5); }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--coffee-strong); }
.entry-content img, .entry-content .wp-caption { border-radius: var(--radius-md); }
.alignleft { float: left; margin: var(--space-2) var(--space-4) var(--space-2) 0; }
.alignright { float: right; margin: var(--space-2) 0 var(--space-2) var(--space-4); }
.aligncenter { margin-inline: auto; }

/* Post navigation */
.post-navigation {
	display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4);
	max-width: var(--measure); margin: var(--space-7) auto;
}
.post-navigation__link { display: block; }
.post-navigation__label {
	font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.12em;
	color: var(--muted); margin-bottom: var(--space-1);
}
.post-navigation__title {
	font-family: var(--font-serif); font-size: var(--text-lg); color: var(--ink);
	text-decoration: none;
}
.post-navigation__link:hover .post-navigation__title { color: var(--coffee); text-decoration: none; }
@media (max-width: 720px) { .post-navigation { grid-template-columns: 1fr; } }

/* Author box */
.author-box {
	display: flex; gap: var(--space-4);
	background: var(--surface); border-radius: var(--radius-md);
	padding: var(--space-5); margin: var(--space-7) 0;
}
.author-box__avatar { border-radius: 50%; flex-shrink: 0; }
.author-box__name { font-family: var(--font-serif); font-size: var(--text-lg); margin: 0 0 var(--space-1); }
.author-box__name a { color: var(--ink); }
.author-box__bio { font-size: var(--text-sm); color: var(--ink-soft); margin: 0; }

/* =========================================================
   Comments
   ========================================================= */
.comments-area { max-width: var(--measure); margin: var(--space-8) auto 0; }
.comments-title { font-size: var(--text-2xl); }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .comment { padding: var(--space-4) 0; border-top: 1px solid var(--line); }
.comment-list .children { list-style: none; margin: var(--space-4) 0 0 0; padding-left: var(--space-5); }
.comment-body { font-size: var(--text-base); }
.comment-author { font-weight: 600; font-size: var(--text-sm); }
.comment-author .avatar { border-radius: 50%; margin-right: var(--space-2); vertical-align: middle; }
.comment-metadata { font-size: var(--text-xs); color: var(--muted); margin-bottom: var(--space-2); }
.comment-metadata a { color: var(--muted); }
.comment-content p { margin-bottom: var(--space-2); }
.reply { font-size: var(--text-sm); }

.comment-form { margin-top: var(--space-5); }
.comment-form label { display: block; font-size: var(--text-sm); font-weight: 500; margin-bottom: var(--space-1); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form input[type="search"],
.comment-form textarea {
	width: 100%; padding: var(--space-2) var(--space-3);
	border: 1px solid var(--line); border-radius: var(--radius-md);
	background: var(--surface); color: var(--ink);
	font-family: var(--font-sans); font-size: var(--text-base);
	transition: border-color var(--dur) var(--ease-out);
}
.comment-form input:focus, .comment-form textarea:focus {
	outline: none; border-color: var(--coffee);
}
.comment-form textarea { min-height: 160px; }
.comment-form input[type="submit"] {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 44px; padding: 0 var(--space-4);
	background: var(--coffee); color: var(--coffee-on);
	border: none; border-radius: var(--radius-md);
	font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 500;
	cursor: pointer; transition: background var(--dur) var(--ease-out);
}
.comment-form input[type="submit"]:hover { background: var(--coffee-strong); }
.comment-form input[type="submit"]:focus-visible { outline: 3px solid var(--coffee-ring); outline-offset: 2px; }

/* =========================================================
   Forms / search
   ========================================================= */
.search-form { display: flex; gap: var(--space-2); max-width: 28rem; }
.search-form input[type="search"] {
	flex: 1; padding: var(--space-2) var(--space-3);
	border: 1px solid var(--line); border-radius: var(--radius-md);
	background: var(--surface); color: var(--ink); font-size: var(--text-base);
	min-height: 44px;
}
.search-form input[type="search"]:focus { outline: none; border-color: var(--coffee); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { border-top: 1px solid var(--line); padding: var(--space-6) 0; margin-top: var(--space-8); }
.site-footer__inner {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
	gap: var(--space-4);
	width: min(100% - (var(--gutter) * 2), 72rem);
	margin-inline: auto;
}
.site-footer__credit { font-size: var(--text-sm); color: var(--muted); margin: 0; }
.site-footer__social { display: flex; gap: var(--space-2); list-style: none; margin: 0; padding: 0; }
.site-footer__social a {
	display: inline-flex; align-items: center;
	padding: var(--space-1) var(--space-3);
	border-radius: var(--radius-pill);
	background: var(--surface); color: var(--ink-soft);
	border: 1px solid var(--line);
	font-size: var(--text-sm);
	transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.site-footer__social a:hover { color: var(--coffee); border-color: var(--coffee); }

/* =========================================================
   Sidebar (widgets, off by default)
   ========================================================= */
.widget-area { font-size: var(--text-sm); }
.widget-area .widget { margin-bottom: var(--space-5); }
.widget-area .widget-title { font-family: var(--font-serif); font-size: var(--text-xl); margin-bottom: var(--space-3); }
.widget-area ul { list-style: none; padding: 0; margin: 0; }
.widget-area ul li { padding: var(--space-1) 0; }

/* =========================================================
   Misc / states
   ========================================================= */
.page-header { padding: var(--space-7) 0 var(--space-5); }
.page-title { font-size: var(--text-3xl); }
.archive-description { color: var(--ink-soft); max-width: var(--measure); }
.no-results { padding: var(--space-7) 0; }
.no-results h2 { font-size: var(--text-2xl); }
.error-404 { padding: var(--space-8) 0; text-align: center; }
.error-404 .page-title { font-size: var(--text-4xl); }
.error-404 .page-content { max-width: var(--measure); margin-inline: auto; }
.error-404 .search-form { margin-inline: auto; }

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.nav-drawer { transition: none; }
	.featured-post__media img, .post-card__media img, .post-card__title a::after { transition: none; }
}
