/* Hamster Guide Component - scoped styles only */
.hamster-guide-component { margin-top: 3rem; }
.hamster-guide-component__heading {
    display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
}
.hamster-guide-component__badge {
    display: inline-flex; align-items: center; gap: .45rem; padding: .4rem .75rem;
    border-radius: 999px; background: #fffbeb; color: #b45309; border: 1px solid #fde68a;
    font-weight: 700; font-size: .78rem;
}
.hamster-guide-topic {
    margin-top: 1.5rem; padding: 1.5rem; background: #fff; border: 1px solid #f3f4f6;
    border-radius: 1.25rem; box-shadow: 0 6px 24px rgba(17,24,39,.05);
}
.hamster-guide-topic:first-child { margin-top: 0; }
.hamster-guide-topic__meta { margin-top: .9rem; color: #9ca3af; font-size: .75rem; }
.hamster-guide-topic__content { line-height: 1.85; color: #374151; }
.hamster-guide-topic__content img { max-width: 100%; height: auto; border-radius: 1rem; margin: 1rem auto; }
.hamster-guide-empty { padding: 2rem; text-align: center; color: #9ca3af; border: 1px dashed #fcd34d; border-radius: 1.25rem; background: #fffbeb; }

.hamster-guide-admin-shell { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 1.5rem; }
.hamster-guide-admin-card { background: #fff; border: 1px solid #f3f4f6; border-radius: 2rem; padding: 1.75rem; box-shadow: 0 8px 28px rgba(17,24,39,.05); }
.hamster-guide-admin-editor { min-height: 280px; outline: none; background: #f9fafb; border: 2px solid #f3f4f6; border-radius: 0 0 1.5rem 1.5rem; padding: 1.25rem; line-height: 1.7; }
.hamster-guide-admin-editor:focus { border-color: #fbbf24; background: #fff; }
.hamster-guide-admin-toolbar { display:flex; gap:.5rem; flex-wrap:wrap; padding:.7rem; background:#f9fafb; border:2px solid #f3f4f6; border-bottom:0; border-radius:1.5rem 1.5rem 0 0; }
.hamster-guide-admin-toolbar button { width:2.4rem; height:2.4rem; border-radius:.75rem; background:#fff; border:1px solid #e5e7eb; color:#4b5563; }
.hamster-guide-admin-toolbar button:hover { background:#fffbeb; color:#b45309; }
.hamster-guide-admin-item { padding:1rem; border:1px solid #f3f4f6; border-left:6px solid #f59e0b; border-radius:1.25rem; background:#fff; box-shadow:0 4px 16px rgba(17,24,39,.04); }
.hamster-guide-admin-item + .hamster-guide-admin-item { margin-top:.75rem; }
.hamster-guide-admin-status { font-size:.68rem; font-weight:800; padding:.25rem .55rem; border-radius:999px; }
.hamster-guide-admin-status.is-published { background:#dcfce7; color:#15803d; }
.hamster-guide-admin-status.is-draft { background:#f3f4f6; color:#6b7280; }
@media (max-width: 900px) { .hamster-guide-admin-shell { grid-template-columns: 1fr; } }
