.page-blog-industry-news {
  color: #333333;
}

.page-blog-industry-news__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background-color: #f8f8f8;
  text-align: center;
  padding-bottom: 60px;
}

.page-blog-industry-news__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-industry-news__hero-title {
  font-size: 2.8em;
  color: #8B0000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-blog-industry-news__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-blog-industry-news__hero-image {
  max-width: 100%;
  overflow: hidden;
}

.page-blog-industry-news__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-industry-news__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

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

.page-blog-industry-news__cta-button--secondary {
  background-color: #8B0000; /* Deep Red */
  color: #FFD700; /* Gold for contrast */
  border: 2px solid #8B0000;
  margin-left: 20px;
}

.page-blog-industry-news__cta-button--secondary:hover {
  background-color: #6a0000; /* Darker red */
  border-color: #6a0000;
}

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

.page-blog-industry-news__article-title {
  font-size: 2em;
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  font-weight: 700;
}

.page-blog-industry-news__article-subtitle {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
}

.page-blog-industry-news__article-paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444444;
}

.page-blog-industry-news__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-blog-industry-news__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-industry-news__call-to-action {
  background-color: #8B0000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-blog-industry-news__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: 700;
}

.page-blog-industry-news__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-blog-industry-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

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

  .page-blog-industry-news__cta-button--secondary {
    margin-left: 0;
  }

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

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

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

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

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

  .page-blog-industry-news__image-wrapper img {
    max-width: 100%;
    height: auto;
  }

  .page-blog-industry-news__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-blog-industry-news__hero-content,
  .page-blog-industry-news__content-area,
  .page-blog-industry-news__call-to-action {
    padding: 30px 15px;
  }

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

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

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

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