/* style/industry-news.css */
.page-industry-news {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-industry-news__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a445c 100%); /* Dark gradient for hero */
  color: #FFFFFF; /* White text on dark background */
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-industry-news__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-industry-news__hero-subtitle {
  font-size: 1.3em;
  color: #CCCCCC; /* Lighter gray for subtitle */
  margin-bottom: 30px;
}

.page-industry-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-industry-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
}

.page-industry-news__main-content {
  padding: 60px 20px;
}

.page-industry-news__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr; /* Main content and sidebar */
  gap: 40px;
}

@media (max-width: 992px) {
  .page-industry-news__container {
    grid-template-columns: 1fr; /* Stack on smaller screens */
  }
}

.page-industry-news__article {
  background-color: #2A313F; /* Slightly lighter dark background for article */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__article-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 15px;
}

.page-industry-news__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-industry-news__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0; /* Light gray for paragraph text */
}

.page-industry-news__paragraph strong {
  color: #FFD700; /* Highlight strong text with gold */
}

.page-industry-news__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-industry-news__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-industry-news__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news__sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-industry-news__sidebar-block, .page-industry-news__sidebar-promo {
  background-color: #2A313F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__sidebar-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 1px solid #FFD700;
  padding-bottom: 10px;
}

.page-industry-news__related-articles {
  list-style: none;
  padding: 0;
}

.page-industry-news__related-articles li {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #3a445c; /* Lighter dashed line */
}

.page-industry-news__related-articles li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-industry-news__related-link {
  font-size: 1.2em;
  color: #FFD700; /* Gold for related links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 5px;
}

.page-industry-news__related-link:hover {
  color: #FFFFFF; /* White on hover */
}

.page-industry-news__related-description {
  font-size: 0.95em;
  color: #B0B0B0; /* Slightly darker gray for description */
  margin-bottom: 10px;
}

.page-industry-news__view-details-btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: #4A5568; /* Darker gray for button */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-industry-news__view-details-btn:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #1A202C;
}

.page-industry-news__cta-block {
  background-color: #1A202C; /* Main dark color for CTA block */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  border: 2px solid #FFD700; /* Gold border for emphasis */
}

.page-industry-news__cta-text {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-industry-news__cta-text strong {
  color: #FFD700;
}

.page-industry-news__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A202C; /* Dark text on gold */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-news__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-industry-news__cta-button--large {
  padding: 18px 35px;
  font-size: 1.5em;
}

.page-industry-news__cta-button--small {
  padding: 10px 20px;
  font-size: 1.1em;
}

.page-industry-news__sidebar-promo {
  text-align: center;
}

.page-industry-news__sidebar-promo-text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-industry-news__sidebar-promo-text strong {
  color: #FFD700;
}

.page-industry-news__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-industry-news__hero-title {
    font-size: 2.5em;
  }
  .page-industry-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-industry-news__article-title {
    font-size: 1.8em;
  }
  .page-industry-news__sub-title {
    font-size: 1.5em;
  }
  .page-industry-news__paragraph {
    font-size: 1em;
  }
  .page-industry-news__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-industry-news__cta-button--large {
    font-size: 1.3em;
    padding: 15px 30px;
  }
  .page-industry-news__cta-text {
    font-size: 1.3em;
  }
  .page-industry-news__article, .page-industry-news__sidebar-block, .page-industry-news__sidebar-promo {
    padding: 25px;
  }
  .page-industry-news__main-content {
    padding: 40px 15px;
  }
  .page-industry-news__sidebar-title {
    font-size: 1.4em;
  }
  .page-industry-news__related-link {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-industry-news__hero {
    padding: 60px 15px;
  }
  .page-industry-news__hero-title {
    font-size: 2em;
  }
  .page-industry-news__hero-subtitle {
    font-size: 1em;
  }
  .page-industry-news__article-title {
    font-size: 1.6em;
  }
  .page-industry-news__sub-title {
    font-size: 1.3em;
  }
  .page-industry-news__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-industry-news__cta-button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-industry-news__cta-text {
    font-size: 1.1em;
  }
  .page-industry-news__article, .page-industry-news__sidebar-block, .page-industry-news__sidebar-promo {
    padding: 20px;
  }
  .page-industry-news__main-content {
    padding: 30px 10px;
  }
}