/* style/news-industry-trends.css */
.page-news-industry-trends {
  font-family: 'Arial', sans-serif;
  color: #f5e6d0; /* Light text for dark background */
  background-color: #0A192F;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Hero Section */
.page-news-industry-trends__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F, #331f00);
  position: relative;
  overflow: hidden;
  color: #FFD700; /* Accent color for hero text */
}

.page-news-industry-trends__hero-content {
  z-index: 1;
  max-width: 800px;
}

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

.page-news-industry-trends__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-news-industry-trends__hero-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  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;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-news-industry-trends__hero-cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

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

/* General Section Styling */
.page-news-industry-trends__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-news-industry-trends__section:last-of-type {
  border-bottom: none;
}

.page-news-industry-trends__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news-industry-trends__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-news-industry-trends__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f5e6d0;
  text-align: justify;
}

/* Key Trends Section */
.page-news-industry-trends__key-trends .page-news-industry-trends__container {
  display: grid;
  gap: 60px;
}

.page-news-industry-trends__trend-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.page-news-industry-trends__trend-item:nth-child(even) {
  flex-direction: column;
  align-items: flex-end;
}

.page-news-industry-trends__trend-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: left;
  width: 100%;
}

.page-news-industry-trends__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-news-industry-trends__image--left {
  order: -1;
  margin-right: auto; /* Aligns image to the left */
}

.page-news-industry-trends__image--right {
  order: -1;
  margin-left: auto; /* Aligns image to the right */
}

.page-news-industry-trends__inline-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 15px;
}

.page-news-industry-trends__inline-cta:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* MCW Role & Future Outlook Sections */
.page-news-industry-trends__mcw-role, .page-news-industry-trends__future-outlook {
  background-color: #0E1D3B; /* Slightly lighter dark blue */
}

/* Final CTA Section */
.page-news-industry-trends__cta-final {
  background: linear-gradient(45deg, #0A192F, #331f00);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

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

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

.page-news-industry-trends__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-news-industry-trends__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px 20px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-news-industry-trends__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7);
}

.page-news-industry-trends__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  box-shadow: none;
}

.page-news-industry-trends__cta-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.page-news-industry-trends__cta-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-news-industry-trends__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 120px 40px;
  }

  .page-news-industry-trends__hero-content {
    max-width: 50%;
    margin-right: 40px;
  }

  .page-news-industry-trends__hero-image-wrapper {
    position: relative;
    width: 40%;
    height: auto;
    opacity: 1;
  }

  .page-news-industry-trends__hero-image {
    width: 100%;
    height: auto;
    filter: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .page-news-industry-trends__hero-title {
    font-size: 4em;
  }

  .page-news-industry-trends__hero-description {
    font-size: 1.5em;
  }

  .page-news-industry-trends__section-title {
    font-size: 3em;
  }

  .page-news-industry-trends__key-trends .page-news-industry-trends__container {
    grid-template-columns: 1fr;
  }

  .page-news-industry-trends__trend-item {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .page-news-industry-trends__trend-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-news-industry-trends__trend-item .page-news-industry-trends__image {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .page-news-industry-trends__trend-item div {
    flex: 1;
  }

  .page-news-industry-trends__image--left {
    margin-right: 0;
  }
  
  .page-news-industry-trends__image--right {
    margin-left: 0;
  }

  .page-news-industry-trends__cta-final {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-news-industry-trends__cta-content {
    max-width: 60%;
    margin-right: 40px;
  }

  .page-news-industry-trends__cta-image {
    flex: 0 0 35%;
    max-width: 35%;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .page-news-industry-trends__hero-title {
    font-size: 2.5em;
  }

  .page-news-industry-trends__hero-description {
    font-size: 1.1em;
  }

  .page-news-industry-trends__section-title {
    font-size: 2em;
  }

  .page-news-industry-trends__trend-title {
    font-size: 1.5em;
  }

  .page-news-industry-trends__cta-title {
    font-size: 2em;
  }

  .page-news-industry-trends__cta-description {
    font-size: 1em;
  }

  .page-news-industry-trends__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 0 5px 15px;
  }
}