/* style/resources-latest-industry-news.css */
.page-resources-latest-industry-news {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark backgrounds */
  background-color: #001a33; /* Darker variant of main color for overall background */
}

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

.page-resources-latest-industry-news__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Main color gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-resources-latest-industry-news__hero-title {
  font-size: 3.5em;
  color: #FFCC00; /* Accent color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-latest-industry-news__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #cccccc;
}

.page-resources-latest-industry-news__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Accent color for CTA button */
  color: #003366; /* Dark text on accent button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-latest-industry-news__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  color: #001a33;
}

.page-resources-latest-industry-news__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Accent color for section titles */
  text-align: center;
  margin: 60px 0 40px;
  font-weight: bold;
}

.page-resources-latest-industry-news__articles-section {
  padding: 60px 0;
  background-color: #001a33;
}

.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: #003366; /* Main color for card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-latest-industry-news__article-card:hover {
  transform: translateY(-10px);
}

.page-resources-latest-industry-news__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #FFCC00; /* Accent border */
}

.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.6em;
  color: #FFCC00; /* Accent color for article titles */
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-resources-latest-industry-news__read-more {
  color: #FFCC00; /* Accent color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-resources-latest-industry-news__read-more:hover {
  color: #ffffff;
}

.page-resources-latest-industry-news__featured-news {
  padding: 60px 0;
  background-color: #001a33;
}

.page-resources-latest-industry-news__news-item {
  display: flex;
  background-color: #003366;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-resources-latest-industry-news__news-image {
  width: 350px;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
  border-right: 3px solid #FFCC00;
}

.page-resources-latest-industry-news__news-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-resources-latest-industry-news__news-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-resources-latest-industry-news__news-date {
  font-size: 0.9em;
  color: #999999;
  margin-bottom: 15px;
}

.page-resources-latest-industry-news__news-excerpt {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-resources-latest-industry-news__newsletter {
  background-color: #002a52; /* Slightly lighter dark blue for contrast */
  padding: 80px 0;
  text-align: center;
}

.page-resources-latest-industry-news__newsletter-text {
  font-size: 1.2em;
  color: #cccccc;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-industry-news__newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.page-resources-latest-industry-news__newsletter-input {
  padding: 15px 20px;
  border: 2px solid #FFCC00;
  border-radius: 5px 0 0 5px;
  font-size: 1em;
  flex-grow: 1;
  background-color: #001a33; /* Dark background for input */
  color: #ffffff; /* White text for input */
}

.page-resources-latest-industry-news__newsletter-input::placeholder {
  color: #999999;
}

.page-resources-latest-industry-news__newsletter-button {
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 25px;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-latest-industry-news__newsletter-button:hover {
  background-color: #e6b800;
  color: #001a33;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-latest-industry-news__hero-title {
    font-size: 2.8em;
  }
  .page-resources-latest-industry-news__hero-subtitle {
    font-size: 1.2em;
  }
  .page-resources-latest-industry-news__section-title {
    font-size: 2em;
  }
  .page-resources-latest-industry-news__news-item {
    flex-direction: column;
  }
  .page-resources-latest-industry-news__news-image {
    width: 100%;
    height: 200px;
    border-right: none;
    border-bottom: 3px solid #FFCC00;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-industry-news__hero {
    padding: 80px 0;
  }
  .page-resources-latest-industry-news__hero-title {
    font-size: 2.2em;
  }
  .page-resources-latest-industry-news__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-latest-industry-news__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-resources-latest-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-resources-latest-industry-news__article-title {
    font-size: 1.4em;
  }
  .page-resources-latest-industry-news__news-title {
    font-size: 1.5em;
  }
  .page-resources-latest-industry-news__newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .page-resources-latest-industry-news__newsletter-input {
    border-radius: 5px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .page-resources-latest-industry-news__newsletter-button {
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-resources-latest-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-resources-latest-industry-news__section-title {
    font-size: 1.5em;
  }
  .page-resources-latest-industry-news__article-content, 
  .page-resources-latest-industry-news__news-content {
    padding: 15px;
  }
  .page-resources-latest-industry-news__article-title {
    font-size: 1.2em;
  }
  .page-resources-latest-industry-news__news-title {
    font-size: 1.3em;
  }
}