.page-industry-news-trends {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for first section */
}

.page-industry-news-trends__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-trends__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for aesthetic */
  overflow: hidden;
  margin-bottom: 20px;
}

.page-industry-news-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-industry-news-trends__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-industry-news-trends__main-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #FF8C1A, #FFA53A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

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

.page-industry-news-trends__hero-cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-industry-news-trends__hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-industry-news-trends__latest-news-section,
.page-industry-news-trends__trend-analysis-section,
.page-industry-news-trends__cta-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-industry-news-trends__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #FF8C1A;
}

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

.page-industry-news-trends__news-card,
.page-industry-news-trends__trend-card {
  background-color: #17191F;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  border: 1px solid #A84F0C;
}

.page-industry-news-trends__news-card-image,
.page-industry-news-trends__trend-card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-industry-news-trends__news-card-content,
.page-industry-news-trends__trend-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-industry-news-trends__news-card-title,
.page-industry-news-trends__trend-card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-industry-news-trends__news-card-title a,
.page-industry-news-trends__trend-card-title a {
  color: #FFA53A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news-trends__news-card-title a:hover,
.page-industry-news-trends__trend-card-title a:hover {
  color: #FFB04D;
}

.page-industry-news-trends__news-card-date {
  font-size: 0.9em;
  color: #FF8C1A;
  margin-bottom: 10px;
}

.page-industry-news-trends__news-card-excerpt,
.page-industry-news-trends__trend-card-excerpt {
  font-size: 1em;
  color: #FFF3E6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-industry-news-trends__news-card-link,
.page-industry-news-trends__trend-card-link {
  display: inline-block;
  color: #FF8C1A;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Pushes link to bottom */
}

.page-industry-news-trends__news-card-link:hover,
.page-industry-news-trends__trend-card-link:hover {
  color: #FFB04D;
}

.page-industry-news-trends__view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-industry-news-trends__view-all-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  padding: 12px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-industry-news-trends__view-all-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-industry-news-trends__cta-section {
  background-color: #17191F;
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border: 1px solid #A84F0C;
}

.page-industry-news-trends__cta-title {
  font-size: 2.2em;
  color: #FFA53A;
  margin-bottom: 15px;
}

.page-industry-news-trends__cta-description {
  font-size: 1.1em;
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-trends__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  padding: 15px 45px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.5);
}

.page-industry-news-trends__cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 140, 26, 0.7);
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-industry-news-trends__hero-section {
    padding-bottom: 30px;
  }
  .page-industry-news-trends__hero-image-wrapper {
    max-height: 400px;
  }
  .page-industry-news-trends__hero-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
  }
  .page-industry-news-trends__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-industry-news-trends__section-title {
    font-size: 2em;
  }
  .page-industry-news-trends__news-grid,
  .page-industry-news-trends__trend-grid {
    grid-template-columns: 1fr;
  }
  .page-industry-news-trends__news-card-image,
  .page-industry-news-trends__trend-card-image {
    height: 200px; /* Adjust height for smaller screens */
  }
  .page-industry-news-trends__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 549px) {
  .page-industry-news-trends__hero-image-wrapper {
    max-height: 300px;
  }
  .page-industry-news-trends__hero-content {
    padding: 0 15px;
  }
  .page-industry-news-trends__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-industry-news-trends__hero-description {
    font-size: 1em;
  }
  .page-industry-news-trends__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-trends__news-card-title,
  .page-industry-news-trends__trend-card-title {
    font-size: 1.2em;
  }
  .page-industry-news-trends__news-card-excerpt,
  .page-industry-news-trends__trend-card-excerpt {
    font-size: 0.9em;
  }
  .page-industry-news-trends__cta-title {
    font-size: 1.6em;
  }
  .page-industry-news-trends__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
}

/* Ensure all images within content sections are responsive and meet min size */
.page-industry-news-trends__latest-news-section img,
.page-industry-news-trends__trend-analysis-section img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-industry-news-trends__latest-news-section img,
  .page-industry-news-trends__trend-analysis-section img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-industry-news-trends {
    overflow-x: hidden;
  }
}