/* style/news-market-analysis.css */
.page-news-market-analysis {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ tổng thể */
  background-color: #0A192F; /* Nền chính */
}

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

.page-news-market-analysis__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a6b 100%); /* Gradient từ màu chính */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Màu chữ nổi bật trên nền đậm */
}

.page-news-market-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-news-market-analysis__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-news-market-analysis__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Màu phụ đạo */
  color: #0A192F; /* Màu chữ tương phản */  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news-market-analysis__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-news-market-analysis__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-news-market-analysis__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-news-market-analysis__content-section {
  padding: 60px 0;
  background-color: #1a2a47; /* Nền cho phần nội dung */
}

.page-news-market-analysis__article {
  line-height: 1.8;
  color: #E0E0E0;
}

.page-news-market-analysis__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-news-market-analysis__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-news-market-analysis__article p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-news-market-analysis__article a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-market-analysis__article a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-news-market-analysis__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-news-market-analysis__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-news-market-analysis__list li {
  margin-bottom: 10px;
}

.page-news-market-analysis__cta-block {
  text-align: center;
  background-color: #0A192F;
  padding: 50px 30px;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-news-market-analysis__cta-block p {
  font-size: 1.6em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-news-market-analysis__hero-title {
    font-size: 2.5em;
  }

  .page-news-market-analysis__hero-subtitle {
    font-size: 1.2em;
  }

  .page-news-market-analysis__section-title {
    font-size: 2em;
  }

  .page-news-market-analysis__sub-section-title {
    font-size: 1.5em;
  }

  .page-news-market-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-news-market-analysis__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-news-market-analysis__cta-block p {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-news-market-analysis__hero-title {
    font-size: 2em;
  }

  .page-news-market-analysis__hero-subtitle {
    font-size: 1em;
  }

  .page-news-market-analysis__section-title {
    font-size: 1.8em;
  }

  .page-news-market-analysis__cta-button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  .page-news-market-analysis__cta-button--secondary {
    margin-left: 0;
  }
}