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

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

.page-tin-tc-industry-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #3A0CA3, #6A0DAD);
  color: #ffffff;
  overflow: hidden;
}

.page-tin-tc-industry-news__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-tin-tc-industry-news__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-tin-tc-industry-news__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-tin-tc-industry-news__hero-content h1 {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tin-tc-industry-news__hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-tin-tc-industry-news__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #3A0CA3;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-tin-tc-industry-news__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-tin-tc-industry-news__cta-button--secondary {
  background: #3A0CA3;
  color: #ffffff;
  border: 1px solid #FFD700;
  margin-left: 15px;
}

.page-tin-tc-industry-news__cta-button--secondary:hover {
  background: #4a1bbd;
  border-color: #e6c200;
}

.page-tin-tc-industry-news__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-tin-tc-industry-news__section:last-of-type {
  border-bottom: none;
}

.page-tin-tc-industry-news__section h2 {
  font-size: 2.2em;
  color: #3A0CA3;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-tin-tc-industry-news__section h3 {
  font-size: 1.6em;
  color: #3A0CA3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-tin-tc-industry-news__section p {
  margin-bottom: 15px;
  color: #555555;
}

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

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

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

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

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

.page-tin-tc-industry-news__news-content h3 {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-tin-tc-industry-news__news-link {
  color: #3A0CA3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc-industry-news__news-link:hover {
  color: #FFD700;
}

.page-tin-tc-industry-news__news-content p {
  font-size: 0.95em;
  color: #666666;
  flex-grow: 1;
}

.page-tin-tc-industry-news__news-date {
  font-size: 0.85em;
  color: #999999;
  margin-top: 10px;
  margin-bottom: 15px;
  display: block;
}

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

.page-tin-tc-industry-news__read-more:hover {
  color: #3A0CA3;
}

.page-tin-tc-industry-news__article-detail {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #f0f0f0;
}

.page-tin-tc-industry-news__article-detail:last-of-type {
  margin-bottom: 0;
}

.page-tin-tc-industry-news__article-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-tin-tc-industry-news__promotions ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-tin-tc-industry-news__promotions ul li {
  background: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-tin-tc-industry-news__promotions ul li strong {
  color: #3A0CA3;
}

.page-tin-tc-industry-news__button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tc-industry-news__hero-content h1 {
    font-size: 2.2em;
  }
  .page-tin-tc-industry-news__section h2 {
    font-size: 1.8em;
  }
  .page-tin-tc-industry-news__section h3 {
    font-size: 1.4em;
  }
  .page-tin-tc-industry-news__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-tin-tc-industry-news__hero-section {
    padding: 40px 15px;
  }
  .page-tin-tc-industry-news__hero-image {
    margin-bottom: 20px;
  }
  .page-tin-tc-industry-news__hero-content h1 {
    font-size: 1.8em;
  }
  .page-tin-tc-industry-news__hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-tin-tc-industry-news__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-tin-tc-industry-news__section {
    padding: 40px 0;
  }
  .page-tin-tc-industry-news__section h2 {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-tin-tc-industry-news__news-image {
    height: 180px;
  }
  .page-tin-tc-industry-news__news-content {
    padding: 20px;
  }
  .page-tin-tc-industry-news__news-content h3 {
    font-size: 1.2em;
  }
  .page-tin-tc-industry-news__article-detail {
    padding: 20px;
  }
  .page-tin-tc-industry-news__button-group {
    flex-direction: column;
    gap: 10px;
  }
  .page-tin-tc-industry-news__cta-button--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-tin-tc-industry-news__hero-content h1 {
    font-size: 1.5em;
  }
  .page-tin-tc-industry-news__hero-content p {
    font-size: 0.9em;
  }
  .page-tin-tc-industry-news__cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-tin-tc-industry-news__section h2 {
    font-size: 1.4em;
  }
  .page-tin-tc-industry-news__section h3 {
    font-size: 1.1em;
  }
  .page-tin-tc-industry-news__news-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tc-industry-news__news-content h3 {
    font-size: 1.1em;
  }
}