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

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

.page-blog-industry-news__hero-section {
  background-color: #007bff; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.page-blog-industry-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

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

.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: #ffc107; /* Auxiliary color */
  color: #007bff; /* Main color for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog-industry-news__hero-button:hover {
  background-color: #e0a800;
  color: #0056b3;
}

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

.page-blog-industry-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-blog-industry-news__latest-articles {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.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-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  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; /* Minimum 200px height for article images */
  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: 10px;
}

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

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

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

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

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

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

.page-blog-industry-news__featured-analysis {
  padding: 80px 0;
}

.page-blog-industry-news__analysis-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-blog-industry-news__analysis-text {
  flex: 1;
}

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

.page-blog-industry-news__analysis-image-wrapper {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-industry-news__analysis-image {
  width: 100%;
  height: auto;
  min-height: 200px; /* Minimum 200px height */
  display: block;
  object-fit: cover;
}

.page-blog-industry-news__analysis-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-industry-news__analysis-button:hover {
  background-color: #0056b3;
}

.page-blog-industry-news__subscribe-section {
  background-color: #007bff;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

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

.page-blog-industry-news__subscribe-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 10px;
}

.page-blog-industry-news__subscribe-input {
  flex-grow: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
}

.page-blog-industry-news__subscribe-input::placeholder {
  color: #6c757d;
}

.page-blog-industry-news__subscribe-button {
  background-color: #ffc107;
  color: #007bff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog-industry-news__subscribe-button:hover {
  background-color: #e0a800;
  color: #0056b3;
}

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

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

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

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

.page-blog-industry-news__cta-button {
  display: inline-block;
  padding: 15px 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-color 0.3s ease;
}

.page-blog-industry-news__cta-button--primary {
  background-color: #ffc107;
  color: #007bff;
  border: 2px solid #ffc107;
}

.page-blog-industry-news__cta-button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #0056b3;
}

.page-blog-industry-news__cta-button--secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-blog-industry-news__cta-button--secondary:hover {
  background-color: #007bff;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-blog-industry-news__hero-title {
    font-size: 2.8em;
  }
  .page-blog-industry-news__section-title {
    font-size: 2em;
  }
  .page-blog-industry-news__analysis-content {
    flex-direction: column;
  }
  .page-blog-industry-news__analysis-image-wrapper {
    margin-top: 30px;
  }
  .page-blog-industry-news__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news__hero-section {
    padding: 60px 15px;
  }
  .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__section-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-industry-news__article-image {
    height: 200px; /* Ensure minimum height */
    max-width: 100%; /* Mobile image fluid sizing */
  }
  .page-blog-industry-news__analysis-image {
    max-width: 100%; /* Mobile image fluid sizing */
    height: auto;
  }
  .page-blog-industry-news__subscribe-form {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-industry-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-industry-news__cta-title {
    font-size: 1.8em;
  }
  /* All images within content area */
  .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__section-title {
    font-size: 1.5em;
  }
  .page-blog-industry-news__cta-title {
    font-size: 1.5em;
  }
  .page-blog-industry-news__hero-button,
  .page-blog-industry-news__subscribe-button,
  .page-blog-industry-news__cta-button {
    width: 100%;
  }
}