.page-tin-tuc {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main for dark body background */
  background-color: #140C0C; /* Body Background */
}

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

.page-tin-tuc__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-tin-tuc__hero-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.page-tin-tuc__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-tin-tuc__hero-content {
  padding: 30px 20px;
  max-width: 900px;
  margin-top: 20px;
}

.page-tin-tuc__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF1E8; /* Text Main */
}

.page-tin-tuc__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF1E8; /* Text Main */
}

.page-tin-tuc__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-tin-tuc__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-tin-tuc__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #F3C54D; /* Gold */
}

.page-tin-tuc__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #E53030; /* Accent color */
}

.page-tin-tuc__intro-section, .page-tin-tuc__seo-content, .page-tin-tuc__cta-bottom {
  padding: 60px 0;
  margin-bottom: 40px;
}

.page-tin-tuc__intro-section p, .page-tin-tuc__seo-content p, .page-tin-tuc__seo-content ul {
  font-size: 1em;
  margin-bottom: 15px;
  color: #FFF1E8; /* Text Main */
}

.page-tin-tuc__seo-content ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-tin-tuc__seo-content li {
  margin-bottom: 8px;
}

.page-tin-tuc__seo-content a {
  color: #F3C54D; /* Gold for links */
  text-decoration: underline;
}

.page-tin-tuc__seo-content a:hover {
  color: #FFB04A;
}

.page-tin-tuc__featured-news {
  padding: 60px 0;
  margin-bottom: 40px;
  background-color: #140C0C; /* Background color */
}

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

.page-tin-tuc__news-card {
  background-color: #2A1212; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #6A1E1E; /* Border */
}

.page-tin-tuc__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-tin-tuc__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-tin-tuc__card-content {
  padding: 25px;
}

.page-tin-tuc__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-tin-tuc__card-title a {
  color: #FFF1E8; /* Text Main */
  text-decoration: none;
}

.page-tin-tuc__card-title a:hover {
  color: #F3C54D; /* Gold */
}

.page-tin-tuc__card-date {
  font-size: 0.9em;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
}

.page-tin-tuc__card-excerpt {
  font-size: 0.95em;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
}

.page-tin-tuc__read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #C61F1F; /* Main color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-tin-tuc__read-more-btn:hover {
  background-color: #E53030; /* Accent color */
}

.page-tin-tuc__latest-news {
  padding: 60px 0;
  margin-bottom: 40px;
  background-color: #140C0C; /* Background color */
}