/* =============================
   NEWS PAGE STYLES (Scoped)
   ============================= */

/* Section background */
.news-page.bg-gradient-hero {
  background: linear-gradient(135deg, #002b49 0%, #005b8f 100%);
  color: #ffffff;
}

/* Hero Section */
.news-page h1.text-display {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.news-page .text-body-large {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* Article Card */
.news-page .bg-card {
  background-color: #ffffff;
}
.news-page .text-card-foreground {
  color: #1a1a1a;
}
.news-page .border {
  border: 1px solid #e5e7eb;
}
.news-page .shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Tags (e.g., FOR IMMEDIATE RELEASE) */
.news-page .bg-primary {
  background-color: #005b8f;
}
.news-page .text-primary-foreground {
  color: #ffffff;
}
.news-page .rounded-full {
  border-radius: 9999px;
}
.news-page .text-xs {
  font-size: 12px;
}

/* Headings */
.news-page h2 {
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  line-height: 1.3;
}
.news-page h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
}
.news-page h4 {
  font-size: 1rem;
  font-weight: 600;
}

/* Text colors */
.news-page .text-muted-foreground {
  color: #4b5563;
}
.news-page .text-primary {
  color: #005b8f;
}

/* Icon rows */
.news-page .flex.items-center svg {
  stroke: currentColor;
  stroke-width: 1.5;
  width: 16px;
  height: 16px;
  color: #6b7280; /* muted icon color */
}

/* Prose styles */
.news-page .prose p {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
}
.news-page .prose strong {
  font-weight: 600;
}
.news-page .prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.news-page .prose ul li {
  margin-bottom: 0.5rem;
  color: #374151;
}

/* Blockquotes */
.news-page blockquote {
  background-color: rgba(0, 91, 143, 0.05);
  border-left: 4px solid #005b8f;
  padding: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
}
.news-page blockquote footer {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Links */
.news-page a {
  color: #005b8f;
  text-decoration: underline;
}
.news-page a:hover {
  color: #004066;
}

/* Responsive Image or Video Support */
.news-page .prose img,
.news-page .prose video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Divider */
.news-page hr {
  border-color: #e5e7eb;
}

/* Responsive Grid Fixes */
.news-page .grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .news-page .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animations */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}


/* Only article body should be left-aligned */
.news-page .prose,
.news-page .p-6,
.news-page .text-card-foreground,
.news-page .text-muted-foreground {
  text-align: left !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

.italic {font-style: italic;}