/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Refugio Piedra Linda — Blog styles
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  --dark: #214125;
  --white: #ffffff;
  --green: #4a7c59;
  --green-light: #a8d5a2;
  --cream: #f9f7f4;
  --paper: #f6f1e6;
  --text: #2a2a2a;
  --text-muted: #6b6b6b;
  --text-soft: #8a8a8a;
  --rule: rgba(33, 65, 37, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #f6f1e6; }
html:has(body.night) { background: #221912; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.blog-footer { margin-top: auto; }
img { max-width: 100%; display: block; }
a { color: var(--dark); }

/* ── Top bar (compacta, vincula al home) ── */
.blog-top {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px 24px 10px;
  background: linear-gradient(to bottom, var(--cream) 72%, rgba(249,247,244,0));
}
.blog-top__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 16px;
}
.blog-top__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.blog-top__brand img { height: 48px; width: auto; display: block; }
.blog-top__nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.blog-top__nav a {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-top__nav a:hover { color: var(--dark); }
.blog-top__nav a.active { color: var(--dark); font-weight: 600; }
.blog-top__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #fff !important;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 9px 10px 9px 18px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.blog-top__cta:hover { background: #1a3a1f; transform: translateY(-1px); }
.blog-top__cta-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.blog-top__cta:hover .blog-top__cta-icon { transform: rotate(-45deg); }
.blog-top__cta-icon svg { display: block; width: 14px; height: 14px; }
.blog-top__cta-icon svg path { stroke: var(--dark); }

@media (max-width: 1040px) {
  .blog-top__nav { gap: 20px; }
}

/* ── Hamburguesa + drawer móvil (igual al sitio principal) ── */
.blog-top__burger {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent;
  cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .blog-top__nav { display: none; }
  .blog-top__cta { display: none; }
  .blog-top__burger { display: flex; }
  .night-toggle { margin-left: auto; }
}
.blog-top__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.blog-top__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.blog-top__burger.open span:nth-child(2) { opacity: 0; }
.blog-top__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  padding: 88px 28px 32px;
  gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 18px;
  color: var(--dark);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #f0ede8;
  transition: color 0.15s;
}
.mobile-menu a.active { color: var(--green); }
.mobile-menu a:hover { color: var(--green); }
.mobile-menu__cta {
  margin-top: 20px !important;
  padding: 14px 24px !important;
  background: var(--dark);
  color: #fff !important;
  border-radius: 100px;
  text-align: center;
  border: none !important;
  font-weight: 600 !important;
}
.mobile-menu__cta:hover { color: #fff !important; }
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
/* Modo noche */
body.night .mobile-menu { background: #2a1f17; }
body.night .mobile-menu a { color: #f5e6d3; border-bottom-color: #3a2e22; }
body.night .mobile-menu a:hover, body.night .mobile-menu a.active { color: #d4a574; }
body.night .mobile-menu__cta { background: #d4a574; color: #1a1410 !important; }

/* ── Layout containers ── */
.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Index hero ── */
.index-hero {
  padding: 80px 0 56px;
  text-align: center;
}
.index-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.index-hero__title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--dark);
  max-width: 720px;
  margin: 0 auto 18px;
}
.index-hero__title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}
.index-hero__subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Article grid ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  padding: 24px 0 80px;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s;
  border: 1px solid var(--rule);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(33, 65, 37, 0.18);
}
.article-card__cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.article-card__cover svg {
  width: 100%; height: 100%;
  display: block;
}
.article-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.article-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.article-card__meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-soft);
}
.article-card__meta-time { color: var(--text-soft); font-weight: 500; }
.article-card__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--dark);
  text-wrap: balance;
}
.article-card__excerpt {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.article-card__read {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}
.article-card:hover .article-card__read { gap: 10px; }
.article-card__read svg { width: 12px; height: 12px; }

/* ── Article page ── */
.article-hero {
  padding: 64px 0 40px;
  text-align: center;
}
.article-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.article-hero__meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-soft);
}
.article-hero__meta-time { color: var(--text-soft); font-weight: 500; }
.article-hero__title {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--dark);
  max-width: 760px;
  margin: 0 auto 22px;
  text-wrap: balance;
}
.article-hero__title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}
.article-hero__deck {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.article-cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  border-radius: 18px;
  max-width: 1000px;
  margin: 0 auto 48px;
  overflow: hidden;
  position: relative;
}
.article-cover svg { width: 100%; height: 100%; display: block; }

/* ── Article body ── */
.article-body {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--text);
  padding-bottom: 64px;
}
.article-body p { margin: 0 0 22px; text-align: justify; text-justify: inter-word; hyphens: auto; -webkit-hyphens: auto; }
.article-body li { text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
.article-body h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--dark);
  margin: 56px 0 18px;
  text-wrap: balance;
}
.article-body h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}
.article-body h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin: 36px 0 12px;
}
.article-body strong { color: var(--dark); font-weight: 600; }
.article-body em { color: inherit; font-style: italic; }
.article-body ul, .article-body ol {
  margin: 0 0 22px;
  padding-left: 24px;
}
.article-body li { margin-bottom: 10px; }
.article-body ul li::marker { color: var(--green); }
.article-body a {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: var(--green-light);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.article-body a:hover { text-decoration-color: var(--dark); }
.article-body blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--green);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--dark);
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 48px 0;
}

/* Callout / pull-quote */
.callout {
  margin: 36px 0;
  padding: 22px 26px 22px 24px;
  background: var(--paper);
  border-left: 3px solid var(--green);
  border-radius: 12px;
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--dark);
}
.callout__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 10px;
}
.callout__label svg { width: 14px; height: 14px; flex-shrink: 0; }
.callout p { margin: 0; }

/* TLDR box at top of article */
.tldr {
  margin: 32px 0 48px;
  padding: 22px 26px 18px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
}
.tldr__label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.tldr__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tldr__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text);
}
.tldr__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--green);
}

/* End-of-article CTA */
.article-end-cta {
  margin: 28px 0 80px;
  padding: 36px 38px;
  background: linear-gradient(135deg, var(--dark) 0%, #2d5832 100%);
  border-radius: 22px;
  color: #fff;
  text-align: center;
}
.article-end-cta__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}
.article-end-cta__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 10px;
  text-wrap: balance;
}
.article-end-cta__title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}
.article-end-cta__sub {
  font-size: 15.5px;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin: 0 auto 22px;
  line-height: 1.55;
}
.article-end-cta__actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.article-end-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s;
}
.article-end-cta__btn--primary {
  background: #fff;
  color: var(--dark);
}
.article-end-cta__btn--primary:hover { transform: translateY(-1px); background: var(--paper); }
.article-end-cta__btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
}
.article-end-cta__btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Related articles */
.related {
  padding: 56px 0 72px;
  border-top: 1px solid var(--rule);
}
.related__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Footer (igual al sitio principal) */
.blog-footer {
  background: var(--paper);
  border-top: 1px solid #e8e4df;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  text-align: left;
  margin-top: auto;
}
.blog-footer img { height: 44px; width: auto; }
.blog-footer__copy {
  font-size: 13px;
  color: #999;
  font-family: 'Barlow', sans-serif;
  margin: 0;
}
.blog-footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.blog-footer__links a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  margin: 0;
  transition: color 0.2s;
}
.blog-footer__links a:hover { color: var(--dark); text-decoration: none; }
.blog-footer__socials { display: flex; gap: 10px; align-items: center; }
.blog-footer__social {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1px solid #e8e4df;
  display: flex; align-items: center; justify-content: center;
  color: #666;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-footer__social:hover { transform: translateY(-2px); }
.blog-footer__social--instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }
.blog-footer__social--facebook:hover { background: #1877F2; color: #fff; border-color: transparent; }
.blog-footer__social--youtube:hover { background: #FF0000; color: #fff; border-color: transparent; }
.blog-footer__social svg { width: 16px; height: 16px; }

@media (max-width: 760px) {
  .blog-footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 20px; }
  .blog-footer__links { justify-content: center; gap: 12px 18px; }
}

@media (max-width: 600px) {
  .index-hero { padding: 56px 0 32px; }
  .article-hero { padding: 40px 0 28px; }
  .article-body { font-size: 16.5px; line-height: 1.7; }
  .article-body h2 { font-size: 24px; margin: 40px 0 14px; }
  .article-body h3 { font-size: 18px; }
  .article-body blockquote { font-size: 19px; padding-left: 18px; }
  .article-end-cta { padding: 28px 22px; }
  .article-end-cta__title { font-size: 24px; }
  .article-card__body { padding: 18px 20px 20px; }
  .article-card__title { font-size: 19px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Logo día / noche
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.logo-night-only { display: none; }
body.night .logo-day-only { display: none !important; }
body.night .logo-night-only { display: block !important; }

/* ── Night toggle button (igual al sitio principal) ── */
.night-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #444;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s;
}
.night-toggle:hover { background: rgba(0,0,0,0.05); transform: rotate(40deg); }
body.night .night-toggle { color: #f5c989; }
body.night .night-toggle:hover { background: rgba(245,201,137,0.12); transform: rotate(-40deg); }
.night-toggle svg { width: 20px; height: 20px; }
.night-toggle .sun, body.night .night-toggle .moon { display: none; }
.night-toggle .moon, body.night .night-toggle .sun { display: block; }

/* ── WhatsApp flotante (igual al sitio principal) ── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-btn.is-hidden,
.whatsapp-tooltip.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}
.whatsapp-btn svg { width: 30px; height: 30px; }
.whatsapp-tooltip {
  position: fixed; bottom: 38px; right: 96px;
  z-index: 200;
  background: var(--dark); color: #fff;
  font-family: 'Barlow', sans-serif; font-weight: 500; font-size: 13px;
  padding: 8px 14px; border-radius: 8px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.whatsapp-btn:hover ~ .whatsapp-tooltip,
.whatsapp-tooltip:hover {
  opacity: 1; transform: translateX(0);
}
@media (max-width: 700px) {
  .whatsapp-btn { bottom: 20px; right: 20px; }
  .whatsapp-tooltip { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MODO NOCHE — Diario
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.night {
  --dark: #f5e6d3;
  --green: #d4a574;
  --green-light: #f5c989;
  --cream: #1a1410;
  --paper: #221912;
  --text: #d8c4a5;
  --text-muted: #b0987a;
  --text-soft: #8a7058;
  --rule: rgba(212,165,116,0.16);
}
body.night { background: var(--cream); color: var(--text); }
/* Tooltip de WhatsApp: fondo oscuro legible en modo noche (no usar --dark, que es claro) */
body.night .whatsapp-tooltip { background: #2a1f17; color: #f5e6d3; }
/* Nav card */
body.night .blog-top { background: linear-gradient(to bottom, #1a1410 72%, rgba(26,20,16,0)); }
body.night .blog-top__inner { background: #2a1f17; box-shadow: 0 4px 40px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3); }
body.night .blog-top__nav a { color: #d8c4a5; }
body.night .blog-top__nav a:hover,
body.night .blog-top__nav a.active { color: #f5e6d3; }
body.night .blog-top__cta { background: #d4a574; color: #1a1410 !important; }
/* Hover del CTA en noche: mantener dorado + texto oscuro (el hover de día lo vuelve verde oscuro e ilegible) */
body.night .blog-top__cta:hover { background: #c79155; }
body.night .mobile-menu__cta:hover { color: #1a1410 !important; }
body.night .blog-top__cta-icon { background: #1a1410; }
body.night .blog-top__cta-icon svg path { stroke: #d4a574; }
/* Cards / boxes that were hard-white */
body.night .article-card { background: #2a1f17; border-color: #3a2e22; }
body.night .article-card:hover { box-shadow: 0 24px 48px -16px rgba(0,0,0,0.5); }
body.night .tldr { background: #2a1f17; border-color: #3a2e22; }
/* End-of-article CTA: forzar verde oscuro (var(--dark) se invierte a crema en modo noche) */
body.night .article-end-cta { background: linear-gradient(135deg, #18301d 0%, #2d5832 100%); }
/* Botón primario blanco: texto oscuro legible (var(--dark) se invierte a crema en modo noche) */
body.night .article-end-cta__btn--primary { color: #18301d; }
body.night .article-end-cta__btn--primary:hover { background: #fff; }
/* Footer */
body.night .blog-footer { background: #221912; border-top-color: #3a2e22; }
body.night .blog-footer__copy { color: #8a7058; }
body.night .blog-footer__links a { color: #b0987a; }
body.night .blog-footer__links a:hover { color: #f5e6d3; }
body.night .blog-footer__social { background: #2a1f17; border-color: #3a2e22; color: #f5e6d3; }
