/* ===== GHOST BLOG ===== */

.ghost-not-configured {
  padding: 20px;
  text-align: center;
  color: var(--gray-500);
  background: var(--surface);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 0.875rem;
}

.ghost-not-configured a {
  color: var(--cyan);
  text-decoration: underline;
}

.badge-published {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(16,232,152,0.12);
  color: var(--green);
}

.badge-draft {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--gray-200);
  color: var(--gray-500);
}

.badge-scheduled {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(245,166,35,0.12);
  color: var(--gold);
}

.ghost-publish-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.ghost-publish-bar .input { flex: 1; min-width: 180px; }
.ghost-publish-bar .select { width: auto; }

.btn--ghost-publish {
  background: rgba(16,232,152,0.15);
  color: var(--green);
  border: 1px solid rgba(16,232,152,0.3);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn--ghost-publish.btn--sm { padding: 5px 12px; font-size: 0.78rem; }
.btn--ghost-publish:hover { background: rgba(16,232,152,0.25); box-shadow: 0 0 12px rgba(16,232,152,0.2); }
.btn--ghost-publish:disabled { opacity: 0.4; cursor: not-allowed; }

.ghost-post-link {
  color: var(--purple);
  text-decoration: none;
  font-size: 0.8rem;
}
.ghost-post-link:hover { text-decoration: underline; color: #b59aff; }

/* ===== FORMULÁRIO MANUAL DE POST ===== */
.ghost-manual-form {
  margin: 0 28px 24px;
  background: var(--surface);
  border: 1px solid rgba(16,232,152,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ghost-manual-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-200);
  background: rgba(16,232,152,0.04);
}

.ghost-manual-form__title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.ghost-manual-form__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ghost-manual-form__hint {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray-400);
  font-weight: normal;
  margin-left: 6px;
}

.ghost-manual-form__textarea {
  min-height: 240px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.7;
  resize: vertical;
}

.ghost-manual-form__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 4px;
  border-top: 1px solid var(--gray-200);
}
