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

.page-blog-industry-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  min-height: 500px;
}

.page-blog-industry-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-blog-industry-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-industry-news__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-blog-industry-news__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold main color */
  color: #121212; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-blog-industry-news__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold main color */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
}

.page-blog-industry-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #1E90FF; /* Auxiliary blue color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-industry-news__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-blog-industry-news__news-grid,
.page-blog-industry-news__resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-industry-news__news-card,
.page-blog-industry-news__resource-card,
.page-blog-industry-news__insight-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-blog-industry-news__news-card:hover,
.page-blog-industry-news__resource-card:hover,
.page-blog-industry-news__insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-blog-industry-news__card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-blog-industry-news__card-title a:hover {
  color: #1E90FF; /* Auxiliary blue on hover */
}

.page-blog-industry-news__card-excerpt {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-industry-news__read-more-button {
  display: inline-block;
  background-color: #1E90FF; /* Auxiliary blue color */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-blog-industry-news__read-more-button:hover {
  background-color: #1565b3;
}

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

.page-blog-industry-news__trend-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-industry-news__trend-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-blog-industry-news__trend-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-blog-industry-news__trend-image {
  width: 500px;
  height: 375px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-industry-news__trend-text {
  color: #e0e0e0;
  font-size: 1.05em;
  flex: 1;
}

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

.page-blog-industry-news__insight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  margin-bottom: 40px;
}

.page-blog-industry-news__expert-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFD700;
  margin-bottom: 25px;
}

.page-blog-industry-news__expert-name {
  font-size: 1.8em;
  color: #1E90FF; /* Auxiliary blue color */
  margin-bottom: 10px;
}

.page-blog-industry-news__expert-quote {
  font-style: italic;
  color: #f0f0f0;
  font-size: 1.15em;
  max-width: 800px;
}

.page-blog-industry-news__future-outlook {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.2), rgba(255, 215, 0, 0.2));
  border-radius: 12px;
  max-width: 1200px;
  margin: 80px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-industry-news__future-outlook .page-blog-industry-news__section-title {
  color: #FFD700;
}

.page-blog-industry-news__future-outlook .page-blog-industry-news__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-blog-industry-news__cta-button--bottom {
  margin-top: 30px;
}

.page-blog-industry-news__resource-card {
  text-align: center;
  padding: 30px;
}

.page-blog-industry-news__resource-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-blog-industry-news__resource-title a:hover {
  color: #1E90FF;
}

.page-blog-industry-news__resource-text {
  color: #cccccc;
  margin-bottom: 20px;
}

.page-blog-industry-news__resource-link {
  display: inline-block;
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #1E90FF;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-blog-industry-news__resource-link:hover {
  color: #FFD700;
  border-color: #FFD700;
}

/* 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__trend-item {
    flex-direction: column;
    text-align: center;
  }
  .page-blog-industry-news__trend-item:nth-child(even) {
    flex-direction: column;
  }
  .page-blog-industry-news__trend-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news__hero-title {
    font-size: 2.2em;
  }
  .page-blog-industry-news__hero-description {
    font-size: 1em;
  }
  .page-blog-industry-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__news-grid,
  .page-blog-industry-news__resource-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .page-blog-industry-news__card-title {
    font-size: 1.3em;
  }
  .page-blog-industry-news__trend-title {
    font-size: 1.6em;
  }
  .page-blog-industry-news__trend-item {
    padding: 20px;
  }
  .page-blog-industry-news__expert-name {
    font-size: 1.5em;
  }
  .page-blog-industry-news__expert-quote {
    font-size: 1em;
  }
  /* Ensure content images do not overflow */
  .page-blog-industry-news img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-industry-news__hero-image {
    width: 100%;
    height: 100%; /* Maintain full height for hero image */
  }
}