/* style/industry-news-article-6.css */
.page-industry-news-article-6 {
  font-family: 'Arial', sans-serif;
  color: #f8f8f8; /* Text color for general content, contrasts with dark background */
  background-color: #1A2C42;
  line-height: 1.6;
}

.page-industry-news-article-6__hero {
  position: relative;
  background-color: #1A2C42;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-industry-news-article-6__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
  margin-bottom: 40px;
}

.page-industry-news-article-6__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-industry-news-article-6__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(70%);
}

.page-industry-news-article-6__title {
  font-size: 2.8em;
  color: #E0B147; /* Accent color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-article-6__subtitle {
  font-size: 1.3em;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto;
}

.page-industry-news-article-6__article-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #243B53; /* Slightly lighter dark background for article content */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #e0e0e0;
}

.page-industry-news-article-6__section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(224, 177, 71, 0.2);
}

.page-industry-news-article-6__section:last-child {
  border-bottom: none;
}

.page-industry-news-article-6__heading {
  font-size: 2.2em;
  color: #E0B147; /* Accent color for section headings */
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-industry-news-article-6__sub-heading {
  font-size: 1.8em;
  color: #f8f8f8;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #E0B147;
  padding-left: 15px;
}

.page-industry-news-article-6__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-industry-news-article-6__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-industry-news-article-6__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-industry-news-article-6__list-item strong {
  color: #E0B147;
}

.page-industry-news-article-6__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-article-6__image--inline {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-article-6__call-to-action {
  text-align: center;
  padding: 50px 0;
  background-color: #1A2C42; /* Primary dark color for CTA background */
  border-radius: 0 0 8px 8px;
  border-top: 1px solid rgba(224, 177, 71, 0.3);
}

.page-industry-news-article-6__call-to-action .page-industry-news-article-6__heading {
  color: #E0B147;
  margin-bottom: 20px;
}

.page-industry-news-article-6__call-to-action .page-industry-news-article-6__paragraph {
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-industry-news-article-6__button {
  display: inline-block;
  background-color: #E0B147; /* Accent color for primary button */
  color: #1A2C42;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-industry-news-article-6__button:hover {
  background-color: #f0c268;
  transform: translateY(-3px);
}

.page-industry-news-article-6__button--secondary {
  background-color: #3a506b; /* A darker shade for secondary button */
  color: #f8f8f8;
}

.page-industry-news-article-6__button--secondary:hover {
  background-color: #4a627d;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-industry-news-article-6__title {
    font-size: 2em;
  }

  .page-industry-news-article-6__subtitle {
    font-size: 1em;
  }

  .page-industry-news-article-6__heading {
    font-size: 1.8em;
  }

  .page-industry-news-article-6__sub-heading {
    font-size: 1.5em;
  }

  .page-industry-news-article-6__paragraph,
  .page-industry-news-article-6__list-item {
    font-size: 0.95em;
  }

  .page-industry-news-article-6__hero {
    padding: 80px 15px;
  }

  .page-industry-news-article-6__article-container {
    margin: 20px auto;
    padding: 0 15px;
  }

  .page-industry-news-article-6__section {
    padding: 30px 0;
  }

  .page-industry-news-article-6__button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
}

@media (max-width: 480px) {
  .page-industry-news-article-6__title {
    font-size: 1.6em;
  }

  .page-industry-news-article-6__subtitle {
    font-size: 0.9em;
  }

  .page-industry-news-article-6__heading {
    font-size: 1.5em;
  }

  .page-industry-news-article-6__sub-heading {
    font-size: 1.3em;
  }

  .page-industry-news-article-6__button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}