/*
Theme Name: Zorderz
Theme URI: https://zorderz.org
Author: The Zorderz Project
Author URI: https://zorderz.org
Description: The home theme for zorderz.org — a fast, minimal, chronicle-style blog theme for the Zorderz open-source project. Auto light/dark palette, built-in SEO essentials (focus keyword analysis, meta descriptions, per-page index/noindex), public article provenance (version history with AI-draft origin labels and diffs), global external-link controls, and an on-demand sidebar for any page or post.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zorderz
Tags: blog, one-column, two-columns, right-sidebar, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* -------------------------------------------------------------------------
   1. Design tokens — light (default) and dark via prefers-color-scheme.
   Recolor the whole site by editing these variables.
   ------------------------------------------------------------------------- */
:root {
	--z-bg: #ffffff;
	--z-bg-alt: #f6f8fa;
	--z-bg-inset: #eef1f4;
	--z-text: #1f2328;
	--z-text-muted: #59636e;
	--z-border: #d6dde3;
	--z-border-soft: #e7ebef;
	--z-accent: #2563eb;
	--z-accent-hover: #1d4ed8;
	--z-accent-soft: #dbeafe;
	--z-accent-contrast: #ffffff;
	--z-code-bg: #f0f2f5;
	--z-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 4px 16px rgba(15, 23, 42, 0.05);

	--z-font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--z-font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

	--z-maxwidth: 1120px;
	--z-readwidth: 46rem;

	color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
	:root {
		--z-bg: #0d1117;
		--z-bg-alt: #161b22;
		--z-bg-inset: #1c2129;
		--z-text: #e6edf3;
		--z-text-muted: #98a1ab;
		--z-border: #30363d;
		--z-border-soft: #21262d;
		--z-accent: #58a6ff;
		--z-accent-hover: #79b8ff;
		--z-accent-soft: #14273f;
		--z-accent-contrast: #0d1117;
		--z-code-bg: #161b22;
		--z-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.35);
	}
}

/* -------------------------------------------------------------------------
   2. Base
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--z-bg);
	color: var(--z-text);
	font-family: var(--z-font-sans);
	font-size: 1.0625rem; /* 17px */
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--z-accent);
	text-decoration: none;
	text-underline-offset: 3px;
}

a:hover,
a:focus {
	color: var(--z-accent-hover);
	text-decoration: underline;
}

:focus-visible {
	outline: 2px solid var(--z-accent);
	outline-offset: 2px;
	border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 2.2em 0 0.6em;
}

h1 { font-size: 2.1rem; margin-top: 0; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.25em; }

hr {
	border: 0;
	border-top: 1px solid var(--z-border);
	margin: 2.5rem 0;
}

code, kbd, samp {
	font-family: var(--z-font-mono);
	font-size: 0.88em;
	background: var(--z-code-bg);
	border: 1px solid var(--z-border-soft);
	border-radius: 5px;
	padding: 0.12em 0.35em;
}

pre {
	font-family: var(--z-font-mono);
	font-size: 0.85rem;
	line-height: 1.6;
	background: var(--z-code-bg);
	border: 1px solid var(--z-border-soft);
	border-radius: 10px;
	padding: 1.1rem 1.25rem;
	overflow-x: auto;
	margin: 0 0 1.5rem;
}

pre code {
	background: none;
	border: 0;
	padding: 0;
	font-size: inherit;
}

blockquote {
	margin: 1.5rem 0;
	padding: 0.25rem 0 0.25rem 1.25rem;
	border-left: 3px solid var(--z-accent);
	color: var(--z-text-muted);
	font-style: italic;
}

blockquote cite { font-style: normal; font-size: 0.9em; }

table {
	border-collapse: collapse;
	width: 100%;
	margin: 0 0 1.5rem;
	font-size: 0.95rem;
}

th, td {
	border: 1px solid var(--z-border);
	padding: 0.55rem 0.8rem;
	text-align: left;
}

th { background: var(--z-bg-alt); }

figure { margin: 1.75rem 0; }

figcaption {
	font-size: 0.85rem;
	color: var(--z-text-muted);
	text-align: center;
	margin-top: 0.5rem;
}

/* -------------------------------------------------------------------------
   3. Accessibility helpers
   ------------------------------------------------------------------------- */
.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	clip-path: none;
	display: block;
	height: auto;
	width: auto;
	left: 8px;
	top: 8px;
	padding: 12px 20px;
	background: var(--z-bg);
	color: var(--z-accent);
	box-shadow: var(--z-shadow);
	z-index: 100000;
	border-radius: 6px;
}

/* -------------------------------------------------------------------------
   4. Layout scaffolding
   ------------------------------------------------------------------------- */
.container {
	max-width: var(--z-maxwidth);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-main {
	flex: 1;
	padding: 2.5rem 0 4rem;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 3rem;
}

.content-layout.has-sidebar {
	grid-template-columns: minmax(0, 1fr) 300px;
}

@media (max-width: 880px) {
	.content-layout.has-sidebar {
		grid-template-columns: minmax(0, 1fr);
	}
}

.content-column {
	max-width: var(--z-readwidth);
	width: 100%;
	margin: 0 auto;
}

.has-sidebar .content-column {
	margin: 0;
	max-width: none;
}

/* -------------------------------------------------------------------------
   5. Header
   ------------------------------------------------------------------------- */
.site-header {
	border-bottom: 1px solid var(--z-border-soft);
	background: var(--z-bg);
}

.site-header-inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	padding: 0.9rem 0;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-right: auto;
}

.custom-logo { display: block; max-height: 36px; width: auto; }

.site-title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
}

.site-title a { color: var(--z-text); text-decoration: none; }
.site-title a:hover { color: var(--z-accent); }

.site-title .z-mark { color: var(--z-accent); }

.site-nav ul {
	display: flex;
	gap: 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.site-nav a {
	color: var(--z-text-muted);
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
	color: var(--z-text);
}

/* -------------------------------------------------------------------------
   6. Buttons
   ------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 1.1rem;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn svg { width: 1.05em; height: 1.05em; fill: currentColor; }

.btn-primary {
	background: var(--z-accent);
	color: var(--z-accent-contrast) !important;
}

.btn-primary:hover { background: var(--z-accent-hover); }

.btn-outline {
	border-color: var(--z-border);
	color: var(--z-text) !important;
	background: transparent;
}

.btn-outline:hover {
	border-color: var(--z-accent);
	color: var(--z-accent) !important;
	background: var(--z-accent-soft);
}

.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.88rem; }

/* -------------------------------------------------------------------------
   7. Homepage intro (project hero)
   ------------------------------------------------------------------------- */
.home-intro {
	background: var(--z-bg-alt);
	border-bottom: 1px solid var(--z-border-soft);
	padding: 3.25rem 0;
}

.home-intro-inner {
	max-width: var(--z-readwidth);
	margin: 0 auto;
}

.home-intro-title {
	margin: 0 0 0.6rem;
	font-size: clamp(2.1rem, 5vw, 2.9rem);
	font-weight: 800;
	letter-spacing: -0.03em;
}

.home-intro-title .z-mark { color: var(--z-accent); }

.home-intro-tagline {
	font-size: 1.15rem;
	color: var(--z-text-muted);
	margin: 0 0 1.4rem;
	max-width: 42rem;
}

.home-intro-status {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--z-text-muted);
	background: var(--z-bg);
	border: 1px solid var(--z-border);
	border-radius: 999px;
	padding: 0.3rem 0.85rem;
	margin-bottom: 1.5rem;
}

.home-intro-status::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--z-accent);
	flex: none;
}

.home-intro-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

/* -------------------------------------------------------------------------
   8. Post list (blog home & archives)
   ------------------------------------------------------------------------- */
.archive-header { margin-bottom: 2.5rem; }
.archive-header .archive-title { margin: 0 0 0.3rem; font-size: 1.7rem; }
.archive-header .archive-description { color: var(--z-text-muted); margin: 0; }

.post-list { display: block; }

.entry-excerpt {
	padding: 2.1rem 0;
	border-bottom: 1px solid var(--z-border-soft);
}

.post-list .entry-excerpt:first-child { padding-top: 0.5rem; }

.entry-meta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
	font-size: 0.85rem;
	color: var(--z-text-muted);
	margin-bottom: 0.5rem;
}

.entry-meta a { color: inherit; }
.entry-meta a:hover { color: var(--z-accent); }

.entry-meta .meta-sep { opacity: 0.5; }

.entry-meta .cat-link {
	color: var(--z-accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.78rem;
}

.entry-excerpt .entry-title {
	margin: 0 0 0.55rem;
	font-size: 1.45rem;
	letter-spacing: -0.015em;
}

.entry-excerpt .entry-title a { color: var(--z-text); text-decoration: none; }
.entry-excerpt .entry-title a:hover { color: var(--z-accent); }

.entry-summary { color: var(--z-text-muted); margin: 0 0 0.8rem; }
.entry-summary p { margin: 0; }

.read-more {
	font-weight: 600;
	font-size: 0.92rem;
	white-space: nowrap;
}

.read-more::after { content: " →"; }

/* Sticky posts get a subtle flag */
.sticky .entry-title::after {
	content: "★";
	color: var(--z-accent);
	font-size: 0.7em;
	margin-left: 0.5rem;
	vertical-align: super;
}

/* -------------------------------------------------------------------------
   9. Single posts & pages
   ------------------------------------------------------------------------- */
.entry-header { margin-bottom: 2rem; }

.entry-header .entry-title {
	font-size: clamp(1.8rem, 4.5vw, 2.4rem);
	margin: 0.4rem 0 0.8rem;
	letter-spacing: -0.025em;
}

.entry-thumbnail { margin: 0 0 2rem; }
.entry-thumbnail img { border-radius: 12px; display: block; }

.entry-content { font-size: 1.0625rem; }

.entry-content > *:first-child { margin-top: 0; }

.entry-content a { text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--z-accent) 40%, transparent); }
.entry-content a:hover { text-decoration-color: var(--z-accent); }

.entry-content ul,
.entry-content ol { padding-left: 1.4rem; margin: 0 0 1.25em; }
.entry-content li { margin-bottom: 0.35em; }

.entry-content img { border-radius: 10px; }

/* Core block niceties */
.wp-block-image img { border-radius: 10px; }
.wp-block-quote { border-left: 3px solid var(--z-accent); }
.wp-block-code { background: var(--z-code-bg); border-radius: 10px; }
.wp-block-button__link { border-radius: 8px; }
.wp-block-separator { border-top: 1px solid var(--z-border); border-bottom: 0; }

.alignwide { margin-left: -3rem; margin-right: -3rem; max-width: calc(100% + 6rem); }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }

@media (max-width: 880px) {
	.alignwide { margin-left: 0; margin-right: 0; max-width: 100%; }
}

.entry-footer {
	margin-top: 2.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--z-border-soft);
	font-size: 0.88rem;
	color: var(--z-text-muted);
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.entry-footer .tag-link {
	display: inline-block;
	background: var(--z-bg-alt);
	border: 1px solid var(--z-border-soft);
	border-radius: 999px;
	padding: 0.1rem 0.7rem;
	margin: 0 0.25rem 0.25rem 0;
	color: var(--z-text-muted);
	font-size: 0.82rem;
}

.entry-footer .tag-link:hover { color: var(--z-accent); border-color: var(--z-accent); text-decoration: none; }

/* Prev / next navigation */
.post-navigation {
	margin-top: 2.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.post-navigation a {
	display: block;
	border: 1px solid var(--z-border-soft);
	border-radius: 10px;
	padding: 0.9rem 1.1rem;
	text-decoration: none;
	color: var(--z-text);
	background: var(--z-bg-alt);
}

.post-navigation a:hover { border-color: var(--z-accent); }

.post-navigation .nav-label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--z-text-muted);
	margin-bottom: 0.2rem;
}

.post-navigation .nav-title { font-weight: 600; font-size: 0.95rem; }

.post-navigation .nav-next { text-align: right; }

@media (max-width: 600px) {
	.post-navigation { grid-template-columns: 1fr; }
	.post-navigation .nav-next { text-align: left; }
}

/* -------------------------------------------------------------------------
   10. Pagination
   ------------------------------------------------------------------------- */
.pagination { margin-top: 2.5rem; }

.pagination .nav-links {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	align-items: center;
}

.pagination .page-numbers {
	display: inline-block;
	min-width: 2.3rem;
	text-align: center;
	padding: 0.4rem 0.7rem;
	border: 1px solid var(--z-border-soft);
	border-radius: 8px;
	color: var(--z-text-muted);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 600;
}

.pagination .page-numbers:hover { border-color: var(--z-accent); color: var(--z-accent); }

.pagination .page-numbers.current {
	background: var(--z-accent);
	border-color: var(--z-accent);
	color: var(--z-accent-contrast);
}

.pagination .page-numbers.dots { border: 0; }

/* -------------------------------------------------------------------------
   11. Sidebar & widgets
   ------------------------------------------------------------------------- */
.site-sidebar {
	font-size: 0.95rem;
}

.site-sidebar .widget {
	background: var(--z-bg-alt);
	border: 1px solid var(--z-border-soft);
	border-radius: 12px;
	padding: 1.25rem 1.4rem;
	margin-bottom: 1.5rem;
}

.site-sidebar .widget-title,
.site-sidebar .wp-block-heading {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--z-text-muted);
	margin: 0 0 0.8rem;
}

.site-sidebar ul { list-style: none; margin: 0; padding: 0; }
.site-sidebar li { margin-bottom: 0.45rem; }

/* -------------------------------------------------------------------------
   12. Comments
   ------------------------------------------------------------------------- */
.comments-area { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--z-border-soft); }
.comments-title { font-size: 1.25rem; margin-top: 0; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .comment { padding: 1.25rem 0; border-bottom: 1px solid var(--z-border-soft); }
.comment-list .children { list-style: none; padding-left: 1.5rem; }
.comment-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.comment-meta img { border-radius: 50%; }
.comment-metadata { font-size: 0.8rem; color: var(--z-text-muted); }
.comment-content { font-size: 0.97rem; }
.reply { font-size: 0.85rem; }

.comment-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-field {
	width: 100%;
	background: var(--z-bg);
	color: var(--z-text);
	border: 1px solid var(--z-border);
	border-radius: 8px;
	padding: 0.6rem 0.8rem;
	font: inherit;
	margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus,
.search-field:focus {
	border-color: var(--z-accent);
	outline: none;
	box-shadow: 0 0 0 3px var(--z-accent-soft);
}

.comment-form .submit,
.search-submit {
	background: var(--z-accent);
	color: var(--z-accent-contrast);
	border: 0;
	border-radius: 8px;
	padding: 0.6rem 1.3rem;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
}

.comment-form .submit:hover,
.search-submit:hover { background: var(--z-accent-hover); }

/* -------------------------------------------------------------------------
   13. Search form
   ------------------------------------------------------------------------- */
.search-form {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}

.search-form .search-field { margin-bottom: 0; flex: 1; }

/* -------------------------------------------------------------------------
   14. 404 / no results
   ------------------------------------------------------------------------- */
.error-404,
.no-results { text-align: left; padding: 2rem 0; }
.error-404 .page-title { font-size: 1.8rem; }

/* -------------------------------------------------------------------------
   15. Footer
   ------------------------------------------------------------------------- */
.site-footer {
	border-top: 1px solid var(--z-border-soft);
	background: var(--z-bg-alt);
	padding: 2rem 0;
	font-size: 0.88rem;
	color: var(--z-text-muted);
}

.site-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.footer-nav ul {
	display: flex;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.footer-nav a,
.footer-meta a { color: var(--z-text-muted); }

.footer-nav a:hover,
.footer-meta a:hover { color: var(--z-accent); }

.footer-meta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

/* -------------------------------------------------------------------------
   15b. Provenance: version history + revision viewer + diffs
   ------------------------------------------------------------------------- */
.zorderz-history {
	margin-top: 2.5rem;
	background: var(--z-bg-alt);
	border: 1px solid var(--z-border-soft);
	border-radius: 12px;
	padding: 1.5rem 1.75rem;
}

.zorderz-history-title {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
}

.zorderz-history-intro {
	font-size: 0.92rem;
	color: var(--z-text-muted);
	margin: 0 0 1rem;
}

.zorderz-history-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.zorderz-history-item {
	padding: 0.7rem 0;
	border-top: 1px solid var(--z-border-soft);
	font-size: 0.9rem;
}

.zorderz-history-meta {
	display: block;
	color: var(--z-text-muted);
}

.zorderz-history-meta strong { color: var(--z-text); }

.zorderz-history-note {
	display: block;
	margin-top: 0.25rem;
	font-style: italic;
}

.zorderz-history-current {
	display: inline-block;
	margin-top: 0.25rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--z-accent);
}

.zorderz-history-view {
	display: inline-block;
	margin-top: 0.25rem;
	font-size: 0.88rem;
	font-weight: 600;
}

.zorderz-version-banner {
	background: var(--z-accent-soft);
	border: 1px solid var(--z-accent);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
	font-size: 0.95rem;
}

.zorderz-version-banner p { margin: 0 0 0.6rem; }
.zorderz-version-banner p:last-child { margin-bottom: 0; }
.zorderz-version-banner-note { font-style: italic; }

.zorderz-revision .entry-title { margin-top: 0; }

.zorderz-diff {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--z-border-soft);
}

.zorderz-diff h2 { margin-top: 0; font-size: 1.2rem; }

.zorderz-diff-legend {
	font-size: 0.88rem;
	color: var(--z-text-muted);
}

.zorderz-diff table.diff {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-size: 0.88rem;
}

.zorderz-diff table.diff col.ltype { width: 2rem; }

.zorderz-diff table.diff td,
.zorderz-diff table.diff th {
	border: 0;
	padding: 0.3rem 0.6rem;
	vertical-align: top;
	word-wrap: break-word;
}

.zorderz-diff table.diff td { background: var(--z-bg-alt); }

.zorderz-diff .diff-deletedline {
	background: color-mix(in srgb, #d1242f 14%, var(--z-bg)) !important;
	text-decoration: line-through;
	text-decoration-color: color-mix(in srgb, #d1242f 65%, var(--z-text));
}

.zorderz-diff .diff-addedline {
	background: color-mix(in srgb, #1a7f37 16%, var(--z-bg)) !important;
}

.zorderz-diff .diff-deletedline del,
.zorderz-diff .diff-addedline ins {
	text-decoration: inherit;
	background: transparent;
}

.zorderz-version-back { margin-top: 2rem; }

/* -------------------------------------------------------------------------
   16. Small screens
   ------------------------------------------------------------------------- */
@media (max-width: 600px) {
	body { font-size: 1rem; }
	.site-main { padding: 1.75rem 0 3rem; }
	.home-intro { padding: 2.25rem 0; }
	.site-header-inner { gap: 0.75rem 1.25rem; }
}

/* -------------------------------------------------------------------------
   17. Print
   ------------------------------------------------------------------------- */
@media print {
	.site-header, .site-footer, .post-navigation, .comments-area, .pagination { display: none; }
}
