.page-blog-industry-news-trends {
  color: #333333; /* Dark text for light body background */
}

.page-blog-industry-news-trends__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
}

.page-blog-industry-news-trends__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-blog-industry-news-trends__hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-industry-news-trends__hero-content {
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black background for text readability */
  padding: 30px;
  border-radius: 10px;
  color: #FFFFFF; /* Light text for dark overlay */
}

.page-blog-industry-news-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

.page-blog-industry-news-trends__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-blog-industry-news-trends__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-blog-industry-news-trends__hero-button:hover {
  background-color: #FFD700; /* Slightly lighter yellow on hover */
}

.page-blog-industry-news-trends__articles-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-blog-industry-news-trends__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-industry-news-trends__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-blog-industry-news-trends__section-intro {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #333333;
}

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

.page-blog-industry-news-trends__article-card {
  background-color: #f9f9f9;
  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;
  display: flex;
  flex-direction: column;
}

.page-blog-industry-news-trends__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-industry-news-trends__article-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

.page-blog-industry-news-trends__article-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

.page-blog-industry-news-trends__article-excerpt {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-industry-news-trends__read-more {
  display: inline-block;
  color: #FCBC45; /* Login button color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Pushes to the bottom */
}

.page-blog-industry-news-trends__read-more:hover {
  color: #000000;
}

.page-blog-industry-news-trends__cta-section {
  background-color: #000000; /* Main color */
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.page-blog-industry-news-trends__cta-content {
  max-width: 800px;
}

.page-blog-industry-news-trends__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color */
}

.page-blog-industry-news-trends__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #FFFFFF;
}

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

.page-blog-industry-news-trends__cta-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

.page-blog-industry-news-trends__cta-button--register:hover {
  background-color: #e0e0e0;
}

.page-blog-industry-news-trends__cta-button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-blog-industry-news-trends__cta-button--login:hover {
  background-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-industry-news-trends__hero-title {
    font-size: 2.8em;
  }
  .page-blog-industry-news-trends__section-title {
    font-size: 2em;
  }
  .page-blog-industry-news-trends__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news-trends__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }
  .page-blog-industry-news-trends__hero-title {
    font-size: 2.2em;
  }
  .page-blog-industry-news-trends__hero-description {
    font-size: 1em;
  }
  .page-blog-industry-news-trends__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-industry-news-trends__articles-section {
    padding: 40px 15px;
  }
  .page-blog-industry-news-trends__section-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news-trends__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-blog-industry-news-trends__article-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-industry-news-trends__article-image {
    height: 200px;
  }
  .page-blog-industry-news-trends__article-title {
    font-size: 1.3em;
  }
  .page-blog-industry-news-trends__cta-section {
    padding: 50px 15px;
  }
  .page-blog-industry-news-trends__cta-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news-trends__cta-description {
    font-size: 1em;
  }
  .page-blog-industry-news-trends__cta-button {
    margin: 10px 5px;
    width: calc(100% - 20px);
    max-width: 250px;
  }
  .page-blog-industry-news-trends__cta-button--register, .page-blog-industry-news-trends__cta-button--login {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  /* Ensure all images within the content area are responsive and do not overflow */
  .page-blog-industry-news-trends img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-industry-news-trends__article-card img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-industry-news-trends {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-blog-industry-news-trends__hero-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news-trends__hero-description {
    font-size: 0.9em;
  }
  .page-blog-industry-news-trends__section-title {
    font-size: 1.5em;
  }
  .page-blog-industry-news-trends__cta-title {
    font-size: 1.6em;
  }
}