/* ── Jimeng Limit Notice ── */

.jimeng-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #fffbeb;
  border: 1.5px solid #fbbf24;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin: 1rem 0;
}

.jimeng-notice-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.jimeng-notice p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}

.jimeng-notice strong {
  color: #111827;
  font-weight: 700;
}

.jimeng-notice a {
  color: #d97706;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.jimeng-notice a:hover {
  color: #b45309;
}

@media (max-width: 480px) {
  .jimeng-notice {
    padding: 0.75rem 0.9rem;
  }
}