/* assets/css/study-auto-section.css
   Patch C: small styles for section banner and automatic study styles.
*/

.mk-study-section-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(248,250,252,0.82));
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.mk-study-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.10);
  color: #4338ca;
  font-weight: 800;
  font-size: 0.82rem;
}

.mk-study-section-banner p {
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.55;
  font-size: 0.94rem;
}

.mk-study-section-toc-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #4f46e5, #0f766e);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.18);
}

/* Manual/help pages: comfortable documentation reading. */
.mk-style-manual .mk-study-shell {
  font-size: 1rem;
  line-height: 1.72;
}

.mk-style-manual .mk-study-shell h1,
.mk-style-manual .mk-study-shell h2,
.mk-style-manual .mk-study-shell h3 {
  letter-spacing: -0.03em;
}

/* Code help pages: denser, with stronger code blocks. */
.mk-style-code .mk-study-shell {
  font-size: 0.96rem;
  line-height: 1.68;
  max-width: 1180px;
}

.mk-style-code .mk-study-shell code,
.mk-style-code .mk-study-shell pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.mk-style-code .mk-study-shell code {
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.07);
  color: #0f172a;
}

.mk-style-code .mk-study-shell pre {
  padding: 14px 16px;
  border-radius: 16px;
  overflow: auto;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #0f172a;
  color: #e5e7eb;
}

.mk-style-code .mk-study-shell table {
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .mk-study-section-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .mk-study-section-toc-link {
    width: 100%;
  }
}
