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

.page-blog-industry-news__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
}

.page-blog-industry-news__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-blog-industry-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
}

.page-blog-industry-news__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  padding: 20px;
  max-width: 90%;
  z-index: 10;
}

.page-blog-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-industry-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-industry-news__hero-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-industry-news__hero-button:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-blog-industry-news__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-industry-news__introduction,
.page-blog-industry-news__trends-section,
.page-blog-industry-news__ggpanalo-focus,
.page-blog-industry-news__cta-section,
.page-blog-industry-news__related-resources {
  padding: 60px 0;
}

.page-blog-industry-news__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-industry-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-blog-industry-news__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.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: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-blog-industry-news__article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

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

.page-blog-industry-news__article-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

.page-blog-industry-news__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-blog-industry-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-blog-industry-news__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-industry-news__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-blog-industry-news__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-blog-industry-news__cta-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-blog-industry-news__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-blog-industry-news__cta-button--login:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-blog-industry-news__resource-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-blog-industry-news__resource-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-industry-news__resource-item:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-blog-industry-news__resource-item a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-blog-industry-news__resource-item a:hover {
  color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-industry-news__hero-title {
    font-size: 2.8em;
  }

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

  .page-blog-industry-news__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }

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

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

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

  .page-blog-industry-news__introduction,
  .page-blog-industry-news__trends-section,
  .page-blog-industry-news__ggpanalo-focus,
  .page-blog-industry-news__cta-section,
  .page-blog-industry-news__related-resources {
    padding: 40px 0;
  }

  .page-blog-industry-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-industry-news__paragraph {
    font-size: 1em;
  }

  .page-blog-industry-news__article-image {
    height: 200px;
  }

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

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

  .page-blog-industry-news__cta-text {
    font-size: 1em;
  }

  .page-blog-industry-news__cta-button {
    display: block;
    width: calc(100% - 40px);
    margin: 15px auto;
  }

  .page-blog-industry-news__articles-grid,
  .page-blog-industry-news__resource-list {
    grid-template-columns: 1fr;
  }
  
  /* Critical: Ensure content images do not overflow on mobile */
  .page-blog-industry-news img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

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