/* style/industry-insights.css */
.page-industry-insights {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #1A2634; /* Slightly lighter than main dark blue for sections */
}

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

.page-industry-insights__hero {
  background: linear-gradient(135deg, #2D3E50, #1A2634);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-industry-insights__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-industry-insights__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F39C12; /* Accent color for main title */
  line-height: 1.2;
}

.page-industry-insights__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

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

.page-industry-insights__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-industry-insights__section {
  padding: 80px 0;
  background-color: #1A2634;
}

.page-industry-insights__section:nth-of-type(even) {
  background-color: #2D3E50;
}

.page-industry-insights__section-title {
  font-size: 2.8em;
  color: #F39C12;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-industry-insights__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #B0B0B0;
}

.page-industry-insights__article {
  display: flex;
  flex-direction: column;
  background-color: #2D3E50;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-insights__article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-industry-insights__article-title {
  font-size: 2em;
  color: #F39C12;
  padding: 30px 40px 20px 40px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(243, 156, 18, 0.2);
}

.page-industry-insights__article-body {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-industry-insights__article-body p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 0;
}

.page-industry-insights__article-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-industry-insights__cta-section {
  background: linear-gradient(45deg, #F39C12, #E67E22);
  padding: 80px 0;
  text-align: center;
  color: #2D3E50;
}

.page-industry-insights__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #2D3E50;
}

.page-industry-insights__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #34495E;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-insights__cta-button {
  display: inline-block;
  background-color: #2D3E50;
  color: #FFFFFF;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
  border: 2px solid #2D3E50;
}

.page-industry-insights__cta-button:hover {
  background-color: #1A2634;
  transform: translateY(-3px);
}

.page-industry-insights__cta-button--secondary {
  background-color: transparent;
  color: #2D3E50;
  border-color: #2D3E50;
}

.page-industry-insights__cta-button--secondary:hover {
  background-color: #2D3E50;
  color: #FFFFFF;
}

.page-industry-insights__inline-cta {
  display: inline-block;
  background-color: #F39C12;
  color: #2D3E50;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 15px;
  align-self: flex-start;
}

.page-industry-insights__inline-cta:hover {
  background-color: #E67E22;
  transform: translateY(-2px);
}

/* Floating Ad Menu */
.page-industry-insights__floating-ad-menu {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.page-industry-insights__floating-ad-item {
  background-color: #F39C12; /* Accent color */
  color: #2D3E50; /* Dark text for contrast */
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-weight: bold;
  font-size: 0.95em;
}

.page-industry-insights__floating-ad-item:hover {
  transform: translateX(-5px);
  background-color: #E67E22;
}

.page-industry-insights__floating-ad-item img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-industry-insights__article {
    flex-direction: row;
  }
  .page-industry-insights__article:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-industry-insights__article-body {
    flex: 1;
  }
  .page-industry-insights__article-image {
    flex: 1;
    height: auto;
    max-height: 400px;
    border-radius: 0;
  }
  .page-industry-insights__article:nth-child(odd) .page-industry-insights__article-image {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .page-industry-insights__article:nth-child(even) .page-industry-insights__article-image {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .page-industry-insights__article-title {
    padding: 40px 40px 20px 40px;
  }
  .page-industry-insights__article-body {
    padding: 40px;
  }
  .page-industry-insights__inline-cta {
    align-self: flex-start;
  }
}

@media (max-width: 767px) {
  .page-industry-insights__title {
    font-size: 2.5em;
  }
  .page-industry-insights__subtitle {
    font-size: 1.2em;
  }
  .page-industry-insights__section-title {
    font-size: 2em;
  }
  .page-industry-insights__article-title {
    font-size: 1.5em;
    padding: 20px;
  }
  .page-industry-insights__article-body {
    padding: 20px;
  }
  .page-industry-insights__article-image {
    height: 200px;
  }
  .page-industry-insights__cta-title {
    font-size: 2.2em;
  }
  .page-industry-insights__cta-text {
    font-size: 1em;
  }
  .page-industry-insights__cta-button {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-industry-insights__floating-ad-menu {
    right: 10px;
    bottom: 10px;
    gap: 10px;
  }
  .page-industry-insights__floating-ad-item {
    padding: 8px 12px;
    font-size: 0.85em;
  }
  .page-industry-insights__floating-ad-item img {
    width: 24px;
    height: 24px;
  }
}