/* style/industry-news.css */
.page-industry-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light text for dark background */
  background-color: #1A2C42; /* Main dark background */
}

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

/* Hero Section */
.page-industry-news__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A2C42 0%, #30445C 100%);
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

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

.page-industry-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-industry-news__hero-title {
  font-size: 3.2em;
  color: #E0B147; /* Accent color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news__hero-description {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 30px;
}

.page-industry-news__hero-button {
  display: inline-block;
  background-color: #E0B147; /* Accent color for button */
  color: #1A2C42; /* Dark text for accent button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__hero-button:hover {
  background-color: #f5c45e; /* Lighter accent on hover */
  transform: translateY(-2px);
}

/* General Section Styling */
.page-industry-news__articles-overview,
.page-industry-news__latest-articles {
  padding: 60px 0;
  background-color: #1A2C42;
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #E0B147;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-industry-news__section-subtitle {
  font-size: 1.2em;
  color: #C0C0C0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Blocks */
.page-industry-news__content-block {
  background-color: #2A3E54; /* Slightly lighter dark background */
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-industry-news__content-block:nth-child(even) {
  background-color: #1A2C42;
}

.page-industry-news__content-block-title {
  font-size: 2em;
  color: #E0B147;
  margin-bottom: 20px;
}

.page-industry-news__content-block p {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 20px;
  max-width: 900px;
  text-align: justify;
}

.page-industry-news__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Article Grid */
.page-industry-news__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-industry-news__article-card {
  background-color: #2A3E54;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-industry-news__article-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  min-height: 70px; /* Ensure consistent height */
}

.page-industry-news__article-title a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news__article-title a:hover {
  color: #f5c45e;
  text-decoration: underline;
}

.page-industry-news__article-description {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-industry-news__read-more-button {
  display: inline-block;
  background-color: #E0B147;
  color: #1A2C42;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-industry-news__read-more-button:hover {
  background-color: #f5c45e;
  transform: translateY(-1px);
}

/* CTA Banner */
.page-industry-news__cta-banner {
  background: linear-gradient(45deg, #E0B147 0%, #C89F3B 100%);
  padding: 70px 20px;
  text-align: center;
  color: #1A2C42;
}

.page-industry-news__cta-content {
  max-width: 900px;
}

.page-industry-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1A2C42;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
}

.page-industry-news__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333;
}

.page-industry-news__cta-button {
  display: inline-block;
  background-color: #1A2C42;
  color: #E0B147;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__cta-button:hover {
  background-color: #30445C;
  color: #f5c45e;
  transform: translateY(-2px);
}

.page-industry-news__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #1A2C42;
  color: #1A2C42;
}

.page-industry-news__cta-button--secondary:hover {
  background-color: #1A2C42;
  color: #E0B147;
}

/* Floating Promotion */
.page-industry-news__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #E0B147;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  animation: page-industry-news__pulse 2s infinite;
}

.page-industry-news__floating-promo-link {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  color: #1A2C42;
  font-weight: bold;
  font-size: 1em;
}

.page-industry-news__floating-promo-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

@keyframes page-industry-news__pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news__hero-title {
    font-size: 2.5em;
  }
  .page-industry-news__hero-description {
    font-size: 1.1em;
  }
  .page-industry-news__section-title {
    font-size: 2em;
  }
  .page-industry-news__cta-title {
    font-size: 2.2em;
  }
  .page-industry-news__cta-button {
    margin: 10px 5px;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .page-industry-news__hero {
    padding: 60px 15px;
  }
  .page-industry-news__hero-title {
    font-size: 2em;
  }
  .page-industry-news__hero-description {
    font-size: 1em;
  }
  .page-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-industry-news__section-subtitle {
    font-size: 1em;
  }
  .page-industry-news__content-block {
    padding: 30px;
  }
  .page-industry-news__content-block-title {
    font-size: 1.7em;
  }
  .page-industry-news__content-block p {
    font-size: 0.95em;
  }
  .page-industry-news__article-title {
    font-size: 1.3em;
  }
  .page-industry-news__cta-banner {
    padding: 50px 15px;
  }
  .page-industry-news__cta-title {
    font-size: 1.8em;
  }
  .page-industry-news__cta-description {
    font-size: 1em;
  }
  .page-industry-news__cta-button {
    display: block;
    width: fit-content;
    margin: 15px auto;
  }
  .page-industry-news__floating-promo {
    bottom: 15px;
    right: 15px;
  }
  .page-industry-news__floating-promo-link {
    padding: 8px 15px;
    font-size: 0.9em;
  }
  .page-industry-news__floating-promo-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .page-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news__hero-description {
    font-size: 0.9em;
  }
  .page-industry-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news__section-title {
    font-size: 1.5em;
  }
  .page-industry-news__content-block-title {
    font-size: 1.5em;
  }
  .page-industry-news__article-grid {
    grid-template-columns: 1fr;
  }
  .page-industry-news__article-card {
    padding: 20px;
  }
  .page-industry-news__article-title {
    font-size: 1.2em;
  }
  .page-industry-news__cta-title {
    font-size: 1.5em;
  }
}