.page-news-industry-trends {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on body background from shared.css */
}

.page-news-industry-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-news-industry-trends__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  text-align: center;
  overflow: hidden;
}

.page-news-industry-trends__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-news-industry-trends__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-news-industry-trends__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-news-industry-trends__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-news-industry-trends__lead-text {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news-industry-trends__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-news-industry-trends__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-news-industry-trends__btn-primary:hover {
  background-color: #1e87c0;
  transform: translateY(-2px);
}

.page-news-industry-trends__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-news-industry-trends__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-news-industry-trends__cta-buttons-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-news-industry-trends__inline-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
}

.page-news-industry-trends__inline-link:hover {
  color: #1e87c0;
}

/* General Section Styles */
.page-news-industry-trends__section {
  padding: 60px 0;
}

.page-news-industry-trends__introduction {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-news-industry-trends__tech-trends {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-news-industry-trends__player-behavior {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-news-industry-trends__opportunities-challenges {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-news-industry-trends__pkwin-future {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-news-industry-trends__conclusion {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-news-industry-trends__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-news-industry-trends__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-news-industry-trends__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-industry-trends__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-news-industry-trends__feature-card:hover {
  transform: translateY(-5px);
}

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

.page-news-industry-trends__feature-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-news-industry-trends__feature-description {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-news-industry-trends__article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-industry-trends__article-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-news-industry-trends__article-card:hover {
  transform: translateY(-5px);
}

.page-news-industry-trends__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-news-industry-trends__article-content {
  padding: 20px;
  flex-grow: 1;
  color: #ffffff;
}

.page-news-industry-trends__article-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-news-industry-trends__article-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-news-industry-trends__article-title a:hover {
  text-decoration: underline;
}

.page-news-industry-trends__article-excerpt {
  font-size: 0.95rem;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-news-industry-trends__article-date {
  font-size: 0.85rem;
  color: #aaaaaa;
}

.page-news-industry-trends__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-industry-trends__grid-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-news-industry-trends__grid-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-news-industry-trends__grid-description {
  font-size: 1rem;
  color: #f0f0f0;
}

/* FAQ Section */
.page-news-industry-trends__faq-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-news-industry-trends__faq-list {
  margin-top: 40px;
}

.page-news-industry-trends__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-news-industry-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  color: #26A9E0;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-news-industry-trends__faq-item[open] .page-news-industry-trends__faq-question {
  border-bottom: none;
}

.page-news-industry-trends__faq-qtext {
  flex-grow: 1;
}

.page-news-industry-trends__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-news-industry-trends__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #f0f0f0;
}

/* Hide default details marker */
.page-news-industry-trends__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-news-industry-trends__faq-item summary {
  list-style: none;
}

.text-highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-trends__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-news-industry-trends__lead-text {
    font-size: 1.1rem;
  }

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

  .page-news-industry-trends__feature-title,
  .page-news-industry-trends__grid-title {
    font-size: 1.5rem;
  }

  .page-news-industry-trends__article-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news-industry-trends__hero-section {
    min-height: 400px;
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-news-industry-trends__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-news-industry-trends__lead-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-news-industry-trends__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 10px;
    padding: 12px 20px;
  }

  .page-news-industry-trends__cta-buttons-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .page-news-industry-trends__section {
    padding: 40px 0;
  }

  .page-news-industry-trends__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-news-industry-trends__paragraph {
    font-size: 1rem;
  }

  .page-news-industry-trends__feature-grid,
  .page-news-industry-trends__article-list,
  .page-news-industry-trends__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news-industry-trends__feature-card,
  .page-news-industry-trends__article-card,
  .page-news-industry-trends__grid-item {
    padding: 20px;
  }

  .page-news-industry-trends__feature-image,
  .page-news-industry-trends__article-image {
    height: 200px;
  }

  .page-news-industry-trends__feature-title,
  .page-news-industry-trends__grid-title {
    font-size: 1.3rem;
  }

  .page-news-industry-trends__article-title {
    font-size: 1.2rem;
  }

  .page-news-industry-trends__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-news-industry-trends__faq-answer {
    padding: 0 15px 15px;
  }

  /* Mobile image specific rules */
  .page-news-industry-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news-industry-trends__section,
  .page-news-industry-trends__card,
  .page-news-industry-trends__container,
  .page-news-industry-trends__hero-section,
  .page-news-industry-trends__hero-image-wrapper,
  .page-news-industry-trends__hero-content,
  .page-news-industry-trends__feature-card,
  .page-news-industry-trends__article-card,
  .page-news-industry-trends__grid-item,
  .page-news-industry-trends__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-news-industry-trends__hero-content {
    padding-left: 0;
    padding-right: 0;
  }

  .page-news-industry-trends__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-news-industry-trends__faq-section .page-news-industry-trends__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-news-industry-trends__faq-item {
    padding-left: 0;
    padding-right: 0;
  }

  .page-news-industry-trends__faq-question {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-industry-trends__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-industry-trends__cta-buttons-bottom .page-news-industry-trends__cta-button {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-news-industry-trends__feature-grid,
  .page-news-industry-trends__article-list,
  .page-news-industry-trends__grid {
    padding-left: 0;
    padding-right: 0;
  }
}