.page-industry-news-global {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ sáng cho nền tối */
  background-color: #0A2463; /* Nền chính màu xanh đậm */
  line-height: 1.6;
}

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

.page-industry-news-global__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #0A2463 70%, #E3B23C 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-industry-news-global__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:hero:global_betting_news,TA88,tech_background,abstract_lines]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-industry-news-global__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B23C; /* Tiêu đề chính màu vàng */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-global__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}

.page-industry-news-global__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 1;
}

.page-industry-news-global__button--primary {
  background-color: #E3B23C; /* Nút chính màu vàng */
  color: #0A2463;
}

.page-industry-news-global__button--primary:hover {
  background-color: #F0C969;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(227, 178, 60, 0.4);
}

.page-industry-news-global__button--secondary {
  background-color: transparent;
  color: #E3B23C;
  border: 2px solid #E3B23C;
  margin-left: 20px;
}

.page-industry-news-global__button--secondary:hover {
  background-color: #E3B23C;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(227, 178, 60, 0.4);
}

.page-industry-news-global__section-title {
  font-size: 2.5em;
  color: #E3B23C; /* Tiêu đề phụ màu vàng */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  position: relative;
}

.page-industry-news-global__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E3B23C;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-industry-news-global__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #B0B0B0;
}

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

.page-industry-news-global__news-card {
  background-color: #1A3E7C; /* Nền thẻ tin tức */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-industry-news-global__news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid #E3B23C;
}

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

.page-industry-news-global__news-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #E3B23C;
}

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

.page-industry-news-global__news-title a:hover {
  color: #F0C969;
  text-decoration: underline;
}

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

.page-industry-news-global__link-inline {
  color: #E3B23C;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-industry-news-global__link-inline:hover {
  color: #F0C969;
  text-decoration: underline;
}

.page-industry-news-global__cta-section {
  background-color: #1A3E7C;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 60px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news-global__cta-section--inline {
  background-color: #0A2463;
  border: 1px solid #E3B23C;
  padding: 30px;
}

.page-industry-news-global__cta-section--full-width {
  background: linear-gradient(90deg, #0A2463, #1A3E7C);
  padding: 80px 20px;
  margin: 80px 0;
  border-radius: 0;
}

.page-industry-news-global__cta-title {
  font-size: 2.2em;
  color: #E3B23C;
  margin-bottom: 20px;
}

.page-industry-news-global__cta-description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-industry-news-global__cta-buttons .page-industry-news-global__button {
  margin: 0 10px;
}

.page-industry-news-global__featured-news-section {
  padding: 60px 0;
}

.page-industry-news-global__featured-article {
  display: flex;
  background-color: #1A3E7C;
  border-radius: 12px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-global__featured-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-industry-news-global__featured-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-right: 4px solid #E3B23C;
}

.page-industry-news-global__featured-content {
  padding: 30px;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-industry-news-global__featured-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #E3B23C;
}

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

.page-industry-news-global__featured-title a:hover {
  color: #F0C969;
  text-decoration: underline;
}

.page-industry-news-global__featured-excerpt {
  font-size: 1em;
  color: #B0B0B0;
}

.page-industry-news-global__expert-insights-section {
  padding: 60px 0;
}

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

.page-industry-news-global__insight-card {
  background-color: #1A3E7C;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-industry-news-global__insight-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 3px solid #E3B23C;
}

.page-industry-news-global__insight-title {
  font-size: 1.5em;
  color: #E3B23C;
  margin-bottom: 10px;
}

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

.page-industry-news-global__insight-title a:hover {
  color: #F0C969;
  text-decoration: underline;
}

.page-industry-news-global__insight-excerpt {
  font-size: 0.95em;
  color: #B0B0B0;
}

.page-industry-news-global__more-info-section {
  padding: 60px 0 80px;
  background-color: #0A2463;
}

.page-industry-news-global__info-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-industry-news-global__info-list li {
  background-color: #1A3E7C;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.page-industry-news-global__info-list li:hover {
  transform: translateY(-5px);
}

.page-industry-news-global__info-list li a {
  color: #E3B23C;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: block;
}

.page-industry-news-global__info-list li a:hover {
  color: #F0C969;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .page-industry-news-global__hero-title {
    font-size: 2.8em;
  }
  .page-industry-news-global__section-title {
    font-size: 2em;
  }
  .page-industry-news-global__featured-article {
    flex-direction: column;
  }
  .page-industry-news-global__featured-image,
  .page-industry-news-global__featured-content {
    width: 100%;
    border: none;
  }
  .page-industry-news-global__featured-image {
    height: 250px;
    border-bottom: 4px solid #E3B23C;
  }
  .page-industry-news-global__cta-buttons .page-industry-news-global__button {
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-industry-news-global__hero-section {
    padding: 80px 0;
  }
  .page-industry-news-global__hero-title {
    font-size: 2.2em;
  }
  .page-industry-news-global__hero-description {
    font-size: 1em;
  }
  .page-industry-news-global__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news-global__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-global__section-description {
    font-size: 0.95em;
  }
  .page-industry-news-global__news-grid {
    grid-template-columns: 1fr;
  }
  .page-industry-news-global__cta-title {
    font-size: 1.8em;
  }
  .page-industry-news-global__insights-grid {
    grid-template-columns: 1fr;
  }
}