/* style/news-platform-updates.css */
.page-news-platform-updates {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0; /* Màu chữ sáng trên nền tối */
  background-color: #0A192F; /* Nền chính */
  line-height: 1.6;
}

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

.page-news-platform-updates__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #2a3d5f 100%); /* Gradient từ màu chính */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Màu vàng cho tiêu đề chính */
}

.page-news-platform-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFD700;
}

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

.page-news-platform-updates__hero-button,
.page-news-platform-updates__cta-button,
.page-news-platform-updates__inline-button {
  display: inline-block;
  background-color: #FFD700; /* Màu vàng làm điểm nhấn cho nút */
  color: #0A192F; /* Màu chữ tối trên nền vàng */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news-platform-updates__hero-button:hover,
.page-news-platform-updates__cta-button:hover,
.page-news-platform-updates__inline-button:hover {
  background-color: #e6c200; /* Vàng đậm hơn khi hover */
  transform: translateY(-3px);
}

.page-news-platform-updates__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Màu vàng cho các tiêu đề phần */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: 700;
}

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

.page-news-platform-updates__updates-overview,
.page-news-platform-updates__deep-dive,
.page-news-platform-updates__future-outlook {
  padding: 80px 0;
  background-color: #12243d; /* Nền tối hơn một chút */
}

.page-news-platform-updates__deep-dive {
  background-color: #0A192F;
}

.page-news-platform-updates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-news-platform-updates__grid-item {
  background-color: #1a2f4a; /* Nền cho các item trong grid */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-platform-updates__grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-news-platform-updates__grid-image {
  max-width: 100%;
  height: 200px; /* Chiều cao cố định cho hình ảnh */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-news-platform-updates__item-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-news-platform-updates__item-text {
  font-size: 1em;
  color: #C0C0C0;
}

.page-news-platform-updates__article {
  background-color: #1a2f4a;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-news-platform-updates__article-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: left;
}

.page-news-platform-updates__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 2px solid #FFD700;
}

.page-news-platform-updates__article-text {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-news-platform-updates__cta-button {
  margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-news-platform-updates__hero-title {
    font-size: 2.8em;
  }
  .page-news-platform-updates__hero-subtitle {
    font-size: 1.2em;
  }
  .page-news-platform-updates__section-title {
    font-size: 2.2em;
  }
  .page-news-platform-updates__article-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-news-platform-updates__hero-section {
    padding: 80px 0;
  }
  .page-news-platform-updates__hero-title {
    font-size: 2.2em;
  }
  .page-news-platform-updates__hero-subtitle {
    font-size: 1em;
  }
  .page-news-platform-updates__hero-button,
  .page-news-platform-updates__cta-button,
  .page-news-platform-updates__inline-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news-platform-updates__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news-platform-updates__section-description {
    font-size: 0.95em;
  }
  .page-news-platform-updates__grid {
    grid-template-columns: 1fr;
  }
  .page-news-platform-updates__grid-image {
    height: 180px;
  }
  .page-news-platform-updates__item-title {
    font-size: 1.5em;
  }
  .page-news-platform-updates__article-title {
    font-size: 1.6em;
  }
  .page-news-platform-updates__article {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-news-platform-updates__hero-title {
    font-size: 1.8em;
  }
  .page-news-platform-updates__hero-subtitle {
    font-size: 0.9em;
  }
  .page-news-platform-updates__section-title {
    font-size: 1.6em;
  }
  .page-news-platform-updates__article-title {
    font-size: 1.4em;
  }
  .page-news-platform-updates__article-text {
    font-size: 0.9em;
  }
}