/* =========================
   STYLE.CSS (limpo e consolidado)
   =========================
   Correções feitas:
   - Removidas duplicações (.author-mini-content img, .author-mini-name, .author-link,
     .book-cover img, .contact-form, .contact-form input/textarea, .book-excerpt p,
     .book-testimonials .testimonial p, .book-info .book-description)
   - Consolidados 12 blocos @media (max-width: 800px) em um único bloco
   - Consolidados blocos @media (max-width: 600px) duplicados
   - Removidos !important desnecessários (mantidos apenas onde realmente necessário)
   - Substituídas cores hardcoded por variáveis CSS
   - Corrigida ordem da cascata (desktop antes de mobile)
   - Corrigida indentação inconsistente
*/
/* ==================== RESET ==================== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
/* ==================== FONTES ==================== */
@font-face {
  font-family: 'BrolinkDemo';
  src: url('font/BrolinkDemo-VGyMZ.otf') format('opentype');
  font-display: swap;
}
/* ==================== VARIÁVEIS GLOBAIS ==================== */
:root {
  --bg: #f7f5f2;
  --card: #ffffff;
  --text: #2e2a24;
  --muted: #6b6b6b;
  --accent: #a67c52;
  --accent-2: #8b5e34;
  --maxw: 1200px;
  --border-light: rgba(0, 0, 0, 0.08);
  --nav-bg: #f5f2ed;
}
/* ==================== REGRAS GERAIS ==================== */
* {
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-family: Inter, system-ui, Arial;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: var(--maxw);
  width: 100%;
  padding: 16px;
  margin: 0 auto;
}
main {
  flex: 1;
}
/* ==================== TOPO DO AUTOR (página principal) ==================== */
.top-author {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  position: relative;
  z-index: 10;
}
.author-photo.large {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  overflow: visible;
  flex-shrink: 0;
}
.author-photo.large::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--accent), #ffffff, var(--accent));
  background-size: 300% 100%;
  animation: shimmer 14s linear infinite, pulseGlow 3s ease-in-out infinite;
  z-index: -1;
  box-shadow: 0 0 20px rgba(166, 124, 82, 0.4);
}
.author-photo img {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(166, 124, 82, 0.7);
  filter: drop-shadow(0 0 15px rgba(166, 124, 82, 0.7));
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.author-photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(166, 124, 82, 0.9);
  filter: drop-shadow(0 0 25px rgba(166, 124, 82, 0.9));
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px rgba(166, 124, 82, 0.4); transform: scale(1); }
  50% { box-shadow: 0 0 30px rgba(166, 124, 82, 0.6); transform: scale(1.02); }
  100% { box-shadow: 0 0 15px rgba(166, 124, 82, 0.4); transform: scale(1); }
}
.author-photo.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.author-info {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.author-info .author-name {
  font-size: 32px;
  margin-top: 5px;
  margin-bottom: 15px;
}
/* ==================== REDES SOCIAIS (home) ==================== */
.author-info .author-bio {
  text-align: justify;
  max-width: 90%;
}
.author-info .socials {
  width: 100%;
  max-width: 90%;
  align-self: flex-start;
  text-align: left;
  margin: 10px auto 0;
  padding-left: clamp(0px, 6vw, 50px);
}
.author-info .socials a {
  display: inline-block;
  text-decoration: none;
  color: var(--accent);
  margin-right: 10px;
}
.author-info .socials a:hover {
  text-decoration: underline;
}
/* ==================== TOPO REDUZIDO DO AUTOR (páginas internas) ==================== */
.author-mini{
  display:flex;
  justify-content:center;
  align-items:center;
  padding-top:6px;
  margin:4px auto 6px;
  z-index:9999;
}
.author-mini-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Consolidado: .author-mini-content img (era duplicado) */
.author-mini-content img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(166, 124, 82, 0.7);
  filter: drop-shadow(0 0 15px rgba(166, 124, 82, 0.7));
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.author-mini-content img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(166, 124, 82, 0.9);
  filter: drop-shadow(0 0 25px rgba(166, 124, 82, 0.9));
}
/* Consolidado: .author-mini-name (era duplicado com tamanhos conflitantes) */
.author-mini-name {
  font-family: 'BrolinkDemo', system-ui, serif;
  font-size: 20px;
  background: linear-gradient(90deg, var(--accent), #ffffff, var(--accent));
  background-size: 300% 100%;
  animation: shimmer 14s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  display: block;
  cursor: pointer;
}
/* Consolidado: .author-link (era duplicado) */
.author-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  pointer-events: auto;
  cursor: pointer;
}
.author-link:hover {
  text-decoration: none;
}
/* ==================== NAVEGAÇÃO ==================== */
.header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 0;
  border-bottom: 1px solid rgba(11, 18, 38, 0.05);
}
/* ==================== HERO ==================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
  padding: 30px 0;
}
.hero-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.hero-link:focus,
.hero-link:active {
  outline: none;
}
.book-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 0;
  color: var(--text);
}
.tagline {
  color: var(--muted);
  margin: 10px 0 18px;
}
.lead {
  color: var(--muted);
  line-height: 1.6;
}
.hero-cover img {
  width: 100%;
  max-width: 180px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(166, 124, 82, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-cover img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(166, 124, 82, 0.7),
              0 0 15px rgba(166, 124, 82, 0.3);
}
/* ==================== BOTÕES ==================== */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11, 18, 38, 0.12);
}
.btn.secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn.secondary:hover {
  background: var(--accent);
  color: #fff;
}
/* ==================== RODAPÉ ==================== */
.footer {
  padding: 24px 24px 30px;
  background: transparent;
  color: var(--muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
.footer .credit {
  font-size: 12px;
  opacity: 0.9;
}
.footer .footer-sep {
  opacity: 0.5;
}
/* ==================== ANIMAÇÕES ==================== */
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: -300% 50%; }
}
/* ==================== PÁGINA INTERNA DO LIVRO ==================== */
.book-page {
  margin-top: 40px;
}
.book-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 40px;
}
/* Consolidado: .book-cover img (era duplicado com box-shadow conflitante) */
.book-cover img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(166, 124, 82, 0.2);
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
.book-cover img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(166, 124, 82, 0.7),
              0 0 15px rgba(166, 124, 82, 0.3);
}
.book-info .book-title {
  font-size: 42px;
  margin-bottom: 10px;
}
.book-info .book-subtitle {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 20px;
}
.book-description {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.book-description + .book-description {
  margin-top: 0;
}
/* Consolidado: justificação de texto (era duplicado com !important) */
.book-info .book-description {
  text-align: justify;
}
.book-actions {
  display: flex;
  gap: 12px;
}
/* Informações técnicas */
.book-details {
  margin-bottom: 40px;
}
.book-details h2 {
  margin-bottom: 16px;
}
.book-details ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}
.book-details li strong {
  color: var(--accent);
}
/* Trecho */
.book-excerpt blockquote {
  font-style: italic;
  background: var(--bg);
  padding: 20px;
  border-left: 5px solid var(--accent);
  border-radius: 4px;
  line-height: 1.6;
  margin: 0;
}
/* Depoimentos */
.book-testimonials h2 {
  margin-bottom: 16px;
}
.testimonial {
  background: var(--card);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}
.testimonial span {
  display: block;
  text-align: right;
  color: var(--accent);
  font-weight: bold;
  margin-top: 8px;
}
/* Consolidado: justificação de testimonial (era duplicado) */
.book-testimonials .testimonial p {
  text-align: justify;
}
/* Título dos contos alinhados à esquerda */
.testimonial h3 span {
  display: block;
  text-align: left;
}
/* ==================== NAVEGAÇÃO INTERNA ==================== */
.internal-nav {
  background-color: var(--nav-bg);
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.internal-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.internal-nav a {
  text-decoration: none;
  color: var(--accent-2);
  font-weight: 600;
  transition: color 0.3s ease;
}
.internal-nav a:hover {
  color: var(--accent);
}
/* ==================== EFEITO DO NOME DO AUTOR (DESKTOP) ==================== */
/* Ordem corrigida: desktop ANTES do mobile */
.top-author .author-info .author-name {
  font-family: 'BrolinkDemo', system-ui, serif;
  background: linear-gradient(90deg, var(--accent), #ffffff, var(--accent));
  background-size: 300% 100%;
  animation: shimmer 14s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 60px;
  margin-top: 10px;
  margin-bottom: 15px;
}
/* ==================== TÍTULO ESPECÍFICO - PÁGINA O CAMINHO ==================== */
.caminho-title {
  font-family: 'BrolinkDemo', serif;
  font-size: 36px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent), #ffffff, var(--accent));
  background-size: 300% 100%;
  animation: shimmer 14s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* ==================== BOTÕES DE NAVEGAÇÃO INFERIOR ==================== */
.bottom-nav-web {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px auto;
}
.bottom-nav-web .btn {
  font-size: 16px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--card);
  background-color: var(--text);
  border-radius: 5px;
  transition: background-color 0.3s;
}
.bottom-nav-web .btn:hover {
  background-color: var(--muted);
}
.bottom-nav-web .btn.secondary {
  background-color: var(--muted);
  border: none;
  color: var(--card);
}
.bottom-nav-web .btn.secondary:hover {
  opacity: 0.85;
}
/* ==================== JUSTIFICAÇÃO DESKTOP ==================== */
@media (min-width: 801px) {
  .carousel .description {
    text-align: justify;
  }
  .book-excerpt p {
    text-align: justify;
  }
}
/* ==================== FORMULÁRIO DE CONTATO ==================== */
.contact-form {
  background: var(--card);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 450px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background-color: var(--card);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.2);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .g-recaptcha {
  display: flex;
  justify-content: center;
}
.contact-form button.btn {
  font-size: 18px;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
}
/* ==================== TÍTULO DA PÁGINA DE CONTATO ==================== */
.contact-title {
  font-family: 'BrolinkDemo', serif;
  font-size: 36px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent), #ffffff, var(--accent));
  background-size: 300% 100%;
  animation: shimmer 14s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  margin-bottom: 30px;
}

/* ==================== TÍTULO DO LIVRO NO MOBILE (ABAIXO DA CAPA) ==================== */
.cover-title {
  display: none;
}
/* Miniatura no topo (assinatura do autor) */
.brand__avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(166, 124, 82, 0.35);
  box-shadow: 0 6px 16px rgba(166, 124, 82, 0.25);
}
/* ==================== RESPONSIVO: 900px ==================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ==================== RESPONSIVO: 800px (CONSOLIDADO) ==================== */
@media (max-width: 800px) {
  html, body {
    overflow-x: hidden;
  }

  /* Autor topo */
  .top-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-photo.large {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .top-author .author-info {
    display: flex;
    flex-direction: column;
  }

  .top-author .author-info .author-name {
    order: 0;
    font-size: clamp(18px, 8vw, 34px);
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
    white-space: nowrap;
    line-height: 1.1;
  }

  .top-author .author-info .socials {
    order: 1;
    margin-top: 4px;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
    max-width: 90%;
    padding-left: 5%;
    align-self: center;
  }

  .top-author .author-info .author-bio {
    order: 2;
  }

  /* Autor mini */
  .author-mini {
    position: static;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .author-mini-content {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .author-link {
    flex-direction: row;
  }

  .author-mini-name {
    font-size: 20px;
  }

  /* Hero */
  .hero-text {
    display: none;
  }

  .hero-cover img {
    max-width: 200px;
    max-height: 280px;
    height: auto;
    margin: 0 auto;
  }

    /* Página do livro */
  .book-page {
    margin-top: 0;
    padding-top: 0;
  }

  .book-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 10px;
    padding-top: 0;
    gap: 18px;
  }

  .book-cover {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .book-cover img {
    width: 75%;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
  }

  .book-info {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .book-info .book-title {
    order: 1;
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.18;
    max-width: 28ch;
    margin: 6px auto 0;
  }

  .book-info .book-subtitle {
    order: 2;
  }

  .book-info .book-description {
    order: 3;
  }

  .book-actions {
    order: 4;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
  }

  .book-actions .btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(166, 124, 82, 0.35);
  }

  .book-title {
    font-size: clamp(20px, 5.6vw, 26px);
    line-height: 1.18;
  }

  /* Título abaixo da capa, se usado em outras páginas */
  .cover-title {
    display: block;
    margin-top: 0.6rem;
    padding: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
    position: static;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
  }

  /* Esconde botões de navegação inferior no mobile */
  .bottom-nav-web {
    display: none;
  }

  /* Rodapé */
  .footer {
    gap: 8px;
    font-size: 12px;
  }

  .footer .credit {
    font-size: 11px;
  }
}

/* ==================== RESPONSIVO: 700px ==================== */
@media (max-width: 700px) {
  .author-info .author-name {
    font-size: 32px;
  }
}
/* ==================== RESPONSIVO: 600px ==================== */
@media (max-width: 600px) {
  .contact-form {
    max-width: 90%;
    margin: 0 auto;
  }
  .contact-title {
    font-size: 26px;
  }
}
/* ==================== RESPONSIVO: 400px ==================== */
@media (max-width: 400px) {
  .top-author .author-info .author-name {
    font-size: 7vw;
  }
}

/* ===================== LIGHTBOX (Cenas - livroAC / desktop) ===================== */
.no-scroll { overflow: hidden !important; }

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.open { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.lightbox-content {
  position: relative;
  background: #fff;
  width: min(92vw, 980px);
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,.06);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

#sceneLightboxImg {
  display: block;
  width: auto;
  max-width: calc(100% - 36px);
  max-height: 62vh;
  object-fit: contain;
  border-radius: 12px;
  margin: 18px auto 10px;
}

.lightbox-caption {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.lightbox-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.lightbox-text {
  opacity: .9;
  line-height: 1.4;
}

/* dica visual de clique */
#cenas .gallery .image-wrap { cursor: zoom-in; }


/* ============================
   LIGHTBOX - CENAS DO LIVRO
============================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 40px 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  background: #ffffff;
  max-width: 1000px;
  width: 100%;
  border-radius: 10px;
  padding: 20px 20px 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  animation: lightboxFade 0.25s ease;
}

@keyframes lightboxFade {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 6px;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 15px;
}

.lightbox-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #222;
}

.lightbox-caption p {
  font-size: 0.95rem;
  color: #555;
}

/* ============================
   BOTÃO FECHAR
============================ */

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
  color: #444;
  transition: 0.2s;
}

.lightbox-close:hover {
  color: #000;
}

/* ============================
   SETAS DE NAVEGAÇÃO
============================ */

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-nav:hover {
  background: rgba(0,0,0,0.18);
}

.lightbox-nav { z-index: 5; }

.lightbox-nav.prev { left: 12px; }
.lightbox-nav.next { right: 12px; }

/* ============================
   RESPONSIVO
============================ */

@media (max-width: 900px) {

  .lightbox-content {
    padding: 18px;
  }

  .lightbox-nav {
    font-size: 34px;
    width: 46px;
    height: 46px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }
}
@media (max-width: 900px) {
  .lightbox-nav { display: none; }
}
.home-footer {
  width: 100%;
  max-width: var(--maxw);
  margin: 32px auto 20px;
  padding: 18px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
  border-top: none;
}

.home-footer .credit {
  font-size: 14px;
}

.home-footer .sep {
  opacity: 0.6;
}



@media (max-width: 800px) {
  .home-footer {
    gap: 8px;
    font-size: 12px;
    flex-direction: column;
  }

  .home-footer .credit {
    font-size: 11px;
  }

  .home-footer .sep {
    display: none;
  }
}