.page-resources-vip79-industry-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-resources-vip79-industry-news__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-resources-vip79-industry-news__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff; /* Ensure high contrast */
}

.page-resources-vip79-industry-news__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9); /* Slightly lighter for contrast */
}

.page-resources-vip79-industry-news__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
}

.page-resources-vip79-industry-news__button--primary {
  background-color: #ff8400; /* Complementary color for emphasis */
  color: #fff;
  border: 2px solid #ff8400;
}

.page-resources-vip79-industry-news__button--primary:hover {
  background-color: #e67500;
  border-color: #e67500;
}

.page-resources-vip79-industry-news__button--secondary {
  background-color: #28a745; /* Auxiliary color */
  color: #fff;
  border: 2px solid #28a745;
}

.page-resources-vip79-industry-news__button--secondary:hover {
  background-color: #1e7e34;
  border-color: #1e7e34;
}

.page-resources-vip79-industry-news__button--outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-resources-vip79-industry-news__button--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.page-resources-vip79-industry-news__section {
  padding: 60px 0;
}

.page-resources-vip79-industry-news__section--dark {
  background-color: #e9ecef;
}

.page-resources-vip79-industry-news__section--dark-alt {
  background-color: #f1f3f5;
}

.page-resources-vip79-industry-news__section-title {
  font-size: 2em;
  margin-bottom: 30px;
  color: #007bff; /* Main brand color */
  text-align: center;
  font-weight: bold;
}

.page-resources-vip79-industry-news__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #495057;
}

.page-resources-vip79-industry-news__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
  color: #495057;
}

.page-resources-vip79-industry-news__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-vip79-industry-news__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-vip79-industry-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-vip79-industry-news__grid-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-vip79-industry-news__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-vip79-industry-news__grid-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-resources-vip79-industry-news__grid-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-vip79-industry-news__title {
    font-size: 2.2em;
  }

  .page-resources-vip79-industry-news__subtitle {
    font-size: 1.1em;
  }

  .page-resources-vip79-industry-news__section-title {
    font-size: 1.8em;
  }

  .page-resources-vip79-industry-news__button {
    padding: 12px 25px;
    margin: 8px;
  }

  .page-resources-vip79-industry-news__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-vip79-industry-news__title {
    font-size: 1.8em;
  }

  .page-resources-vip79-industry-news__subtitle {
    font-size: 1em;
  }

  .page-resources-vip79-industry-news__section-title {
    font-size: 1.5em;
  }

  .page-resources-vip79-industry-news__button {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  .page-resources-vip79-industry-news__hero {
    padding: 60px 0;
  }
  .page-resources-vip79-industry-news__section {
    padding: 40px 0;
  }
}