/* ── Sora Shutdown Notice ── */

.sora-notice {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 2px solid #fbbf24;
  border-left: 5px solid #f59e0b;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.sora-notice-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sora-notice-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.sora-notice-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.sora-notice-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 0.2rem;
}

.sora-notice-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.sora-notice-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: #92400e;
  background: rgba(251, 191, 36, 0.25);
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
}

.sora-notice-body {
  font-size: 0.93rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

.sora-notice-body strong {
  color: #111827;
  font-weight: 700;
}

/* ── Still running row ── */
.sora-notice-running {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #ecfdf5;
  border: 1.5px solid #6ee7b7;
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.sora-notice-running p {
  font-size: 0.92rem;
  color: #065f46;
  line-height: 1.65;
  margin: 0;
}

.sora-notice-running strong {
  color: #064e3b;
}

.sora-notice-running a {
  color: #059669;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.sora-notice-running a:hover {
  color: #047857;
}

/* ── Pulse dot ── */
.sora-notice-pulse {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: sn-pulse 1.8s ease-in-out infinite;
}

@keyframes sn-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(16, 185, 129, 0.5); }
  50%       { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);   }
}

@media (max-width: 480px) {
  .sora-notice {
    padding: 1.1rem;
  }

  .sora-notice-title {
    font-size: 1rem;
  }

  .sora-notice-running {
    flex-direction: column;
    gap: 0.4rem;
  }
}