/* style/industry-news.css */
.page-industry-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-industry-news__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    filter: blur(50px);
}

.page-industry-news__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    filter: blur(40px);
}

.page-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-industry-news__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold accent for CTA */
  color: #0056b3; /* Darker blue for contrast */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__hero-cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-industry-news__main-content {
  padding: 60px 0;
}

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

.page-industry-news__article-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-industry-news__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-industry-news__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

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

.page-industry-news__article-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-industry-news__article-title a:hover {
  color: #0056b3;
}

.page-industry-news__article-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

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

.page-industry-news__read-more {
  display: inline-block;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-industry-news__read-more:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-industry-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-industry-news__featured-news {
  margin-bottom: 60px;
}

.page-industry-news__featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-industry-news__featured-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news__featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

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

.page-industry-news__featured-content {
  padding: 30px;
}

.page-industry-news__featured-content h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-industry-news__featured-content h3 a {
  color: #007BFF;
  text-decoration: none;
}

.page-industry-news__featured-content h3 a:hover {
  color: #0056b3;
}

.page-industry-news__featured-content p {
  color: #555;
  margin-bottom: 25px;
}

.page-industry-news__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-industry-news__button--primary {
  background-color: #007BFF;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-industry-news__button--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
}

.page-industry-news__button--secondary {
  background-color: #FFD700;
  color: #0056b3; /* Darker blue for contrast */
  border: 1px solid #FFD700;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-industry-news__button--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-industry-news__cta-section {
  margin-bottom: 60px;
}

.page-industry-news__cta-card {
  background: linear-gradient(100deg, #007BFF, #FFD700);
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-industry-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-industry-news__cta-description {
  font-size: 1.2em;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-industry-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-industry-news__more-articles {
  margin-bottom: 60px;
}

.page-industry-news__article-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-industry-news__article-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.page-industry-news__article-list li:hover {
  transform: translateX(5px);
}

.page-industry-news__article-list li a {
  color: #007BFF;
  text-decoration: none;
  font-size: 1.15em;
  font-weight: 500;
  display: block;
  transition: color 0.2s ease;
}

.page-industry-news__article-list li a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-industry-news__copyright {
  text-align: center;
  padding: 30px 20px;
  background-color: #2c3e50; /* Darker background for footer-like area */
  color: #ecf0f1;
  font-size: 0.9em;
  border-top: 1px solid #34495e;
}

.page-industry-news__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700; /* Gold accent */
    color: #0056b3; /* Darker blue for text */
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: page-industry-news__fadeInUp 0.5s ease-out;
    border: 2px solid #007BFF;
}

.page-industry-news__floating-promo-content h3 {
    margin: 0;
    font-size: 1.3em;
    color: #0056b3;
}

.page-industry-news__floating-promo-content p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #333;
}

.page-industry-news__floating-promo-button {
    background-color: #007BFF; /* Main blue for button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-industry-news__floating-promo-button:hover {
    background-color: #0056b3;
}

@keyframes page-industry-news__fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 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__article-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-industry-news__featured-item {
    flex-direction: column;
  }
  .page-industry-news__featured-image {
    height: 250px;
  }
  .page-industry-news__cta-title {
    font-size: 2.2em;
  }
  .page-industry-news__cta-description {
    font-size: 1.1em;
  }
  .page-industry-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-industry-news__button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-industry-news__hero {
    padding: 60px 0;
  }
  .page-industry-news__hero-title {
    font-size: 2em;
  }
  .page-industry-news__hero-description {
    font-size: 1em;
  }
  .page-industry-news__main-content {
    padding: 40px 0;
  }
  .page-industry-news__section-title {
    font-size: 2em;
  }
  .page-industry-news__cta-card {
    padding: 40px 20px;
  }
  .page-industry-news__cta-title {
    font-size: 1.8em;
  }
  .page-industry-news__floating-promo {
    flex-direction: column;
    align-items: flex-start;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 40px);
    text-align: center;
  }
  .page-industry-news__floating-promo-button {
      width: 100%;
      margin-top: 10px;
  }
}

@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-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news__article-content {
    padding: 15px;
  }
  .page-industry-news__article-title {
    font-size: 1.4em;
  }
  .page-industry-news__featured-content h3 {
    font-size: 1.5em;
  }
  .page-industry-news__cta-title {
    font-size: 1.5em;
  }
  .page-industry-news__cta-buttons {
    gap: 10px;
  }
}