/* Blog / News 文章底部 · 上一篇 / 下一篇 */
.micount-article-nav {
  margin: 2.5rem 0 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid #e2e8f0;
}

.micount-article-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

.micount-article-nav__link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  min-height: 4.5rem;
}

.micount-article-nav__link:hover {
  border-color: #10b981;
  background: #ecfdf5;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12);
}

.micount-article-nav__link--prev {
  text-align: left;
}

.micount-article-nav__link--next {
  text-align: right;
}

.micount-article-nav__link--empty {
  visibility: hidden;
  pointer-events: none;
  border: none;
  background: transparent;
  min-height: 0;
  padding: 0;
}

.micount-article-nav__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #059669;
  letter-spacing: 0.02em;
}

.micount-article-nav__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1e293b;
}

.micount-article-nav__hub {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  border: 1px dashed #cbd5e1;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.micount-article-nav__hub:hover {
  color: #059669;
  border-color: #10b981;
}

@media (max-width: 768px) {
  .micount-article-nav__inner {
    grid-template-columns: 1fr;
  }

  .micount-article-nav__hub {
    justify-content: center;
    order: -1;
    margin-bottom: 0.25rem;
  }

  .micount-article-nav__link--next {
    text-align: left;
  }

  .micount-article-nav__link--empty {
    display: none;
  }
}
