/* ============================================================
   Footer
   Based on Shoka design
   ============================================================ */

#footer {
  position: relative; z-index: 1;
  padding: 2rem 1.5rem;
  background: var(--grey-1);
  border-top: 1px solid var(--grey-3);
  transition: background-color var(--transition-duration) var(--transition-ease);
}

#footer .inner {
  max-width: 75rem; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1rem;
}

/* Widgets (random posts) */
#footer .widgets {
  display: flex; gap: 2rem;
}

#footer .widgets h2 {
  font-size: 0.875rem; font-weight: 600; color: var(--grey-5);
  margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em;
}

#footer .widgets ul { list-style: none; }

#footer .widgets .item {
  display: flex; align-items: baseline; gap: 0.75rem;
  padding: 0.3rem 0; font-size: 0.875rem;
}

#footer .widgets .breadcrumb a {
  color: var(--grey-5); font-size: 0.75rem; text-decoration: none;
}
#footer .widgets .breadcrumb a:hover { color: var(--color-pink); }

#footer .widgets .item span a { color: var(--primary-color); text-decoration: none; }
#footer .widgets .item span a:hover { color: var(--color-pink); }

/* Status */
#footer .status {
  text-align: center; padding-top: 1rem;
  border-top: 1px solid var(--grey-3);
  font-size: 0.8125rem; color: var(--grey-5);
}

#footer .status .with-love { margin: 0 0.25rem; color: var(--color-pink); }

#footer .status a { color: var(--color-pink); text-decoration: none; }
#footer .status a:hover { text-decoration: underline; }

#footer .status .time { margin-top: 0.5rem; font-size: 0.75rem; }

/* Sakura rotate */
.halcyon.i-yinghua.rotate {
  color: #ff7d94;
  animation: sakuraRotate 3s linear infinite;
}

@keyframes sakuraRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
