.page-industry-news {
  font-family: 'Arial', sans-serif;
  color: #2C3E50; /* Dark text for light backgrounds */
  line-height: 1.6;
  background-color: #f8f9fa; /* Light background */
}

.page-industry-news a {
  color: #F39C12; /* Accent color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news a:hover {
  color: #e08e0b; /* Slightly darker accent on hover */
}

.page-industry-news__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%); /* Dark gradient background */
  color: #ECF0F1; /* Light text for dark background */
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-industry-news__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #F39C12; /* Accent color for main title */
}

.page-industry-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ECF0F1;
}

.page-industry-news__hero-description a {
  color: #F39C12; /* Accent for links in description */
}

.page-industry-news__cta-button {
  display: inline-block;
  background-color: #F39C12; /* Accent color for CTA */
  color: #2C3E50; /* Dark text on accent button */
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-industry-news__cta-button:hover {
  background-color: #e08e0b; /* Darker accent on hover */
  transform: translateY(-2px);
}

.page-industry-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.page-industry-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-industry-news__articles-grid {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.page-industry-news__grid-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-industry-news__section-title {
  font-size: 2.2em;
  color: #2C3E50;
  margin-bottom: 10px;
}

.page-industry-news__section-subtitle {
  font-size: 1.1em;
  color: #555;
}

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

.page-industry-news__article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-industry-news__article-content {
  padding: 20px;
}

.page-industry-news__article-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-industry-news__article-title a {
  color: #2C3E50;
}

.page-industry-news__article-title a:hover {
  color: #F39C12;
}

.page-industry-news__article-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

.page-industry-news__article-excerpt {
  font-size: 1em;
  color: #444;
  margin-bottom: 20px;
}

.page-industry-news__article-excerpt a {
  color: #F39C12;
}

.page-industry-news__read-more {
  display: inline-block;
  color: #F39C12;
  font-weight: bold;
  border-bottom: 2px solid #F39C12;
  padding-bottom: 3px;
}

.page-industry-news__read-more:hover {
  color: #e08e0b;
  border-color: #e08e0b;
}

.page-industry-news__featured-analysis {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  gap: 40px;
}

.page-industry-news__analysis-content {
  flex: 3;
  min-width: 300px;
}

.page-industry-news__analysis-content .page-industry-news__section-title {
  text-align: left;
  font-size: 2.5em;
  color: #2C3E50;
  margin-bottom: 20px;
}

.page-industry-news__analysis-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}

.page-industry-news__analysis-text a {
  color: #F39C12;
}

.page-industry-news__analysis-subtitle {
  font-size: 1.6em;
  color: #2C3E50;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #F39C12;
  padding-left: 10px;
}

.page-industry-news__analysis-conclusion {
  font-size: 1.15em;
  font-weight: bold;
  margin-top: 30px;
  color: #2C3E50;
}

.page-industry-news__sidebar {
  flex: 1;
  min-width: 280px;
  background-color: #f0f2f5;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  align-self: flex-start;
  position: sticky;
  top: 20px; /* Adjust as needed for sticky behavior */
}

.page-industry-news__sidebar-title {
  font-size: 1.8em;
  color: #2C3E50;
  margin-bottom: 20px;
  text-align: center;
}

.page-industry-news__latest-news-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-industry-news__latest-news-list li {
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}

.page-industry-news__latest-news-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-industry-news__latest-news-list a {
  color: #2C3E50;
  font-size: 1.05em;
  display: block;
}

.page-industry-news__latest-news-list a:hover {
  color: #F39C12;
}

.page-industry-news__sidebar-cta-button {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #2C3E50; /* Main color for sidebar CTA */
  color: #ECF0F1; /* Light text on dark button */
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-industry-news__sidebar-cta-button:hover {
  background-color: #34495E; /* Slightly lighter dark on hover */
  transform: translateY(-2px);
}

.page-industry-news__cta-button--bottom {
  margin-top: 40px;
  width: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-industry-news__hero-title {
    font-size: 2.2em;
  }

  .page-industry-news__hero-description {
    font-size: 1em;
  }

  .page-industry-news__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-industry-news__featured-analysis {
    flex-direction: column;
  }

  .page-industry-news__sidebar {
    order: -1; /* Move sidebar to top on smaller screens */
    position: static;
    margin-bottom: 40px;
  }

  .page-industry-news__analysis-content .page-industry-news__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-industry-news__hero {
    padding: 60px 15px;
  }

  .page-industry-news__hero-title {
    font-size: 1.8em;
  }

  .page-industry-news__section-title {
    font-size: 1.8em;
  }

  .page-industry-news__article-title {
    font-size: 1.2em;
  }

  .page-industry-news__analysis-subtitle {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .page-industry-news__hero-title {
    font-size: 1.5em;
  }

  .page-industry-news__hero-description {
    font-size: 0.9em;
  }

  .page-industry-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-industry-news__section-title {
    font-size: 1.5em;
  }

  .page-industry-news__sidebar-title {
    font-size: 1.5em;
  }
}