/* ============================
   UPDATE PAGE MODULE STYLES
   (duplicate of update-index.css for legacy includes)
   ============================ */

.update-page {
  --update-glow: rgba(255, 43, 179, 0.25);
  --update-deep: rgba(38, 255, 230, 0.18);
  --update-date-bg: rgba(255, 255, 255, 0.04);
  --update-border: 1px solid rgba(255, 43, 179, 0.3);
}

.update-page .date-stamp {
  display: inline-block;
  background: var(--update-date-bg);
  border-left: 4px solid var(--neon-pink);
  padding: 0.45rem 0.85rem;
  font-weight: bold;
  font-size: 0.95rem;
  color: var(--text-dim, var(--text-subtle));
  margin-bottom: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(255, 43, 179, 0.3);
}

.update-page p {
  position: relative;
  padding: 0.4rem 0.75rem 0.4rem 1rem;
  border-left: 2px solid var(--update-glow);
  background: linear-gradient(90deg, transparent, var(--update-deep));
  border-radius: 0 4px 4px 0;
  transition: background 0.3s ease;
  margin-bottom: 1rem;
}

.update-page p:hover {
  background: linear-gradient(90deg, transparent, rgba(255, 43, 179, 0.08));
}

.update-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary, var(--text-main));
}

.update-page ul li {
  margin-bottom: 0.6rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--neon-pink);
}

.update-page h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--neon-teal, var(--neon-cyan));
  text-shadow: 0 0 4px rgba(38, 255, 230, 0.45);
}

.update-page .related-documents {
  margin-top: 2.5rem;
  background: var(--update-date-bg);
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: inset 0 0 8px rgba(38, 255, 230, 0.25);
}

.update-page .related-documents h3 {
  font-size: 1.15rem;
  color: var(--neon-teal, var(--neon-cyan));
  margin: 0 0 1rem;
  text-align: center;
}

.update-page .case-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.update-page .case-list li {
  margin-bottom: 0.85rem;
  padding: 0.55rem 0.75rem;
  border-left: 4px solid var(--neon-pink);
  background: rgba(255, 43, 179, 0.05);
  border-radius: 0 6px 6px 0;
}

.update-page .case-list a {
  color: var(--neon-teal, var(--neon-cyan));
  text-decoration: none;
  font-weight: bold;
}

.update-page .case-list a:hover {
  text-shadow: 0 0 5px rgba(38, 255, 230, 0.6);
}

@media (max-width: 600px) {
  .update-page p {
    padding-left: 0.65rem;
  }

  .update-page ul {
    padding-left: 1rem;
  }

  .update-page .related-documents {
    padding: 1rem;
  }
}
