.page-news-industry-updates {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary brand color as background */
  line-height: 1.6;
}

.page-news-industry-updates__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news-industry-updates__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a61 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-industry-updates__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, rgba(10, 25, 47, 0) 70%); /* Subtle gold radial gradient */
  animation: page-news-industry-updates__hero-pulse 15s infinite alternate;
  z-index: 0;
}

@keyframes page-news-industry-updates__hero-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.page-news-industry-updates__hero-title {
  font-size: 3.5em;
  color: #FFFFFF; /* White for main title */
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.page-news-industry-updates__hero-title .highlight {
  color: #FFD700; /* Secondary brand color for highlight */
}

.page-news-industry-updates__hero-subtitle {
  font-size: 1.2em;
  color: #B0B0B0; /* Lighter gray for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-news-industry-updates__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Secondary brand color for CTA button */
  color: #0A192F; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-news-industry-updates__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-news-industry-updates__section {
  padding: 60px 0;
}

.page-news-industry-updates__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
}

.page-news-industry-updates__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-updates__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news-industry-updates__news-card {
  background-color: #1a2a43; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news-industry-updates__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news-industry-updates__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-news-industry-updates__news-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news-industry-updates__news-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for news titles */
  line-height: 1.3;
}

.page-news-industry-updates__news-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-industry-updates__news-title a:hover {
  color: #e6c200;
}

.page-news-industry-updates__news-excerpt {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news-industry-updates__read-more {
  display: inline-block;
  color: #FFD700; /* Gold for read more link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-industry-updates__read-more:hover {
  color: #e6c200;
}

.page-news-industry-updates__trends-analysis {
  background-color: #0A192F;
}

.page-news-industry-updates__trend-item {
  background-color: #1a2a43;
  border-left: 5px solid #FFD700;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-news-industry-updates__trend-title {
  font-size: 1.8em;
  color: #FFFFFF; /* White for trend titles */
  margin-bottom: 15px;
}

.page-news-industry-updates__trend-item p {
  color: #E0E0E0; /* Light gray for trend paragraph */
  font-size: 1em;
}

.page-news-industry-updates__cta-section {
  background-color: #1a2a43;
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-news-industry-updates__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-news-industry-updates__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-updates__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-news-industry-updates__cta-small-text {
  margin-top: 25px;
  font-size: 0.9em;
  color: #B0B0B0;
}

.page-news-industry-updates__cta-small-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-industry-updates__cta-small-text a:hover {
  color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-updates__hero-title {
    font-size: 3em;
  }
  .page-news-industry-updates__section-title {
    font-size: 2em;
  }
  .page-news-industry-updates__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-news-industry-updates__hero {
    padding: 80px 0;
  }
  .page-news-industry-updates__hero-title {
    font-size: 2.5em;
  }
  .page-news-industry-updates__hero-subtitle {
    font-size: 1em;
  }
  .page-news-industry-updates__section-title {
    font-size: 1.8em;
  }
  .page-news-industry-updates__news-content {
    padding: 20px;
  }
  .page-news-industry-updates__news-title {
    font-size: 1.3em;
  }
  .page-news-industry-updates__trend-title {
    font-size: 1.5em;
  }
  .page-news-industry-updates__cta-title {
    font-size: 2.2em;
  }
  .page-news-industry-updates__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news-industry-updates__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-news-industry-updates__hero {
    padding: 60px 0;
  }
  .page-news-industry-updates__hero-title {
    font-size: 2em;
  }
  .page-news-industry-updates__hero-subtitle {
    font-size: 0.9em;
  }
  .page-news-industry-updates__section {
    padding: 40px 0;
  }
  .page-news-industry-updates__section-title {
    font-size: 1.5em;
  }
  .page-news-industry-updates__section-description {
    font-size: 0.9em;
  }
  .page-news-industry-updates__news-grid {
    grid-template-columns: 1fr;
  }
  .page-news-industry-updates__news-card {
    margin: 0 10px;
  }
  .page-news-industry-updates__trend-item {
    padding: 20px;
    margin: 0 10px 20px;
  }
  .page-news-industry-updates__cta-title {
    font-size: 1.8em;
  }
  .page-news-industry-updates__cta-description {
    font-size: 1em;
  }
  .page-news-industry-updates__cta-button {
    width: 90%;
    box-sizing: border-box;
  }
  .page-news-industry-updates__cta-button--large {
    width: 90%;
    box-sizing: border-box;
  }
}