/* style/industry-news-tech-outlook.css */
.page-industry-news-tech-outlook {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #0d1137; /* Darker variant of primary color for main background */
  line-height: 1.6;
}

.page-industry-news-tech-outlook__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-industry-news-tech-outlook__hero-section {
  background: linear-gradient(135deg, #1A237E, #0d1137);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-industry-news-tech-outlook__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,technology,pattern,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-industry-news-tech-outlook__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-tech-outlook__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-industry-news-tech-outlook__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A237E; /* Dark blue for text on gold button */
  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;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-industry-news-tech-outlook__cta-button--secondary {
  background-color: #1A237E;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-industry-news-tech-outlook__cta-button--secondary:hover {
  background-color: #2a3592;
  border-color: #e5c100;
}

.page-industry-news-tech-outlook__content-section {
  padding: 60px 0;
  background-color: #0d1137;
}

.page-industry-news-tech-outlook__article {
  background-color: #1A237E; /* Primary color for article background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news-tech-outlook__heading {
  font-size: 2.2em;
  color: #FFD700; /* Gold for main headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-industry-news-tech-outlook__sub-heading {
  font-size: 1.6em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-industry-news-tech-outlook__article p {
  margin-bottom: 15px;
  color: #e0e0e0; /* Light grey for paragraph text */
}

.page-industry-news-tech-outlook__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-tech-outlook__image-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.page-industry-news-tech-outlook__image-wrapper figcaption {
  color: #a0a0a0;
  font-style: italic;
  margin-top: 10px;
  font-size: 0.9em;
}

.page-industry-news-tech-outlook__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-industry-news-tech-outlook__list li {
  margin-bottom: 10px;
}

.page-industry-news-tech-outlook__inline-cta {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #FFD700;
  padding-bottom: 2px;
}

.page-industry-news-tech-outlook__inline-cta:hover {
  color: #e5c100;
  border-bottom-color: #e5c100;
}

.page-industry-news-tech-outlook__cta-block {
  background-color: #0d1137; /* Darker background for CTA block */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border: 1px solid #FFD700;
}

.page-industry-news-tech-outlook__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-industry-news-tech-outlook__floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.page-industry-news-tech-outlook__floating-cta-button {
  background-color: #FFD700; /* Gold for floating CTA */
  color: #1A237E; /* Dark blue for text on floating CTA */
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-tech-outlook__floating-cta-button:hover {
  background-color: #e5c100;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.6);
}

.page-industry-news-tech-outlook__floating-cta-icon {
  font-size: 1.5em;
  line-height: 1;
}

.page-industry-news-tech-outlook .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news-tech-outlook__hero-title {
    font-size: 2.5em;
  }
  .page-industry-news-tech-outlook__heading {
    font-size: 1.8em;
  }
  .page-industry-news-tech-outlook__sub-heading {
    font-size: 1.4em;
  }
  .page-industry-news-tech-outlook__article {
    padding: 30px;
  }
  .page-industry-news-tech-outlook__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-industry-news-tech-outlook__cta-block .page-industry-news-tech-outlook__cta-button {
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .page-industry-news-tech-outlook__hero-title {
    font-size: 2em;
  }
  .page-industry-news-tech-outlook__hero-subtitle {
    font-size: 1.1em;
  }
  .page-industry-news-tech-outlook__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news-tech-outlook__heading {
    font-size: 1.6em;
  }
  .page-industry-news-tech-outlook__sub-heading {
    font-size: 1.2em;
  }
  .page-industry-news-tech-outlook__article {
    padding: 20px;
  }
  .page-industry-news-tech-outlook__floating-cta {
    bottom: 20px;
    right: 20px;
  }
  .page-industry-news-tech-outlook__floating-cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-industry-news-tech-outlook__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-industry-news-tech-outlook__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news-tech-outlook__hero-subtitle {
    font-size: 1em;
  }
  .page-industry-news-tech-outlook__cta-button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .page-industry-news-tech-outlook__cta-button--secondary {
    margin-left: 0;
  }
  .page-industry-news-tech-outlook__heading {
    font-size: 1.4em;
  }
  .page-industry-news-tech-outlook__sub-heading {
    font-size: 1.1em;
  }
  .page-industry-news-tech-outlook__article {
    padding: 15px;
  }
  .page-industry-news-tech-outlook__floating-cta {
    bottom: 15px;
    right: 15px;
  }
  .page-industry-news-tech-outlook__floating-cta-button {
    padding: 10px 15px;
    font-size: 0.9em;
  }
  .page-industry-news-tech-outlook__cta-title {
    font-size: 1.8em;
  }
}