/* ===== OWA Live News - Soft Background + Blue Stripe ===== */

.news-page,
.container.news-page,
.site-main .container {
  max-width: 1100px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.news-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.25rem !important;
  margin: 2.5rem 0 3rem !important;
  width: 100% !important;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr !important;
  }
}

.news-card {
  background: #f0f9ff !important; /* soft OWA blue tint */
  border: 1px solid #e0f2fe !important;
  border-left: 4px solid var(--primary, #c4e5f5) !important;
  border-radius: 12px !important;
  padding: 1.35rem 1.4rem !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  float: none !important;
  display: block !important;
  transition: all 0.2s ease !important;
}

.news-card:hover {
  background: #e0f2fe !important;
  border-color: #bae6fd !important;
  border-left-color: var(--primary, #00a8ff) !important;
  box-shadow: 0 8px 20px rgba(0, 168, 255, 0.12) !important;
  transform: translateY(-2px) !important;
}

.news-meta {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #0369a1 !important;
  margin-bottom: 0.55rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
}

.news-title {
  font-size: 1.05rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  color: var(--navy, #111) !important;
  font-weight: 600 !important;
}

.news-title a {
  color: inherit !important;
  text-decoration: none !important;
}

.news-title a:hover {
  color: var(--primary, #00a8ff) !important;
}
/* ===== Background Video ===== */
.news-page-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.news-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.news-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;          /* faded look – adjust between 0.12 and 0.25 */
}

.news-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.92) 40%,
    rgba(255, 255, 255, 0.97) 100%
  );
}

/* Keep content above the video */
.news-page {
  position: relative;
  z-index: 2;
}

/* Optional: hide video on mobile for performance */
