@view-transition {
  navigation: auto;
}
:root {
  --color-background: #fff;
  --color-text: #000;
  --color-muted: color-mix(in srgb, var(--color-text) 65%, transparent);
  --color-text-light: color-mix(in srgb, var(--color-text) 5%, transparent);
  --color-link: #0080FF;
  --color-alt: #FFFF6B;
  --font-size-small: .85rem;
  font-size: 18px;
}

html {
  padding-right: 2rem;
  padding-left: 2rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", "Droid Serif", Times, "Source Serif Pro", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
body main {
  flex: 1;
  width: 100%;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: 0.1s ease-in all;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: Oswald, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
}

.site-header,
.site-main,
.site-footer {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.site-main {
  container-type: inline-size;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.site-main a {
  color: var(--color-link);
  text-decoration: none;
}

.site-topbar {
  margin-left: -2rem;
  margin-right: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background: var(--color-text);
}

.topbar-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.topbar-nav a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  line-height: 1;
  font-size: var(--font-size-small);
  color: var(--color-background);
  font-family: Oswald, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.topbar-nav a:hover {
  background: color-mix(in srgb, var(--color-background) 15%, transparent);
}

.site-header {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}
.site-header::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: var(--color-text);
  position: absolute;
  bottom: 0;
  left: 0;
}
.site-header a {
  text-decoration: none;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  position: absolute;
  top: 2rem;
  right: 0;
  width: 24px;
  height: 18px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.nav-toggle-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle-bar:nth-child(1) {
  top: 0;
}
.nav-toggle-bar:nth-child(2) {
  top: 8px;
}
.nav-toggle-bar:nth-child(3) {
  top: 16px;
}

.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-name {
  display: inline-grid;
  grid-template-columns: 2em 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-link);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.1s ease-in transform;
}
.site-name .logo {
  width: 100%;
  height: auto;
}
.site-name .logo .base {
  fill: var(--color-link);
}
.site-name .logo .circulo {
  fill: var(--color-alt);
}
.site-name .logo .flecha {
  fill: var(--color-link);
}
.site-name:hover {
  transform: scale(1.1);
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.site-nav a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  line-height: 1;
  font-size: 1rem;
  color: var(--color-text);
  background: transparent;
  font-family: Oswald, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  text-box: trim-start cap alphabetic;
  text-transform: uppercase;
}
.site-nav a:hover {
  background: var(--color-text);
  color: var(--color-background);
}

.site-nav-topbar-items,
.site-nav-section-label {
  display: none;
}

@media (max-width: 600px) {
  .nav-toggle {
    display: block;
  }
  .site-name {
    font-size: 1rem;
  }
  .site-topbar {
    display: none;
  }
  .site-nav {
    display: none;
    flex-direction: column;
    margin-top: 1rem;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav-topbar-items {
    display: contents;
  }
  .site-nav-section-label {
    display: block;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--color-muted);
    font-family: Oswald, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: var(--font-size-small);
    text-transform: uppercase;
  }
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0;
  position: relative;
  font-size: var(--font-size-small);
}
.site-footer::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: currentColor;
  position: absolute;
  top: 0;
  left: 0;
}

.site-footer-col {
  flex: 1;
}

.site-footer-left {
  text-align: left;
}

.site-footer-right {
  text-align: right;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    text-align: center;
  }
  .site-footer-left,
  .site-footer-right {
    text-align: center;
  }
}
.cover-body {
  background-color: transparent;
}
.cover-body::before {
  position: fixed;
  inset: 0;
  content: "";
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.cover-body .site-header, .cover-body .site-footer {
  color: var(--color-background);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.cover-body .site-header a, .cover-body .site-footer a {
  color: var(--color-background);
}
.cover-body .site-header::before, .cover-body .site-header::after, .cover-body .site-footer::before, .cover-body .site-footer::after {
  display: none;
}
.cover-body .site-header .site-nav a:hover, .cover-body .site-footer .site-nav a:hover {
  background: var(--color-background);
  color: var(--color-text);
  text-shadow: none;
}
.cover-body .site-header .site-nav-section-label, .cover-body .site-footer .site-nav-section-label {
  color: color-mix(in srgb, var(--color-background) 85%, transparent);
  text-shadow: none;
}
.cover-body .site-topbar {
  background: color-mix(in srgb, var(--color-text) 90%, transparent);
}
.cover-body .cover-hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.cover-body .site-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2rem;
  text-align: center;
  color: var(--color-background);
}
.cover-body .site-main .intro {
  opacity: 0;
  transform: translateY(6rem);
  animation: cover-h1-in 2s cubic-bezier(0.22, 1.4, 0.36, 1) forwards;
  animation-delay: 0.5s;
}
.cover-body .site-main .intro .button {
  background: var(--color-background);
  color: var(--color-text);
  display: inline-block;
  padding: 0.5em 1.25em;
  border-radius: 999px;
  font-size: var(--font-size-small);
}
.cover-body .site-main .intro .button:hover {
  transform: scale(1.05);
}
.cover-body .site-main h1 {
  font-size: 3rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  margin: 1rem;
}

@keyframes cover-h1-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cover-body .site-main h1 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 600px) {
  .cover-body .site-main h1 {
    font-size: 2rem;
    hyphens: auto;
  }
}
.post-header {
  text-align: center;
  margin-bottom: 4rem;
}
.post-header h1 {
  font-size: 3rem;
  margin: 0 0 0 0;
  text-wrap: balance;
}
.post-header h1:not(:last-child) {
  margin-bottom: 1rem;
}
.post-header .post-meta {
  color: var(--color-muted);
  margin: 0;
}
.post-header .post-tags {
  margin-top: 0;
}
.post-header .tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  line-height: 1;
  font-size: var(--font-size-small);
  text-transform: uppercase;
  color: var(--color-text);
  background: var(--color-text-light);
  font-family: Oswald, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.post-header .tag:hover {
  background: var(--color-link);
  color: var(--color-background);
}

.post-meta,
.post-tags {
  margin-top: 0;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 1rem;
}

.post-share {
  max-width: fit-content;
  margin: 8rem auto 0;
  padding: 1.25rem;
  text-align: center;
  position: relative;
}
.post-share::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: var(--color-text-light);
  position: absolute;
  top: -4rem;
  left: 0;
  left: 50%;
  width: min(900px, 100vw - 2rem * 2);
  transform: translateX(-50%);
}

.post-share-title {
  text-align: center;
}

.post-share-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-share .post-share-link {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  line-height: 1;
  font-size: var(--font-size-small);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-background);
  text-decoration: none;
}
.post-share .post-share-link.post-share-facebook {
  background: #1877f2;
}
.post-share .post-share-link.post-share-whatsapp {
  background: #25d366;
}
.post-share .post-share-link:hover {
  opacity: 0.85;
}

.post-share-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.youtube-embed {
  position: relative;
  aspect-ratio: 16/9;
  margin: 1.5rem 0 0.5rem;
}
.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-embed-link {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: var(--font-size-small);
}

.link-embed-link {
  margin-top: 0;
  word-break: break-all;
}

@media (max-width: 600px) {
  .post-header h1 {
    font-size: 2rem;
    hyphens: auto;
  }
}
.post-list {
  display: grid;
  gap: 4rem;
}

.post-preview {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.post-preview p {
  margin: 0;
}
.post-preview:not(:last-child) {
  padding-bottom: 4rem;
  margin-bottom: 0;
  position: relative;
}
.post-preview:not(:last-child)::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: var(--color-text-light);
  position: absolute;
  bottom: 0;
  left: 0;
}
.post-preview img {
  border-radius: 0.5rem;
}
.post-preview h2 {
  text-transform: uppercase;
  text-box: cap;
}
.post-preview h2 a {
  color: var(--color-text);
  text-decoration: none;
}
.post-preview h2 a:hover {
  color: var(--color-link);
}

.post-preview h2 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.3;
}

.post-preview .meta {
  color: var(--color-muted);
  font-size: var(--font-size-small);
  margin: 0;
}

.post-preview .post-preview-tags {
  margin: 0 0 0.5rem;
}

.post-preview-tags .tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  line-height: 1;
  font-size: var(--font-size-small);
  text-transform: uppercase;
  color: var(--color-background);
  background: var(--color-text);
  font-family: Oswald, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.post-preview-tags .tag:hover {
  background: var(--color-link);
  color: var(--color-background);
}

.post-preview-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.link-preview h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
}

.link-preview .link-url {
  color: var(--color-muted);
  font-size: var(--font-size-small);
  margin: 0;
  word-break: break-all;
}

.link-preview .meta {
  color: var(--color-muted);
  font-size: var(--font-size-small);
  margin: 0;
}

@container (max-width: 620px) {
  .post-preview {
    grid-template-columns: 1fr;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  max-width: fit-content;
  margin: 8rem auto 0;
  flex-wrap: wrap;
  font-size: var(--font-size-small);
  position: relative;
}
.pagination::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: var(--color-text-light);
  position: absolute;
  top: -4rem;
  left: 0;
  left: 50%;
  width: min(900px, 100vw - 2rem * 2);
  transform: translateX(-50%);
}
.pagination .box-title {
  text-align: center;
}

.pagination a,
.pagination-current {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  line-height: 1;
  font-size: var(--font-size-small);
  text-transform: uppercase;
  color: var(--color-text);
  background: var(--color-text-light);
  font-family: Oswald, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.pagination-current {
  background: var(--color-text);
  color: var(--color-background);
}

@media (max-width: 600px) {
  .pagination-arrow-label {
    display: none;
  }
}
.archive-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.archive-column {
  min-width: 0;
}

@media (max-width: 768px) {
  .archive-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.archive-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.archive-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.35rem 0;
}
.archive-list li[hidden] {
  display: none;
}
.archive-list .archive-date {
  color: var(--color-muted);
  font-variant-numeric: tabular-nums;
}

.archive-link {
  flex: 1;
  min-width: 0;
}

.archive-link-title {
  margin: 0;
}

.archive-link-url {
  display: block;
  font-size: var(--font-size-small);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.archive-filter-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  line-height: 1;
  font-size: var(--font-size-small);
  text-transform: uppercase;
  appearance: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text);
  background: var(--color-text-light);
  font-family: Oswald, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.archive-filter-tag:hover {
  background: var(--color-link);
  color: var(--color-background);
}
.archive-filter-tag.is-active {
  background: var(--color-text);
  color: var(--color-background);
}

.hemeroteca-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}

@media (max-width: 768px) {
  .hemeroteca-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hemeroteca-grid {
    grid-template-columns: 1fr;
  }
}
.issue-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.issue-cover {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 15rem;
  width: auto;
  background: var(--color-text-light);
  padding: 2rem;
}
.issue-cover:hover {
  background: var(--color-link);
}
.issue-cover img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 100%;
  transform: rotate(-1deg);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

.issue-card h2 {
  margin: 0;
  font-size: 1.05rem;
  text-box: cap;
  line-height: 1.35rem;
}

.issue-card .meta {
  color: var(--color-muted);
  font-size: var(--font-size-small);
  margin: 0;
  text-transform: uppercase;
}

.issue-download {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  line-height: 1;
  font-size: var(--font-size-small);
  text-transform: uppercase;
  align-self: center;
  margin-top: 0.25rem;
  color: var(--color-text);
  background: var(--color-text-light);
  font-family: Oswald, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  text-transform: none;
}
.issue-download:hover {
  background: var(--color-link);
  color: var(--color-background);
}

.muted {
  color: var(--color-muted);
}

.box {
  padding: 1rem;
  background: var(--color-text-light);
  border-radius: 0.5rem;
}
.box .box-title {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
}