.page-tin-tuc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
}

.page-tin-tuc__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background: #ffffff;
  color: #333333;
}

.page-tin-tuc__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 16px;
  gap: 40px;
}

.page-tin-tuc__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-tin-tuc__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-tin-tuc__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555555;
}

.page-tin-tuc__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-tin-tuc__btn-primary,
.page-tin-tuc__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow word breaking */
}

.page-tin-tuc__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-tin-tuc__btn-primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
}

.page-tin-tuc__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-tin-tuc__btn-secondary:hover {
  background: #e6f7ff;
  color: #1e87b7;
  border-color: #1e87b7;
}

.page-tin-tuc__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-tin-tuc__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.page-tin-tuc__news-list-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.page-tin-tuc__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-tin-tuc__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-tin-tuc__section-title--white {
  color: #ffffff;
}

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

.page-tin-tuc__news-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-tin-tuc__news-image-wrapper {
  width: 100%;
  height: 200px; /* Fixed height for consistent card appearance */
  overflow: hidden;
}

.page-tin-tuc__news-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.page-tin-tuc__news-card:hover .page-tin-tuc__news-thumbnail {
  transform: scale(1.05);
}

.page-tin-tuc__news-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-tin-tuc__news-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tin-tuc__news-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tuc__news-title a:hover {
  color: #1e87b7;
}

.page-tin-tuc__news-date {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 15px;
}

.page-tin-tuc__news-excerpt {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tin-tuc__read-more-btn {
  display: inline-block;
  padding: 8px 15px;
  background: #26A9E0;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-tin-tuc__read-more-btn:hover {
  background: #1e87b7;
}

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

.page-tin-tuc__cta-bottom-section {
  background: #26A9E0;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-tin-tuc__cta-bottom-section .page-tin-tuc__description {
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tuc__cta-bottom-section .page-tin-tuc__cta-buttons {
  justify-content: center;
  margin-top: 30px;
}

.page-tin-tuc__cta-bottom-section .page-tin-tuc__btn-primary {
  background: #EA7C07; /* Login color */
  border-color: #EA7C07;
}

.page-tin-tuc__cta-bottom-section .page-tin-tuc__btn-primary:hover {
  background: #c76706;
  border-color: #c76706;
}

.page-tin-tuc__cta-bottom-section .page-tin-tuc__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

.page-tin-tuc__cta-bottom-section .page-tin-tuc__btn-secondary:hover {
  background: #f0f0f0;
  color: #1e87b7;
  border-color: #f0f0f0;
}

.page-tin-tuc__faq-section {
  padding: 60px 0;
  background: #ffffff;
}

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

.page-tin-tuc__faq-item {
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-tin-tuc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333333;
  list-style: none; /* Hide default details marker */
}

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

.page-tin-tuc__faq-qtext {
  flex-grow: 1;
}

.page-tin-tuc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-tin-tuc__faq-answer {
  padding: 0 25px 18px;
  font-size: 1rem;
  color: #555555;
}

.page-tin-tuc__faq-answer p {
  margin-bottom: 0;
}

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

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .page-tin-tuc {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-tin-tuc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-tin-tuc__hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }

  .page-tin-tuc__hero-content,
  .page-tin-tuc__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-tin-tuc__main-title {
    font-size: 2rem; /* Adjusted for mobile readability */
    text-align: center;
  }

  .page-tin-tuc__description {
    font-size: 1rem;
    text-align: center;
  }

  .page-tin-tuc__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .page-tin-tuc__btn-primary,
  .page-tin-tuc__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tin-tuc__hero-side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-tin-tuc__news-list-section,
  .page-tin-tuc__faq-section {
    padding: 40px 0;
  }

  .page-tin-tuc__content-area {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-tin-tuc__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

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

  .page-tin-tuc__news-image-wrapper {
    height: 180px; /* Adjusted height for mobile cards */
  }

  .page-tin-tuc__news-title {
    font-size: 1.15rem;
  }

  .page-tin-tuc__news-excerpt {
    font-size: 0.95rem;
  }

  .page-tin-tuc__cta-bottom-section {
    padding: 60px 15px;
  }

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

  .page-tin-tuc__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* Ensure all images are responsive */
  .page-tin-tuc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  /* Specific override for any circular images if they were present in this page, though not expected for Tin Tức */
  .page-tin-tuc__icon-box-media {
    width: 200px;
    height: 200px;
  }
  .page-tin-tuc__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}