.page-tin-tuc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-tin-tuc__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-tin-tuc__hero-title-section {
  padding-top: 10px; /* Small top padding as shared.css handles body padding */
  padding-bottom: 40px;
  text-align: center;
  background-color: #0A0A0A; /* Background */
}

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

.page-tin-tuc__subtitle {
  font-size: clamp(1em, 2vw, 1.2em);
  color: rgba(255, 246, 214, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

.page-tin-tuc__news-list-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

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

.page-tin-tuc__news-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border */
}

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

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

.page-tin-tuc__news-card-content {
  padding: 20px;
}

.page-tin-tuc__news-card-date {
  display: block;
  font-size: 0.85em;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
}

.page-tin-tuc__news-card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-tin-tuc__news-card-title a {
  color: #FFF6D6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tuc__news-card-title a:hover {
  color: #FFD36B; /* Glow */
}

.page-tin-tuc__news-card-excerpt {
  font-size: 0.95em;
  color: rgba(255, 246, 214, 0.7);
  margin-bottom: 15px;
}

.page-tin-tuc__news-card-link {
  display: inline-block;
  color: #F2C14E; /* Primary color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-tin-tuc__news-card-link:hover {
  color: #FFD36B; /* Glow */
}

.page-tin-tuc__view-all-button-container {
  text-align: center;
  margin-top: 40px;
}

.page-tin-tuc__btn-primary,
.page-tin-tuc__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-tin-tuc__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for contrast */
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-tin-tuc__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-tin-tuc__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Primary color */
  border: 2px solid #F2C14E; /* Primary color border */
  margin-left: 20px;
}

.page-tin-tuc__btn-secondary:hover {
  background: #F2C14E;
  color: #111111; /* Dark text for contrast */
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-tin-tuc__cta-section {
  background-color: #111111; /* Card BG */
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid #3A2A12; /* Border */
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-tin-tuc__cta-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-tin-tuc__cta-description {
  font-size: 1.1em;
  color: rgba(255, 246, 214, 0.8);
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-tin-tuc__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-tin-tuc__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

.page-tin-tuc__faq-main-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #FFF6D6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-tin-tuc__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-tin-tuc__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-tin-tuc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: #FFF6D6; /* Text Main */
  cursor: pointer;
  background-color: rgba(242, 193, 78, 0.05); /* Slight tint from primary */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-tin-tuc__faq-question::-webkit-details-marker {
  display: none;
}

.page-tin-tuc__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-tin-tuc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD36B; /* Glow */
}

.page-tin-tuc__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: rgba(255, 246, 214, 0.7);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-tin-tuc__faq-item[open] .page-tin-tuc__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  transition: max-height 0.5s ease-in;
}

.page-tin-tuc__faq-item[open] .page-tin-tuc__faq-toggle {
  content: '−';
}

/* General image responsiveness */
.page-tin-tuc img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-tin-tuc {
    font-size: 15px;
  }

  .page-tin-tuc__container {
    padding: 0 15px;
  }

  /* HERO Title Section */
  .page-tin-tuc__hero-title-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 30px;
  }

  .page-tin-tuc__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-tin-tuc__subtitle {
    font-size: clamp(0.9em, 3vw, 1em);
  }

  /* News List Section */
  .page-tin-tuc__news-list-section {
    padding: 40px 0;
  }

  .page-tin-tuc__news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-tin-tuc__news-card-image {
    height: 180px;
  }

  .page-tin-tuc__news-card-title {
    font-size: 1.2em;
  }

  .page-tin-tuc__news-card-excerpt {
    font-size: 0.9em;
  }

  .page-tin-tuc__view-all-button-container {
    margin-top: 30px;
  }

  /* CTA Section */
  .page-tin-tuc__cta-section {
    padding: 40px 0;
  }

  .page-tin-tuc__cta-title {
    font-size: clamp(1.6em, 6vw, 2em);
  }

  .page-tin-tuc__cta-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-tin-tuc__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    padding: 0 15px;
  }

  .page-tin-tuc__btn-primary,
  .page-tin-tuc__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important; /* Remove margin for stacked buttons */
  }

  /* FAQ Section */
  .page-tin-tuc__faq-section {
    padding: 40px 0;
  }

  .page-tin-tuc__faq-main-title {
    font-size: clamp(1.6em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-tin-tuc__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-tin-tuc__faq-answer {
    padding: 0 20px 15px;
  }

  /* Universal image and container responsiveness */
  .page-tin-tuc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-tin-tuc__section,
  .page-tin-tuc__card,
  .page-tin-tuc__container,
  .page-tin-tuc__news-card,
  .page-tin-tuc__cta-buttons,
  .page-tin-tuc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Padding already handled by .page-tin-tuc__container for main sections */
  }

  /* No Module 1 three-column round image for this page type */
  /* No Seven Tab game area for this page type */
}