.page-resources-latest-industry-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#0a0a0a), so text should be light */
  background-color: #0a0a0a; /* Ensure consistency with shared body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-latest-industry-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-latest-industry-news__hero-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-resources-latest-industry-news__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Highlight with auxiliary color */
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-latest-industry-news__description {
  font-size: 1.25em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-latest-industry-news__cta-wrapper {
  margin-top: 30px;
}

.page-resources-latest-industry-news__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color, #007bff); /* Primary color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
  border: none;
  cursor: pointer;
}

.page-resources-latest-industry-news__cta-button:hover {
  background: #0056b3; /* Darker shade on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

/* Articles Section */
.page-resources-latest-industry-news__articles-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

.page-resources-latest-industry-news__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #ffc107; /* Auxiliary color for section titles */
  font-weight: bold;
}

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

.page-resources-latest-industry-news__article-card {
  background-color: #1a1a1a; /* Dark background for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff; /* Light text for card content */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-latest-industry-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-industry-news__article-image {
  width: 100%;
  height: 220px; /* Fixed height for images in cards */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-latest-industry-news__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources-latest-industry-news__article-title {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
  color: #ffc107; /* Auxiliary color for article titles */
  font-weight: bold;
  line-height: 1.3;
}

.page-resources-latest-industry-news__article-title a {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-latest-industry-news__article-title a:hover {
  color: #ffd700; /* Lighter gold on hover */
  text-decoration: underline;
}

.page-resources-latest-industry-news__article-excerpt {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-latest-industry-news__article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  color: #888888;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-resources-latest-industry-news__read-more {
  color: #007bff; /* Primary color for read more link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-latest-industry-news__read-more:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-latest-industry-news__main-title {
    font-size: 3em;
  }

  .page-resources-latest-industry-news__description {
    font-size: 1.1em;
  }

  .page-resources-latest-industry-news__section-title {
    font-size: 2em;
  }

  .page-resources-latest-industry-news__article-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-industry-news {
    padding-top: var(--header-offset, 120px) !important;
    font-size: 15px;
    line-height: 1.5;
  }

  .page-resources-latest-industry-news__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-latest-industry-news__hero-section {
    padding: 60px 15px;
  }

  .page-resources-latest-industry-news__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-latest-industry-news__description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-latest-industry-news__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-latest-industry-news__articles-section {
    padding: 40px 0;
  }

  .page-resources-latest-industry-news__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-resources-latest-industry-news__article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-latest-industry-news__article-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-resources-latest-industry-news__article-image {
    height: 180px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-latest-industry-news__article-content {
    padding: 20px;
  }

  .page-resources-latest-industry-news__article-title {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .page-resources-latest-industry-news__article-excerpt {
    font-size: 0.95em;
    margin-bottom: 15px;
  }

  .page-resources-latest-industry-news__article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* Ensure all images are responsive and not smaller than 200px */
.page-resources-latest-industry-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Specific rule for content images to meet 200px minimum in desktop context */
.page-resources-latest-industry-news__article-image {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-resources-latest-industry-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-latest-industry-news__hero-section .page-resources-latest-industry-news__container,
  .page-resources-latest-industry-news__articles-section .page-resources-latest-industry-news__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources-latest-industry-news__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}