/* ============================================
   PEGOTE — CSS ADICIONAL ACTUALIZADO
   ============================================ */

/* ============================================
   COLORES
   ============================================ */
:root {
  --navy:         #0a0a22;
  --crimson:      #c8173a;
  --crimson-dark: #8a0f28;
  --off-white:    #ddd5c4;
  --muted:        rgba(221,213,196,0.45);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  height: 100vh;
  gap: 1.2rem;
  padding: 5rem 2rem 2.5rem;
}

.hero-creature {
  width: clamp(180px, 28vw, 380px);
}

.hero-logo {
  width: clamp(180px, 28vw, 380px);
}

.hero-desc {
  font-size: 0.82rem;
  max-width: 300px;
}

/* ============================================
   NAV
   ============================================ */
.site-nav a {
  font-size: 0.65rem;
  padding: 1rem 0.6rem;
  letter-spacing: 0.06em;
}

.nav-brand img {
  height: 22px;
}

@media (min-width: 769px) {
  .site-nav a {
    font-size: 0.75rem;
    padding: 1rem 0.9rem;
    letter-spacing: 0.12em;
  }
  .nav-brand img {
    height: 26px;
  }
}

/* ============================================
   POST DESTACADO
   ============================================ */
.featured-image {
  min-height: 380px;
}

.featured-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.featured-body .excerpt {
  font-size: 0.88rem;
  line-height: 1.85;
}

/* ============================================
   LISTA DE NOTAS
   ============================================ */
.post-item h3 a {
  font-size: 1.1rem;
}

.post-item .excerpt {
  font-size: 0.74rem;
  line-height: 1.6;
}

.post-item-date {
  font-size: 0.55rem;
}

.post-item::after {
  font-size: 4rem;
  opacity: 0.06;
}

/* ============================================
   CONTACTO
   ============================================ */
.contact-strip {
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.contact-col {
  border-right: 1px solid rgba(200,23,58,0.2);
  padding: 2rem;
  box-sizing: border-box;
}

.contact-col:last-child {
  border-right: none;
}

.contact-col--left {
  border-right: 1px solid rgba(200,23,58,0.2) !important;
}

.contact-title {
  display: block;
  margin-bottom: 0.8rem;
  min-height: 3rem;
}

.contact-email {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8173a !important;
  text-decoration: none !important;
}

.contact-email:hover {
  opacity: 0.7;
}

/* ============================================
   REDES SOCIALES
   ============================================ */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-link,
.social-link:visited,
.social-link:hover {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8173a !important;
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.social-link:hover {
  opacity: 0.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-logo img {
  width: 90px;
  opacity: 0.45;
}

.footer-right {
  font-size: 0.65rem;
}

/* ============================================
   MISCELÁNEA
   ============================================ */
#reading-progress-bar,
.reading-progress-bar {
  display: none !important;
}

* {
  cursor: default !important;
}

a, button {
  cursor: pointer !important;
}

/* ============================================
   MOBILE — max-width: 768px
   ============================================ */
@media (max-width: 768px) {

  body, main {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .site-header {
    padding-top: 5rem;
    gap: 1rem;
  }

  .featured {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 200px;
    border-bottom: 2px solid var(--crimson-dark);
  }

  .featured-body {
    border-left: none;
    border-top: none;
    padding: 1.5rem;
  }

  .featured-body h2 {
    font-size: 1.4rem;
  }

  .featured-body .excerpt {
    font-size: 0.82rem;
  }

  .post-list {
    max-width: 100%;
  }

  .post-item {
    padding: 1.2rem 1rem;
  }

  .contact-strip {
    display: block !important;
    width: 100% !important;
  }

  .contact-col {
    display: block !important;
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(200,23,58,0.2) !important;
    box-sizing: border-box !important;
    padding: 1.5rem !important;
  }

  .contact-col:last-child {
    border-bottom: none !important;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .footer-creature-bg {
    display: none;
  }

  .post-hero-content {
    padding: 1.5rem 1.5rem 3rem;
    grid-template-columns: 28px 1fr;
    gap: 0 0.8rem;
  }

  .post-hero-title {
    font-size: clamp(2.2rem, 11vw, 4rem);
    margin-bottom: 1rem;
  }

  .post-hero-subtitle {
    font-size: 0.85rem;
  }

  .back-link {
    left: 1.5rem;
  }

  main {
    padding: 2rem 1rem 3rem;
  }
}
.single-post-content strong,
.single-post-content b {
  color: #c8173a;
  font-weight: 700;
}
.featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 23, 58, 0.28);
  mix-blend-mode: multiply;
  pointer-events: none;
}
* {
  -webkit-text-fill-color: unset !important;
}

.site-nav a,
.nav-brand,
.post-cat,
.featured-label,
.divider span,
.ticker,
.read-more,
.contact-title,
.contact-email,
.social-link,
.cafecito-btn,
.post-hero-cat,
.back-link,
.post-end,
h1, h2, h3 {
  color: inherit;
}

:root {
  color-scheme: dark;
}
.editor-styles-wrapper,
.editor-styles-wrapper p,
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper li,
.editor-styles-wrapper a {
  color: #fafafa !important;
  background-color: transparent !important;
}