/* Purpose-first navigation: the weekly tarot and the deep love reading stay distinct. */

.app-card { display: flex; flex-direction: column; }
.app-card .text-link { width: fit-content; min-height: 46px; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding: 0 16px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, .05); }
.app-card .text-link:hover { border-color: rgba(242, 154, 187, .55); }
.guide-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.guide-actions .button { width: auto; }

.article-page > .next-step-panel { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 34px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(135deg, rgba(64, 30, 58, .65), rgba(31, 22, 55, .75)); }
.next-step-panel h2 { font-size: 1.5rem; }
.next-step-panel p { margin: 7px 0 0; color: var(--muted); font-size: .82rem; }
.next-step-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.next-step-actions .button { width: auto; white-space: nowrap; }

@media (max-width: 800px) {
  .site-nav { gap: 10px; }
  .site-nav a { font-size: .69rem; }
  .site-nav a:last-child { display: none; }
}

@media (max-width: 560px) {
  .brand small { display: none; }
  .site-header { gap: 10px; }
  .site-nav { gap: 8px; }
  .site-nav a { font-size: .66rem; }
  .app-card .text-link { width: 100%; justify-content: space-between; }
  .guide-actions, .guide-actions .button { width: 100%; }
  .article-page > .next-step-panel { align-items: stretch; flex-direction: column; padding: 22px 20px; }
  .next-step-actions, .next-step-actions .button { width: 100%; }
}
