@charset "UTF-8";
:root {
  color-scheme: light;
  --default-color: #100F0F;
  --color-bg: #FFFCF0;
  --color-bg-muted: #F2F0E5;
  --color-text: #100F0F;
  --color-text-muted: #878580;
  --color-heading: #100F0F;
  --color-border: #B7B5AC;
  --color-link: #100F0F;
  --color-link-hover: #BC5215;
  --color-shadow: rgba(0, 0, 0, 0.2);
  --color-pagination-bg: #F2F0E5;
  --color-pagination-hover-bg: #B7B5AC;
  --color-pagination-active-bg: #575653;
  --color-pagination-active-text: #FFFCF0;
  --color-portfolio-bg: #FFFFFF;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    color-scheme: dark;
    --color-bg: #100F0F;
    --color-bg-muted: #1C1B1A;
    --default-color: #CECDC3;
    --color-text: #CECDC3;
    --color-text-muted: #b9b5a9;
    --color-heading: #fff8e6;
    --color-border: #2f333d;
    --color-link: #CECDC3;
    --color-link-hover: #4385BE;
    --color-shadow: rgba(0, 0, 0, 0.7);
    --color-pagination-bg: #1C1B1A;
    --color-pagination-hover-bg: #2f333d;
    --color-pagination-active-bg: #CECDC3;
    --color-pagination-active-text: #100F0F;
    --color-portfolio-bg: #FFFCF0;
  }
}
:root[data-theme=light] {
  color-scheme: light;
  --default-color: #100F0F;
  --color-bg: #FFFCF0;
  --color-bg-muted: #F2F0E5;
  --color-text: #100F0F;
  --color-text-muted: #878580;
  --color-heading: #100F0F;
  --color-border: #B7B5AC;
  --color-link: #100F0F;
  --color-link-hover: #BC5215;
  --color-shadow: rgba(0, 0, 0, 0.2);
  --color-pagination-bg: #F2F0E5;
  --color-pagination-hover-bg: #F2F0E5;
  --color-pagination-active-bg: #100F0F;
  --color-pagination-active-text: #FFFCF0;
  --color-portfolio-bg: #FFFFFF;
}

:root[data-theme=dark] {
  color-scheme: dark;
  --color-bg: #100F0F;
  --color-bg-muted: #1C1B1A;
  --default-color: #CECDC3;
  --color-text: #CECDC3;
  --color-text-muted: #b9b5a9;
  --color-heading: #fff8e6;
  --color-border: #2f333d;
  --color-link: #CECDC3;
  --color-link-hover: #4385BE;
  --color-shadow: rgba(0, 0, 0, 0.7);
  --color-pagination-bg: #1C1B1A;
  --color-pagination-hover-bg: #2f333d;
  --color-pagination-active-bg: #CECDC3;
  --color-pagination-active-text: #100F0F;
  --color-portfolio-bg: #FFFCF0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
}

html,
body {
  color: var(--color-text, #100F0F);
  margin: 0;
  padding: 0;
  background-color: var(--color-bg, #FFFCF0);
  height: 100%;
}

body.layout-project {
  background-color: var(--color-portfolio-bg);
}

html {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica", "Arial", "Segoe UI", "Inter", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Microsoft YaHei Light", sans-serif;
  overflow-y: scroll;
  font-size: 16px;
}
@media (min-width: 748px) {
  html {
    font-size: clamp(16px, 1.5vw, 18px);
  }
}

body {
  -webkit-text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* assegura altura mínima pantalla */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading, #100F0F);
  font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: normal;
  font-weight: 400;
}

h1 {
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 3rem);
  margin-block-start: 1em;
  margin-block-end: 0.3em;
  font-weight: 500;
}

h2 {
  font-size: clamp(1.2rem, 1.1rem + 0.35vw, 2rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.1rem, 1rem + 0.25vw, 1.6rem);
  font-weight: 500;
  margin-block-start: 1.5em;
  margin-block-end: 1.5em;
}

h4 {
  font-size: clamp(1rem, 0.9rem + 0.15vw, 1.3rem);
}

h5 {
  font-size: clamp(0.9rem, 0.8rem + 0.1vw, 1.1rem);
}

h6 {
  font-size: clamp(0.8rem, 0.6rem + 0.05vw, 0.9rem);
  text-transform: uppercase;
  font-weight: 500;
}

main {
  flex: 1 0 auto;
}
main a {
  color: var(--color-link, #100F0F);
  text-decoration: underline;
}
main .pagination a,
main .catalogue a {
  color: var(--color-link, #100F0F);
  text-decoration: none;
}

.footnotes {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 3rem;
  padding-top: 0.5rem;
  margin-bottom: 50px;
}
.footnotes a {
  text-decoration: none;
  color: var(--color-link, #100F0F);
}

footer {
  flex-shrink: 0;
}
footer a {
  text-decoration: underline;
  color: var(--color-link, #100F0F);
}

a {
  color: var(--color-link, #100F0F);
  text-decoration: none;
  cursor: pointer !important;
  pointer-events: auto !important;
}

a:hover {
  color: var(--color-link-hover, #205EA6);
}

button,
.button,
input[type=button],
input[type=submit],
input[type=reset] {
  display: inline-block;
  margin: 30px auto;
  border: none;
  background: var(--color-bg-muted);
  color: var(--color-text, #100F0F);
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
button:hover,
.button:hover,
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover {
  color: var(--color-bg-muted);
  background: var(--color-link-hover);
}

blockquote {
  color: var(--color-text-muted, #575653);
  margin: 0.8rem 0;
  padding: 0.5rem 1rem;
  font-style: italic;
}
blockquote p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  blockquote {
    padding: 2rem;
  }
}

img {
  display: block;
  margin: 0 0 1rem;
  max-width: 100%;
  border-radius: 8px;
}

img.center {
  display: block;
  margin: 0 auto;
}

td {
  vertical-align: top;
}

.video-embed {
  margin: 2rem 0;
}

.video-embed__ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}
.video-embed__ratio iframe {
  border: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

pre,
code {
  font-family: Menlo, Monaco, monospace;
}

code {
  background-color: #F2F0E5;
  border-radius: 3px;
  color: #bf616a;
  font-size: 85%;
  padding: 0.25em 0.5em;
}

pre {
  margin: 0 0 1rem;
}

pre code {
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  padding: 0;
}

.highlight {
  background-color: #F2F0E5;
  border-radius: 3px;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: 1rem;
}
.highlight pre {
  margin-bottom: 0;
  overflow-x: auto;
}
.highlight .lineno {
  color: #B7B5AC;
  display: inline-block;
  padding: 0 0.75rem 0 0.25rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.post-info {
  color: var(--color-text-muted, #B7B5AC);
  margin: 0 0 30px 0;
}
.post-info a {
  color: inherit;
  text-decoration: underline;
}
.post-info a:hover {
  color: var(--color-link-hover, #205EA6);
  text-decoration: underline;
}
.post-info span {
  font-style: italic;
}
.post-title {
  color: #878580;
  font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 1rem 0;
  text-transform: uppercase;
}
.post-line {
  display: block;
  margin: 0 auto 3rem;
  width: 4rem;
}
.post h1.post-title {
  display: block;
}
.post p {
  margin: 0 0 1rem;
  text-align: left;
}
.post a:hover {
  text-decoration: underline;
}
.post img {
  margin: 0 auto 0.5rem;
}
.post img + em {
  color: #B7B5AC;
  display: block;
  font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  text-align: center;
}
.post img.emoji {
  display: inline-block;
  left: 0;
  transform: none;
  width: 1rem;
  height: 1rem;
  vertical-align: text-top;
  padding: 0;
  margin: 0;
}

.meta-collection {
  margin: -3.5rem 0 8rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-collection-link {
  color: var(--text-muted, #888);
  text-decoration: none;
}

.meta-collection-link:hover {
  color: var(--text);
  text-decoration: underline;
}

.related-block {
  margin-top: 3rem;
}
.related-block h3 {
  margin-bottom: 1rem;
}
.related-block .cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.related-block .cards .card {
  display: block;
  background: var(--color-bg-muted);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.8em;
}
.related-block .cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.related-block .cards .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.related-block .cards .card .card-content {
  padding: 1rem;
}
.related-block .cards .card .card-content h5 {
  margin: 0 0 0.5rem 0;
}
.related-block .cards .card .card-content p {
  margin: 0;
  color: #878580;
}

.highlight .hll {
  background-color: #ffc;
}

.highlight .c {
  color: #999;
} /* Comment */
.highlight .err {
  color: #a00;
  background-color: #faa;
} /* Error */
.highlight .k {
  color: #069;
} /* Keyword */
.highlight .o {
  color: #555;
} /* Operator */
.highlight .cm {
  color: #09f;
  font-style: italic;
} /* Comment.Multiline */
.highlight .cp {
  color: #099;
} /* Comment.Preproc */
.highlight .c1 {
  color: #999;
} /* Comment.Single */
.highlight .cs {
  color: #999;
} /* Comment.Special */
.highlight .gd {
  background-color: #fcc;
  border: 1px solid #c00;
} /* Generic.Deleted */
.highlight .ge {
  font-style: italic;
} /* Generic.Emph */
.highlight .gr {
  color: #f00;
} /* Generic.Error */
.highlight .gh {
  color: #030;
} /* Generic.Heading */
.highlight .gi {
  background-color: #cfc;
  border: 1px solid #0c0;
} /* Generic.Inserted */
.highlight .go {
  color: #aaa;
} /* Generic.Output */
.highlight .gp {
  color: #009;
} /* Generic.Prompt */
/* Generic.Strong */
.highlight .gu {
  color: #030;
} /* Generic.Subheading */
.highlight .gt {
  color: #9c6;
} /* Generic.Traceback */
.highlight .kc {
  color: #069;
} /* Keyword.Constant */
.highlight .kd {
  color: #069;
} /* Keyword.Declaration */
.highlight .kn {
  color: #069;
} /* Keyword.Namespace */
.highlight .kp {
  color: #069;
} /* Keyword.Pseudo */
.highlight .kr {
  color: #069;
} /* Keyword.Reserved */
.highlight .kt {
  color: #078;
} /* Keyword.Type */
.highlight .m {
  color: #f60;
} /* Literal.Number */
.highlight .s {
  color: #d44950;
} /* Literal.String */
.highlight .na {
  color: #4f9fcf;
} /* Name.Attribute */
.highlight .nb {
  color: #366;
} /* Name.Builtin */
.highlight .nc {
  color: #0a8;
} /* Name.Class */
.highlight .no {
  color: #360;
} /* Name.Constant */
.highlight .nd {
  color: #99f;
} /* Name.Decorator */
.highlight .ni {
  color: #999;
} /* Name.Entity */
.highlight .ne {
  color: #c00;
} /* Name.Exception */
.highlight .nf {
  color: #c0f;
} /* Name.Function */
.highlight .nl {
  color: #99f;
} /* Name.Label */
.highlight .nn {
  color: #0cf;
} /* Name.Namespace */
.highlight .nt {
  color: #2f6f9f;
} /* Name.Tag */
.highlight .nv {
  color: #033;
} /* Name.Variable */
.highlight .ow {
  color: #000;
} /* Operator.Word */
.highlight .w {
  color: #bbb;
} /* Text.Whitespace */
.highlight .mf {
  color: #f60;
} /* Literal.Number.Float */
.highlight .mh {
  color: #f60;
} /* Literal.Number.Hex */
.highlight .mi {
  color: #f60;
} /* Literal.Number.Integer */
.highlight .mo {
  color: #f60;
} /* Literal.Number.Oct */
.highlight .sb {
  color: #c30;
} /* Literal.String.Backtick */
.highlight .sc {
  color: #c30;
} /* Literal.String.Char */
.highlight .sd {
  color: #c30;
  font-style: italic;
} /* Literal.String.Doc */
.highlight .s2 {
  color: #c30;
} /* Literal.String.Double */
.highlight .se {
  color: #c30;
} /* Literal.String.Escape */
.highlight .sh {
  color: #c30;
} /* Literal.String.Heredoc */
.highlight .si {
  color: #a00;
} /* Literal.String.Interpol */
.highlight .sx {
  color: #c30;
} /* Literal.String.Other */
.highlight .sr {
  color: #3aa;
} /* Literal.String.Regex */
.highlight .s1 {
  color: #c30;
} /* Literal.String.Single */
.highlight .ss {
  color: #fc3;
} /* Literal.String.Symbol */
.highlight .bp {
  color: #366;
} /* Name.Builtin.Pseudo */
.highlight .vc {
  color: #033;
} /* Name.Variable.Class */
.highlight .vg {
  color: #033;
} /* Name.Variable.Global */
.highlight .vi {
  color: #033;
} /* Name.Variable.Instance */
.highlight .il {
  color: #f60;
} /* Literal.Number.Integer.Long */
.css .o,
.css .o + .nt,
.css .nt + .nt {
  color: #999;
}

.container {
  margin: 0 auto;
  max-width: 800px;
  width: 90%;
}

main,
footer,
.nav-container {
  display: block;
  margin: 0 auto;
  max-width: 750px;
  width: 90%;
}

div.nav-title {
  font-size: 1rem;
  font-weight: 600;
}

.nav {
  padding-top: 30px;
  margin-bottom: 30px;
  /* 
    Layout anterior (logo centrado arriba y navegación debajo)
    ---------------------------------------------------------
    Descomenta este bloque si quieres recuperar la versión anterior:

    &-container {
      margin: 1rem auto;
      position: relative;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }

    ul {
      text-align: center;
      justify-content: center;
    }

    @media (min-width: 600px) {
      &-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }

      ul {
        position: absolute;
        right: 0;
        bottom: 0;
      }
    }
  */
}
.nav-container {
  margin: 1rem auto;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.nav-title {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: var(--color-text, #100F0F);
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding-right: 0.2rem;
}
.nav-title:hover, .nav-title:focus {
  opacity: 0.6;
}
.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav li {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: var(--color-text, #100F0F);
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  gap: 0.25rem;
  opacity: 0.6;
  padding: 0 1rem 0 0;
}
.nav li:last-child {
  padding-right: 0;
}
.nav li:hover, .nav li:focus {
  opacity: 1;
}
.nav .nav-theme-toggle {
  padding: 0;
}
.nav .nav-theme-toggle .theme-toggle {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  line-height: 0;
  cursor: pointer;
}
.nav .nav-theme-toggle .theme-toggle .theme-toggle-icon {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
}
.nav .nav-theme-toggle .theme-toggle .theme-toggle-icon--sun {
  display: block;
}
.nav .nav-theme-toggle .theme-toggle[aria-pressed=true] .theme-toggle-icon--sun {
  display: none;
}
.nav .nav-theme-toggle .theme-toggle[aria-pressed=true] .theme-toggle-icon--moon {
  display: block;
}

section.home-intro {
  margin-bottom: 80px;
}

footer {
  padding: 2rem 0;
  text-align: center;
  color: #878580;
  font-size: 0.8em;
  margin-top: 50px;
}

.layout-micro h1 {
  display: none;
}

.layout-project {
  width: 100%;
}

@media (min-width: 600px) {
  .nav-container {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
  }
  .nav ul {
    position: static;
  }
}
@media (max-width: 768px) {
  section.home-intro {
    padding: 0px;
  }
}
.pagination {
  border-top: 0.5px solid var(--color-border);
  position: relative;
  text-align: center;
  margin-top: 30px;
  padding: 0.5rem 0;
}
.pagination span {
  color: var(--color-text-muted, #878580);
  font-size: 1.1rem;
}
.pagination .back,
.pagination .top {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: var(--color-link, #100F0F);
  font-size: 0.85rem;
  opacity: 0.6;
}
.pagination .back:hover,
.pagination .top:hover {
  opacity: 1;
}
.pagination .arrow {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: var(--color-link, #100F0F);
  position: absolute;
}
.pagination .arrow:hover, .pagination .arrow:focus {
  opacity: 0.6;
  text-decoration: none;
}
.pagination .left {
  left: 0;
}
.pagination .right {
  right: 0;
}
.pagination .page-number {
  border-radius: 999px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0.2rem;
  min-width: 2rem;
  padding: 0.2rem 0.65rem;
  text-decoration: none;
  color: var(--color-text, #100F0F);
  border: 1px solid transparent;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pagination .page-number:hover {
  background: var(--color-pagination-hover-bg, var(--color-border, #B7B5AC));
}
.pagination .page-number.current {
  background: var(--color-pagination-bg, #100F0F);
  color: #100F0F;
}

.pagination--arrows {
  border-top: none;
  display: flex;
  justify-content: flex-start;
  gap: 0.4rem;
  padding: 0.5rem 0;
}
.pagination--arrows .arrow {
  align-items: center;
  border-radius: 999px;
  color: var(--color-pagination-active-bg);
  background: var(--color-pagination-bg);
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  min-width: 2.5rem;
  opacity: 0.6;
  position: static;
  transition: background 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}
.pagination--arrows .arrow:hover, .pagination--arrows .arrow:focus {
  background: var(--color-pagination-hover-bg, var(--color-border, #B7B5AC));
  color: var(--color-text, #100F0F);
  opacity: 1;
}
.pagination--arrows .left {
  position: static;
}
.pagination--arrows .right {
  margin-left: auto;
  position: static;
}
.pagination--arrows span,
.pagination--arrows .page-number {
  display: none;
}

.catalogue-item {
  border-bottom: 1px solid #F2F0E5;
  color: #100F0F;
  display: block;
  padding: 2rem 0;
}
.catalogue-item:hover .catalogue-line, .catalogue-item:focus .catalogue-line {
  width: 5rem;
}
.catalogue-item:last-child {
  border: 0;
}
.catalogue-pinned {
  color: #B7B5AC;
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua", "Georgia", serif;
  letter-spacing: 0.5px;
}
.catalogue-time {
  color: #B7B5AC;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica", "Arial", "Segoe UI", "Inter", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Microsoft YaHei Light", sans-serif;
  font-size: 0.9rem;
}
.catalogue-title {
  display: block;
  font-size: 1.25rem;
  margin: 0.5rem 0;
}
.catalogue-line {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-top: 0.2rem solid #878580;
  display: block;
  width: 2rem;
}

.tags-clouds {
  font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  margin-bottom: 100px;
  font-size: 0.85rem;
}
.tags-clouds a {
  display: inline-block;
  margin: 0 0.1rem 0.2rem;
  padding: 0.2rem 0.5rem;
  background: var(--color-bg-muted, #F2F0E5);
  border-radius: 5px;
  color: var(--color-text, #100F0F);
  text-decoration: none;
}
.tags-clouds a:hover, .tags-clouds a:active {
  background: var(--color-bg, #FFFCF0);
  color: var(--color-heading, #100F0F);
}
@media (prefers-color-scheme: light) {
  .tags-clouds a:hover, .tags-clouds a:active {
    background: #B7B5AC;
    color: #FFFCF0;
  }
}
.tags h3.tags-item-label {
  display: block !important;
  font-size: 1rem !important;
}
.tags-item-icon {
  height: 1rem;
}
.tags-item-label {
  display: inline-block;
  margin: 2rem 0 0.5rem;
}
.tags-post {
  padding: 5px 0;
}
.tags-post-title {
  color: #100F0F;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tags-post-line {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-top: 0.1rem solid #878580;
  display: block;
  width: 0;
}
.tags-post-meta {
  color: #B7B5AC;
  text-align: right;
  white-space: nowrap;
}
.tags-post:hover .tags-post-line, .tags-post:active .tags-post-line {
  width: 3rem;
}
.tags-post:hover .tags-post-meta, .tags-post:active .tags-post-meta {
  color: #878580;
}

/* a.hashtag {
    white-space: nowrap;
    text-decoration: none;
    text-decoration-color: var(--color-base-25);
    text-decoration-thickness: 5px;
    font-size: 0.85rem;
    padding:2px;
    border-radius: 5px;
    border: 1px solid var(--color-border, #B7B5AC);
    color: var(--color-text, #100F0F);
}

a.hashtag:hover {
    text-decoration: none;
    background-color: var(--color-bg-muted, #F2F0E5);
    color: var(--color-heading, #100F0F);
}
 */
.tags-item-list,
.collection {
  margin: 20px 0 20px 0;
  border-radius: 8px;
  background-color: var(--color-bg-muted, #F2F0E5);
  padding: 20px;
}
.tags-item-list .collection-title,
.collection .collection-title {
  display: block;
  font-weight: 700;
}
.tags-item-list .collection-title a,
.collection .collection-title a {
  text-decoration: none;
}

.collection-index {
  display: flex;
  align-items: baseline;
  /* o center, según necesites */
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .collection-index {
    flex-direction: column;
    align-items: flex-start;
  }
  .collection-index h1,
  .collection-index .collection-list {
    width: 100%;
  }
  .collection-index ul.collection-list {
    padding: 0;
  }
}
.collection-index ul.collection-list {
  list-style-type: none;
}
.collection-index .collection-date {
  width: 100px !important;
  margin-right: 10px;
  display: inline-flex;
  /* puedes dejarlo así o cambiar a flex */
  margin-left: auto;
  /* clave: empuja el span al extremo derecho */
  justify-content: flex-end;
  /* alinea el contenido dentro del span a la derecha */
  text-align: right;
  /* por si dentro hay texto inline */
  font-variant-numeric: tabular-nums;
}

.notfound {
  position: relative;
  text-align: center;
  margin: 4rem 0;
}
.notfound-error {
  font-size: 4rem;
  margin: 1rem 0;
}
.notfound-line {
  border-top: 0.4rem solid #878580;
  display: block;
  margin: 0 auto 3rem;
  width: 4rem;
}
.notfound-message {
  max-width: 25rem;
  margin: 0 auto;
}

.project {
  padding: 3rem 0;
}
.project-header {
  margin-bottom: 2rem;
}
.project-meta {
  color: #B7B5AC;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.project-title {
  margin: 0.2rem 0 0.6rem;
}
.project-summary {
  font-size: 1.1rem;
  color: #878580;
  max-width: 60ch;
}
.project-gallery {
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.project-gallery--masonry {
  column-count: 1;
  column-gap: 1rem;
  display: block;
}
@media (min-width: 640px) {
  .project-gallery--masonry {
    column-count: 2;
  }
}
@media (min-width: 1024px) {
  .project-gallery--masonry {
    column-count: 3;
  }
}
.project-gallery--masonry a {
  break-inside: avoid;
  margin-bottom: 1rem;
}
.project-gallery--collage {
  grid-auto-flow: dense;
  grid-auto-rows: 180px;
}
@media (min-width: 640px) {
  .project-gallery--collage {
    grid-auto-rows: 220px;
  }
}
.project-gallery--collage a:nth-child(6n+1) {
  grid-row: span 2;
  grid-column: span 2;
}
.project-gallery--collage a:nth-child(6n+3) {
  grid-column: span 2;
}
.project-gallery--collage a:nth-child(6n+5) {
  grid-row: span 2;
}
.project-gallery--carousel {
  display: block;
}
.project-gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}
.project-gallery-track a {
  flex: 0 0 clamp(220px, 60vw, 420px);
  scroll-snap-align: center;
}
.project-gallery-track::-webkit-scrollbar {
  height: 8px;
}
.project-gallery-track::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}
.project-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background-color: #F2F0E5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.project-gallery a:hover img {
  transform: scale(1.03);
}
.project-gallery-title {
  font-size: 1.2rem;
  margin: 0 0 0.3rem;
  font-weight: 500;
}
.project-gallery-description {
  margin: 0 0 1rem;
  color: #878580;
}
.project-gallery-empty {
  text-align: center;
  color: #B7B5AC;
  font-style: italic;
}
.project-gallery-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.project-content {
  margin-top: 2rem;
  font-size: 1rem;
}
.project-content p {
  margin-bottom: 1.2rem;
}

/*# sourceMappingURL=main.css.map */