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

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

.page-tin-tuc__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

/* Buttons */
.page-tin-tuc__btn-primary,
.page-tin-tuc__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

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

.page-tin-tuc__btn-secondary--white {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-tin-tuc__btn-secondary--white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.page-tin-tuc__read-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  color: #26A9E0;
  border: 1px solid #26A9E0;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-tin-tuc__read-more-btn:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-tin-tuc__read-more-btn--white {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.page-tin-tuc__read-more-btn--white:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

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

/* Hero Section */
.page-tin-tuc__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 60px;
  overflow: hidden;
}

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

.page-tin-tuc__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-tin-tuc__hero-content {
  max-width: 900px;
  margin: -200px auto 0;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-tin-tuc__main-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-tin-tuc__hero-description {
  font-size: 18px;
  color: #555555;
  margin-bottom: 30px;
}

/* Latest News Section */
.page-tin-tuc__latest-news-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-tin-tuc__news-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-tin-tuc__news-thumbnail {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.page-tin-tuc__news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-tin-tuc__news-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

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

.page-tin-tuc__news-title a:hover {
  color: #26A9E0;
}

.page-tin-tuc__news-meta {
  font-size: 14px;
  color: #777777;
  margin-bottom: 15px;
}

.page-tin-tuc__news-excerpt {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-tin-tuc__view-all-button-container {
  text-align: center;
}

/* Featured Articles Section */
.page-tin-tuc__featured-articles-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-tin-tuc__featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.page-tin-tuc__featured-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-tin-tuc__featured-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-tin-tuc__featured-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.page-tin-tuc__featured-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.page-tin-tuc__featured-title a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tuc__featured-title a:hover {
  color: #f0f0f0;
}

.page-tin-tuc__featured-excerpt {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Why Follow Section */
.page-tin-tuc__why-follow-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-tin-tuc__benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.page-tin-tuc__benefit-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}