/* style/resources-industry-news.css */
.page-resources-industry-news {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  line-height: 1.6;
  background-color: #0d1238; /* Darker background for contrast with main blue */
}

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

.page-resources-industry-news__hero {
  background: linear-gradient(135deg, #1A237E 0%, #0d1238 100%); /* Dark blue to very dark blue */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-resources-industry-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-industry-news__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #FFD700;
}

.page-resources-industry-news__section {
  padding: 60px 0;
  background-color: #1A237E; /* Main blue for sections */
  color: #E0E0E0;
}

.page-resources-industry-news__section--light {
  background-color: #121952; /* Slightly lighter blue for alternating sections */
}

.page-resources-industry-news__section--dark {
  background-color: #0d1238; /* Even darker blue for strong contrast */
}

.page-resources-industry-news__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-industry-news__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #E0E0E0;
}

.page-resources-industry-news__paragraph strong {
  color: #FFD700;
}

.page-resources-industry-news__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-resources-industry-news__article {
  background-color: #0d1238; /* Darker background for articles */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-resources-industry-news__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-industry-news__article-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-resources-industry-news__article-meta {
  font-size: 0.9em;
  color: #B0B0B0;
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-resources-industry-news__article .page-resources-industry-news__paragraph {
  padding: 0 20px;
  font-size: 1em;
  flex-grow: 1;
}

.page-resources-industry-news__article .page-resources-industry-news__btn {
  margin: 20px;
  align-self: flex-start;
}

.page-resources-industry-news__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 40px;
}

.page-resources-industry-news__list li {
  background-color: #121952; /* Slightly lighter blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-industry-news__list li strong {
  color: #FFD700;
}

.page-resources-industry-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
  margin: 10px;
}

.page-resources-industry-news__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-resources-industry-news__btn--primary:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-industry-news__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-industry-news__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-industry-news__hero-title {
    font-size: 2.5em;
  }

  .page-resources-industry-news__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-resources-industry-news__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-industry-news__hero-title {
    font-size: 2em;
  }

  .page-resources-industry-news__hero-subtitle {
    font-size: 1em;
  }

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

  .page-resources-industry-news__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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