.tutorial-placeholder .page-subtitle {
  max-width: 820px;
}

/* "Coming soon" resource block: keeps the tutorial pages useful by pointing
   to real, existing resources while the guides are being written. */
.meanwhile {
  margin-top: 30px;
}

.meanwhile-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 12px;
}

.meanwhile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 820px;
}

.meanwhile-card {
  display: block;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.meanwhile-card:hover,
.meanwhile-card:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.meanwhile-card strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--accent);
}

.meanwhile-card span {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}
