.page-news-industry-news {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-news-industry-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #ffffff;
  padding-top: var(--header-offset, 120px);
}

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

.page-news-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #ffffff;
}

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

.page-news-industry-news__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #8B0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-news-industry-news__cta-button:hover {
  background: #FFD700;
  border-color: #8B0000;
  color: #8B0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-news-industry-news__cta-button--inverted {
  background: #FFD700;
  color: #8B0000;
  border-color: #8B0000;
}

.page-news-industry-news__cta-button--inverted:hover {
  background: #8B0000;
  color: #ffffff;
  border-color: #FFD700;
}

.page-news-industry-news__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #333333;
  font-weight: bold;
}

.page-news-industry-news__section-title--light {
  color: #ffffff;
}

.page-news-industry-news__latest-news-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-news-industry-news__news-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-news-industry-news__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news-industry-news__card-title {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-news-industry-news__card-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-industry-news__card-title a:hover {
  color: #8B0000;
}

.page-news-industry-news__card-excerpt {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news-industry-news__card-date {
  font-size: 0.85em;
  color: #999999;
  margin-bottom: 15px;
}

.page-news-industry-news__read-more {
  display: inline-block;
  margin-top: auto;
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-industry-news__read-more:hover {
  color: #FFD700;
}

.page-news-industry-news__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

.page-news-industry-news__category-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-news-industry-news__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-news-industry-news__category-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 20px;
  text-decoration: none;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news-industry-news__category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.page-news-industry-news__category-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-news-industry-news__category-title {
  font-size: 1.2em;
  margin: 0;
  font-weight: bold;
  color: #8B0000;
}

.page-news-industry-news__featured-article-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #8B0000, #FFD700);
  color: #ffffff;
}

.page-news-industry-news__dark-bg {
  color: #ffffff;
  background: #8B0000;
}

.page-news-industry-news__featured-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-news-industry-news__featured-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-news-industry-news__featured-text {
  width: 50%;
}

.page-news-industry-news__featured-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-news-industry-news__newsletter-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-news-industry-news__newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-news-industry-news__newsletter-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #666666;
}

.page-news-industry-news__newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.page-news-industry-news__newsletter-input {
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  flex-grow: 1;
  max-width: 400px;
  font-size: 1em;
  box-sizing: border-box;
}

.page-news-industry-news__newsletter-input::placeholder {
  color: #aaaaaa;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-news__hero-title {
    font-size: 2.8em;
  }
  .page-news-industry-news__hero-description {
    font-size: 1.15em;
  }
  .page-news-industry-news__section-title {
    font-size: 2em;
  }
  .page-news-industry-news__featured-content {
    flex-direction: column;
    align-items: center;
  }
  .page-news-industry-news__featured-image,
  .page-news-industry-news__featured-text {
    width: 100%;
  }
  .page-news-industry-news__featured-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-news-industry-news__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-industry-news__hero-title {
    font-size: 2.2em;
  }
  .page-news-industry-news__hero-description {
    font-size: 1em;
  }
  .page-news-industry-news__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news-industry-news__latest-news-section,
  .page-news-industry-news__category-section,
  .page-news-industry-news__featured-article-section,
  .page-news-industry-news__newsletter-section {
    padding: 40px 0;
  }
  .page-news-industry-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news-industry-news__news-grid,
  .page-news-industry-news__category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news-industry-news__news-image {
    height: 180px;
  }
  .page-news-industry-news__card-content {
    padding: 20px;
  }
  .page-news-industry-news__card-title {
    font-size: 1.2em;
  }
  .page-news-industry-news__category-image {
    max-width: 100px;
  }
  .page-news-industry-news__category-title {
    font-size: 1.1em;
  }
  .page-news-industry-news__featured-text p {
    font-size: 1em;
  }
  .page-news-industry-news__newsletter-form {
    flex-direction: column;
    padding: 0 15px;
  }
  .page-news-industry-news__newsletter-input {
    max-width: 100%;
    width: 100% !important;
  }
  .page-news-industry-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news-industry-news__section,
  .page-news-industry-news__card,
  .page-news-industry-news__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-news-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-news-industry-news__hero-description {
    font-size: 0.9em;
  }
  .page-news-industry-news__section-title {
    font-size: 1.5em;
  }
  .page-news-industry-news__news-image {
    height: 150px;
  }
  .page-news-industry-news__card-title {
    font-size: 1.1em;
  }
  .page-news-industry-news__newsletter-input,
  .page-news-industry-news__cta-button {
    padding: 10px 15px;
  }
}