:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000000; /* Black */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0d0d0d; /* Assuming --dark-bg-1 is a very dark color */
  --bg-light: #f9f9f9;
  --border-color: #333; /* Darker border for dark theme */
  --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark bg */
  --card-bg-light: #ffffff;
}

.page-news-industry-trends {
  background-color: var(--bg-dark); /* Ensure consistency if body bg is dark */
  color: var(--text-light); /* Light text on dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-news-industry-trends a {
  color: var(--primary-color); /* Gold links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-industry-trends a:hover {
  color: #fff; /* White on hover */
}

/* --- Video Section --- */
.page-news-industry-trends__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed header */
  background: var(--bg-dark);
}

.page-news-industry-trends__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news-industry-trends__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-industry-trends__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-news-industry-trends__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevents video controls from blocking click event */
}

.page-news-industry-trends__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-news-industry-trends__video-link:hover .page-news-industry-trends__video-overlay {
  opacity: 1;
}

.page-news-industry-trends__video-click-hint {
  color: var(--text-light);
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.8); /* Gold semi-transparent */
  border-radius: 5px;
  white-space: nowrap;
}

.page-news-industry-trends__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-news-industry-trends__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color); /* Black text on gold button for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
}

.page-news-industry-trends__play-now-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.page-news-industry-trends__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* --- Title Section --- */
.page-news-industry-trends__title-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%); /* Dark gradient */
  color: var(--text-light);
}

.page-news-industry-trends__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-news-industry-trends__main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color); /* Gold title */
  line-height: 1.2;
}

.page-news-industry-trends__title-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-trends__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-news-industry-trends__cta-button {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary-color);
  color: var(--secondary-color); /* Black text on gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 17px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-industry-trends__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* --- Blog Section --- */
.page-news-industry-trends__blog-section {
  padding: 80px 20px;
  background: var(--bg-dark);
  color: var(--text-light);
}

.page-news-industry-trends__blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-news-industry-trends__blog-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color); /* Gold title */
}

.page-news-industry-trends__blog-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: #ccc;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-trends__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-news-industry-trends__blog-item {
  background: var(--card-bg-dark); /* Slightly transparent white on dark bg */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; /* Ensure content fills height */
  flex-direction: column;
}

.page-news-industry-trends__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-news-industry-trends__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex-grow: 1; /* Allow link to take full height */
  padding-bottom: 20px; /* Adjust padding for better look */
}