/* ============================================================
   DeskDude - Blog page
   Page-specific additions on top of the shared Minimalist system
   (styles-about-rebuild.css, class prefix cal-). Nav, footer,
   hero, buttons, tags, cal-fit-grid and cal-panel-cta all reuse
   the shared cal- classes directly and are NOT redefined here.

   The live blog page currently has no published articles, only
   a hero and three topic-preview cards. This file adds the one
   genuinely new piece: an honest "no articles yet" empty state,
   since the shared system does not have one. Class prefix: blog-.
   ============================================================ */

.blog-empty {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  background: var(--surface);
}

.blog-empty .cal-eyebrow {
  display: flex;
  justify-content: center;
}

.blog-empty h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 30px);
  color: var(--ink);
}

.blog-empty p {
  margin: 14px auto 0;
  max-width: 52ch;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.blog-empty-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* small spacing fix so a cal-tag can sit above cal-fit-card's h3/p
   without redefining the shared component */
.cal-fit-card .cal-tag {
  margin-bottom: 12px;
}

/* reuse the same cta-panel row layout established on services/ebooks */
.blog-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.blog-cta-panel h2 {
  margin-bottom: 10px;
  max-width: 34ch;
}

.blog-cta-panel p {
  max-width: 46ch;
}

.blog-cta-panel > a.cal-btn {
  flex: none;
}

@media (max-width: 620px) {
  .blog-empty {
    padding: 40px 24px;
  }
  .blog-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}
