/*
Theme Name: StudioEssay
Theme URI: https://jorgesv.com/studioessay
Author: Jorge
Description: A minimal, content-focused WordPress theme. Warm cream palette, clean typography, and distraction-free reading.
Version: 1.5.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: studioessay
Tags: blog, minimal, clean, one-column, custom-menu, custom-logo, editor-style, featured-images, sticky-post, threaded-comments, translation-ready
*/

/* ===================================================
   CSS Variables
=================================================== */
:root {
  --color-background: #fdfbf7;
  --color-surface:    #f7f4ef;
  --color-text:       #14110f;
  --color-muted:      #54504a;
  --color-border:     #e6e0d6;
  --color-accent:     #0f0d0b;
  --color-link:       #14110f;
  --color-link-hover: #54504a;

  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;

  --weight-body:    400;
  --weight-medium:  500;
  --weight-strong:  600;
  --weight-heading: 700;

  --line-height-body: 1.7;
  --letter-spacing-tight: -0.01em;

  --space-1: 0.4rem;
  --space-2: 0.8rem;
  --space-3: 1.2rem;
  --space-4: 1.6rem;
  --space-5: 2.4rem;
  --space-6: 3.2rem;
  --space-7: 4.8rem;

  --radius-soft: 10px;
  --max-width: 700px;
}

/* ===================================================
   Reset & Base
=================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: var(--line-height-body);
  letter-spacing: var(--letter-spacing-tight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

/* ===================================================
   Layout Wrapper
=================================================== */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-container {
  width: 100%;
  max-width: calc(var(--max-width) + 4rem);
  margin: 0 auto;
  padding: 0 2rem;
}

.site-main {
  flex: 1;
  padding: var(--space-6) 0;
}

/* ===================================================
   Site Header
=================================================== */
.site-header {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
}

.site-header .site-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.site-branding {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-branding-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-3);
}

/* Logo: contenedor de tamaño fijo, todo lo que hay dentro lo rellena */
.site-logo {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  overflow: hidden;
  border-radius: var(--radius-soft);
}

.site-logo .custom-logo-link,
.site-logo .custom-logo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  line-height: 0;
}

.site-logo img {
  object-fit: contain;
  line-height: 0;
}

.site-logo .site-emoji {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1 !important;
}

.site-identity {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.site-title {
  font-size: 1rem;
  font-weight: var(--weight-heading);
  color: var(--color-text);
  line-height: 1.3;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-title a:hover {
  color: var(--color-muted);
}

.site-tagline {
  font-size: 1rem;
  color: var(--color-muted);
  font-weight: var(--weight-medium);
  line-height: 1.4;
}

.site-bio {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  padding-left: calc(2.75rem + var(--space-3));
}

/* ===================================================
   Primary Navigation
=================================================== */
.main-navigation {
  display: flex;
  align-items: flex-start;
  padding-top: 0.1rem;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.main-navigation a {
  font-size: 1rem;
  font-weight: var(--weight-strong);
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--color-muted);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
  color: var(--color-text);
}

.menu-toggle svg {
  display: block;
  width: 22px;
  height: 22px;
}

/* ===================================================
   Post List (Home / Archive)
=================================================== */
.posts-section-title {
  font-size: 1rem;
  font-weight: var(--weight-medium);
  color: var(--color-muted);
  margin-bottom: var(--space-4);
  letter-spacing: 0;
}

.post-list {
  list-style: none;
}

.post-list-item {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0 var(--space-3);
  padding: var(--space-4) 0;
  border: none;
  border-top: none;
  border-bottom: none;
}

.post-list-item:first-child,
.post-list-item:last-child {
  border: none;
}

.post-list-date {
  font-size: 0.875rem;
  color: var(--color-muted);
  font-weight: var(--weight-medium);
  padding-top: 0.15rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.post-list-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.post-list-title {
  font-size: 1rem;
  font-weight: var(--weight-strong);
  color: var(--color-text);
  line-height: 1.4;
}

.post-list-title a {
  color: inherit;
  text-decoration: none;
}

.post-list-title a:hover {
  color: var(--color-muted);
}

.post-list-excerpt {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.65;
}

/* ===================================================
   Pagination
=================================================== */
.pagination {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.pagination ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pagination li {
  list-style: none;
}

.pagination a,
.pagination span {
  font-size: 0.875rem;
  font-weight: var(--weight-medium);
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.pagination a:hover {
  color: var(--color-text);
}

.pagination .current {
  color: var(--color-text);
  font-weight: var(--weight-strong);
}

.pagination .prev,
.pagination .next {
  font-weight: var(--weight-strong);
  color: var(--color-text);
}

/* ===================================================
   Single Post
=================================================== */
.post-header {
  margin-bottom: var(--space-6);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.post-date {
  font-size: 0.875rem;
  color: var(--color-muted);
  font-weight: var(--weight-medium);
  font-variant-numeric: tabular-nums;
}

.post-categories a {
  font-size: 0.8125rem;
  font-weight: var(--weight-medium);
  color: var(--color-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.post-categories a:hover {
  border-color: var(--color-muted);
}

.post-title {
  font-size: 1.875rem;
  font-weight: var(--weight-heading);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* ===================================================
   Post Thumbnail
=================================================== */
.post-thumbnail {
  margin-bottom: var(--space-6);
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================================
   Prose (Post Content)
=================================================== */
.prose {
  font-size: 1rem;
  line-height: var(--line-height-body);
  color: var(--color-text);
}

.prose > * + * {
  margin-top: 1.5em;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  font-weight: var(--weight-heading);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

.prose h1 { font-size: 1.875rem; margin-top: 2.5em; }
.prose h2 { font-size: 1.375rem; margin-top: 2em; }
.prose h3 { font-size: 1.125rem; margin-top: 1.75em; }
.prose h4 { font-size: 1rem;     margin-top: 1.5em; font-weight: var(--weight-strong); }

.prose h2:first-child,
.prose h3:first-child { margin-top: 0; }

.prose p { margin-top: 1.25em; }
.prose p:first-child { margin-top: 0; }

.prose a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-border);
  transition: text-decoration-color 0.15s ease;
}

.prose a:hover {
  text-decoration-color: var(--color-muted);
}

.prose strong {
  font-weight: var(--weight-strong);
}

.prose em {
  font-style: italic;
}

.prose ul,
.prose ol {
  padding-left: 1.5em;
}

.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }

.prose li { margin-top: 0.4em; }
.prose li > ul,
.prose li > ol { margin-top: 0.4em; }

.prose blockquote {
  border-left: 3px solid var(--color-border);
  padding-left: var(--space-4);
  color: var(--color-muted);
  font-style: italic;
  margin-left: 0;
  margin-right: 0;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--color-surface);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  color: var(--color-text);
}

.prose pre {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-soft);
  padding: var(--space-3);
  overflow-x: auto;
  margin-top: 1.5em;
}

.prose pre code {
  background: transparent;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.prose hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-5) 0;
}

.prose img {
  border-radius: var(--radius-soft);
  margin: var(--space-4) auto;
}

.prose figure {
  margin: var(--space-5) 0;
}

.prose figcaption {
  font-size: 0.875rem;
  color: var(--color-muted);
  text-align: center;
  margin-top: var(--space-2);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.prose th,
.prose td {
  text-align: left;
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.prose th {
  font-weight: var(--weight-strong);
  color: var(--color-muted);
  font-size: 0.875rem;
}

/* Heading anchor links */
.prose h2 .anchor-link,
.prose h3 .anchor-link,
.prose h4 .anchor-link {
  opacity: 0;
  margin-left: 0.4em;
  color: var(--color-muted);
  text-decoration: none;
  font-weight: var(--weight-body);
  transition: opacity 0.15s ease;
}

.prose h2:hover .anchor-link,
.prose h3:hover .anchor-link,
.prose h4:hover .anchor-link {
  opacity: 1;
}

/* ===================================================
   Post Navigation (prev/next)
=================================================== */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  max-width: 48%;
}

.post-nav-link.next {
  align-items: flex-end;
  margin-left: auto;
}

.post-nav-label {
  font-size: 0.8125rem;
  font-weight: var(--weight-medium);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.post-nav-title {
  font-size: 0.9375rem;
  font-weight: var(--weight-strong);
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.4;
}

.post-nav-title:hover {
  color: var(--color-muted);
}

/* ===================================================
   Comments
=================================================== */
.comments-area {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.comments-title {
  font-size: 1.125rem;
  font-weight: var(--weight-heading);
  margin-bottom: var(--space-4);
}

.comment-list {
  list-style: none;
}

.comment {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.comment-author-name {
  font-weight: var(--weight-strong);
  font-size: 0.9375rem;
}

.comment-date {
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.comment-body p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Comment form */
.comment-respond {
  margin-top: var(--space-5);
}

.comment-reply-title {
  font-size: 1rem;
  font-weight: var(--weight-heading);
  margin-bottom: var(--space-4);
}

.comment-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--weight-medium);
  color: var(--color-muted);
  margin-bottom: var(--space-1);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: var(--space-2) var(--space-3);
  outline: none;
  transition: border-color 0.15s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--color-muted);
}

.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.comment-form .form-submit {
  margin-top: var(--space-3);
}

.comment-form .submit,
.wp-block-button__link,
button[type="submit"] {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: var(--weight-strong);
  color: var(--color-background);
  background: var(--color-text);
  border: none;
  border-radius: 6px;
  padding: var(--space-2) var(--space-4);
  cursor: pointer;
  transition: background-color 0.15s ease;
  letter-spacing: 0;
}

.comment-form .submit:hover,
button[type="submit"]:hover {
  background: var(--color-muted);
}

/* ===================================================
   Site Footer
=================================================== */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-4) 0 var(--space-5);
}

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

.site-footer p {
  font-size: 0.875rem;
  font-weight: var(--weight-medium);
  color: var(--color-muted);
}

.site-footer a {
  color: var(--color-muted);
  text-decoration: none;
}

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

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: var(--weight-medium);
  color: var(--color-muted);
}

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

/* ===================================================
   Page / Static Page
=================================================== */
.page-header {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.page-title {
  font-size: 1.875rem;
  font-weight: var(--weight-heading);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* ===================================================
   Archive Page
=================================================== */
.archive-header {
  margin-bottom: var(--space-5);
}

.archive-title {
  font-size: 1.25rem;
  font-weight: var(--weight-heading);
  letter-spacing: -0.015em;
}

.archive-description {
  margin-top: var(--space-2);
  font-size: 0.9375rem;
  color: var(--color-muted);
}

/* ===================================================
   404 Page
=================================================== */
.error-404 {
  text-align: center;
  padding: var(--space-7) 0;
}

.error-404 .page-title {
  font-size: 4rem;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-3);
  color: var(--color-muted);
}

.error-404 .page-subtitle {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: var(--space-5);
}

/* ===================================================
   Search Form & Results
=================================================== */
.search-form {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.search-field {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: var(--space-2) var(--space-3);
  outline: none;
  transition: border-color 0.15s ease;
}

.search-field:focus {
  border-color: var(--color-muted);
}

.search-submit {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: var(--weight-strong);
  color: var(--color-background);
  background: var(--color-text);
  border: none;
  border-radius: 6px;
  padding: var(--space-2) var(--space-4);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.search-submit:hover {
  background: var(--color-muted);
}

.search-no-results {
  text-align: center;
  padding: var(--space-7) 0;
  color: var(--color-muted);
}

/* ===================================================
   Widgets / Sidebar (if used)
=================================================== */
.widget-area {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.widget {
  margin-bottom: var(--space-5);
}

.widget-title {
  font-size: 0.8125rem;
  font-weight: var(--weight-strong);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

/* ===================================================
   Block Editor Alignment
=================================================== */
.wp-block-image.alignfull,
.wp-block-cover.alignfull {
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.wp-block-image.alignwide {
  max-width: calc(var(--max-width) + 8rem);
  margin-left: calc(50% - (var(--max-width) + 8rem) / 2);
  margin-right: calc(50% - (var(--max-width) + 8rem) / 2);
}

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

.screen-reader-text:focus {
  background-color: var(--color-background);
  clip: auto !important;
  clip-path: none;
  color: var(--color-text);
  display: block;
  font-size: 0.875rem;
  font-weight: var(--weight-strong);
  height: auto;
  left: 1rem;
  line-height: normal;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  top: 1rem;
  width: auto;
  z-index: 100000;
}

/* ===================================================
   Responsive
=================================================== */
@media (max-width: 640px) {
  .site-header .site-container {
    flex-direction: column;
    gap: var(--space-3);
  }

  .main-navigation ul {
    gap: var(--space-3);
  }

  .post-list-item {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  .post-list-date {
    font-size: 0.8125rem;
  }

  .post-title {
    font-size: 1.5rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .post-navigation {
    flex-direction: column;
    gap: var(--space-4);
  }

  .post-nav-link.next {
    align-items: flex-start;
    margin-left: 0;
  }

  .site-footer .site-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .error-404 .page-title {
    font-size: 3rem;
  }

  .prose h1 { font-size: 1.5rem; }
  .prose h2 { font-size: 1.25rem; }
}

/* ===================================================
   Homepage Sections
=================================================== */
.homepage-section {
  margin-bottom: var(--space-7);
}

.section-heading {
  font-size: 1.375rem;
  font-weight: var(--weight-heading);
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

/* ===================================================
   Projects Section
=================================================== */
.project-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.project-card-image {
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: var(--color-surface);
}

.project-card-image a {
  display: block;
}

.project-card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.project-card-image a:hover img {
  opacity: 0.9;
}

.project-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.project-card-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.project-card-title {
  font-size: 1.125rem;
  font-weight: var(--weight-heading);
  line-height: 1.3;
}

.project-card-title a {
  color: var(--color-text);
  text-decoration: none;
}

.project-card-title a:hover {
  color: var(--color-muted);
}

.project-card-date {
  font-size: 0.875rem;
  color: var(--color-muted);
  font-weight: var(--weight-medium);
  white-space: nowrap;
  flex-shrink: 0;
}

.project-card-excerpt {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ===================================================
   Writing Section — Tabs
=================================================== */
.writing-section .section-heading {
  margin-bottom: var(--space-3);
}

.writing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.writing-tab-btn {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: var(--weight-medium);
  color: var(--color-muted);
  background: transparent;
  border: 1.5px solid var(--color-border);
  border-radius: 9999px;
  padding: 0.5rem 1.4rem;
  cursor: pointer;
  line-height: 1.5;
  letter-spacing: -0.005em;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.writing-tab-btn:hover {
  background: var(--color-surface);
  border-color: var(--color-muted);
  color: var(--color-text);
}

.writing-tab-btn.is-active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-background);
  font-weight: var(--weight-strong);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.writing-tab-panel {
  display: none;
}

.writing-tab-panel.is-active {
  display: block;
}

.ext-icon {
  font-size: 0.8em;
  color: var(--color-muted);
}

.posts-empty {
  color: var(--color-muted);
  font-size: 0.9375rem;
  padding: var(--space-4) 0;
}

@media (max-width: 640px) {
  .project-card-header {
    flex-direction: column;
    gap: var(--space-1);
  }
}
