/* Base styles for the Tin Tức page */
.page-tin-tuc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background is white */
}

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

/* Hero Section */
.page-tin-tuc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px; /* Minimum height for hero */
  padding-top: 10px; /* Small top padding, header offset handled by body */
  padding-bottom: 50px;
  background-color: #f0f0f0;
}

.page-tin-tuc__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-tin-tuc__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Default to cover for desktop */
  display: block;
}

.page-tin-tuc__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #ffffff; /* White text on hero image */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  padding: 30px;
  border-radius: 8px;
}

.page-tin-tuc__main-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-tin-tuc__description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-tin-tuc__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-tin-tuc__btn-primary,
.page-tin-tuc__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-tin-tuc__btn-primary {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #017439;
}

.page-tin-tuc__btn-primary:hover {
  background-color: #005f2c;
  border-color: #005f2c;
}

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

.page-tin-tuc__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #017439;
}

/* General Section Styles */
.page-tin-tuc__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #017439; /* Brand primary color */
}

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

.page-tin-tuc__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-tin-tuc__section-description--white {
  color: #f0f0f0;
}

/* About News Section */
.page-tin-tuc__about-news-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-tin-tuc__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-tin-tuc__text-block {
  flex: 1;
}

.page-tin-tuc__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #333333;
}

.page-tin-tuc__image-block {
  flex: 1;
  text-align: center;
}