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

.page-blog-industry-news-april-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-industry-news-april-2024__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF; /* Light text for hero content over potentially dark image */
  overflow: hidden;
  padding: 0;
}

.page-blog-industry-news-april-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability, does not change color */
}

.page-blog-industry-news-april-2024__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
}

.page-blog-industry-news-april-2024__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-industry-news-april-2024__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-blog-industry-news-april-2024__cta-button {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-blog-industry-news-april-2024__cta-button--register:hover {
  background-color: #F0F0F0;
}

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

.page-blog-industry-news-april-2024__cta-button--login:hover {
  background-color: #E0A83D;
}

.page-blog-industry-news-april-2024__articles-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-blog-industry-news-april-2024__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-blog-industry-news-april-2024__article-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-blog-industry-news-april-2024__article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-blog-industry-news-april-2024__article-content {
  padding: 25px;
}

.page-blog-industry-news-april-2024__article-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #000000;
}

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

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

.page-blog-industry-news-april-2024__article-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

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

.page-blog-industry-news-april-2024__read-more:hover {
  color: #E0A83D;
}

.page-blog-industry-news-april-2024__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-blog-industry-news-april-2024__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-blog-industry-news-april-2024__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
}

.page-blog-industry-news-april-2024__cta-button--large {
  padding: 15px 35px;
  font-size: 1.1em;
  background-color: #FCBC45;
  color: #000000;
}

.page-blog-industry-news-april-2024__cta-button--large:hover {
  background-color: #E0A83D;
}

.page-blog-industry-news-april-2024__related-links-section {
  padding: 60px 0;
  background-color: #f0f0f0;
  text-align: center;
}

.page-blog-industry-news-april-2024__link-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-industry-news-april-2024__link-list li a {
  display: block;
  background-color: #FFFFFF;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-blog-industry-news-april-2024__link-list li a:hover {
  background-color: #FCBC45;
  color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-industry-news-april-2024__hero-title {
    font-size: 2.2em;
  }
  .page-blog-industry-news-april-2024__hero-description {
    font-size: 1.1em;
  }
  .page-blog-industry-news-april-2024__section-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news-april-2024__article-title {
    font-size: 1.4em;
  }
  .page-blog-industry-news-april-2024__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news-april-2024__hero-content {
    width: 90%;
    padding: 15px;
  }
  .page-blog-industry-news-april-2024__hero-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news-april-2024__hero-description {
    font-size: 1em;
  }
  .page-blog-industry-news-april-2024__cta-button {
    margin: 5px;
    padding: 10px 20px;
  }
  .page-blog-industry-news-april-2024__article-card {
    flex-direction: column;
  }
  .page-blog-industry-news-april-2024__article-image {
    height: 200px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
    max-width: 100%;
  }
  .page-blog-industry-news-april-2024__article-content {
    padding: 20px;
  }
  .page-blog-industry-news-april-2024__link-list {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-industry-news-april-2024__cta-button--large {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-blog-industry-news-april-2024__articles-section, .page-blog-industry-news-april-2024__cta-section, .page-blog-industry-news-april-2024__related-links-section {
    padding: 40px 0;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-blog-industry-news-april-2024 img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-industry-news-april-2024__hero-title {
    font-size: 1.5em;
  }
  .page-blog-industry-news-april-2024__hero-description {
    font-size: 0.9em;
  }
  .page-blog-industry-news-april-2024__cta-title {
    font-size: 1.5em;
  }
  .page-blog-industry-news-april-2024__cta-description {
    font-size: 1em;
  }
}