.page-blog-industry-news {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

/* Hero Section */
.page-blog-industry-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-blog-industry-news__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-blog-industry-news__hero-title {
  font-size: 3em;
  color: #8B0000; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-blog-industry-news__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color */
  color: #8B0000; /* Contrasting text for button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-blog-industry-news__hero-button:hover {
  background-color: #e6c200;
  color: #6a0000;
}

.page-blog-industry-news__hero-image img {
  width: 100%;
  height: auto;
  max-width: 1000px; /* Constrain image width */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Latest Updates Section */
.page-blog-industry-news__latest-updates-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-blog-industry-news__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 30px;
}

.page-blog-industry-news__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

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

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

.page-blog-industry-news__article-card:hover {
  transform: translateY(-5px);
}

.page-blog-industry-news__article-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block; /* Ensure no extra space below image */
}

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

.page-blog-industry-news__article-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #8B0000;
}

.page-blog-industry-news__article-title a {
  color: #8B0000;
  text-decoration: none;
}

.page-blog-industry-news__article-title a:hover {
  text-decoration: underline;
}

.page-blog-industry-news__article-excerpt {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
}

.page-blog-industry-news__read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-industry-news__read-more:hover {
  color: #e6c200;
}

/* In-Depth Analysis Section */
.page-blog-industry-news__in-depth-analysis-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-blog-industry-news__content-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.page-blog-industry-news__content-block-title {
  font-size: 2em;
  color: #8B0000;
  margin-bottom: 20px;
}

.page-blog-industry-news__content-block-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-industry-news__content-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

/* Call to Action Section */
.page-blog-industry-news__call-to-action-section {
  padding: 80px 20px;
  background-color: #FFD700; /* Main brand color */
  text-align: center;
  color: #8B0000; /* Contrasting text */
}

.page-blog-industry-news__call-to-action-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #8B0000;
}

.page-blog-industry-news__call-to-action-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-blog-industry-news__call-to-action-button {
  display: inline-block;
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Contrasting text */
  padding: 18px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #8B0000;
}

.page-blog-industry-news__call-to-action-button:hover {
  background-color: #6a0000;
  color: #ffe033;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-industry-news__hero-title {
    font-size: 2.5em;
  }
  .page-blog-industry-news__section-title {
    font-size: 2em;
  }
  .page-blog-industry-news__call-to-action-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news__hero-section {
    flex-direction: column;
    padding: 40px 15px;
  }
  .page-blog-industry-news__hero-content {
    margin-bottom: 30px;
  }
  .page-blog-industry-news__hero-image img,
  .page-blog-industry-news__articles-grid img,
  .page-blog-industry-news__content-block img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-industry-news__hero-title {
    font-size: 2em;
  }
  .page-blog-industry-news__hero-description {
    font-size: 1em;
  }
  .page-blog-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__section-intro,
  .page-blog-industry-news__content-block-text {
    font-size: 0.95em;
  }
  .page-blog-industry-news__content-block {
    padding: 25px;
  }
  .page-blog-industry-news__content-block-title {
    font-size: 1.6em;
  }
  .page-blog-industry-news__call-to-action-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__call-to-action-description {
    font-size: 1.1em;
  }
  .page-blog-industry-news__call-to-action-button {
    padding: 15px 25px;
    font-size: 1em;
  }
  .page-blog-industry-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-industry-news__article-card img {
    height: 200px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 480px) {
  .page-blog-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__section-title {
    font-size: 1.5em;
  }
  .page-blog-industry-news__call-to-action-title {
    font-size: 1.6em;
  }
  .page-blog-industry-news__article-title {
    font-size: 1.3em;
  }
}