.page-tin-tuc-cap-nhat-moi-nhat {
  font-family: Arial, sans-serif;
  color: var(--text-main, #F3F8FF); /* Default text color for the page content */
  background-color: var(--deep-navy, #08162B); /* Ensure consistency with body background */
}

.page-tin-tuc-cap-nhat-moi-nhat__hero-section {
  padding-top: 10px; /* Assuming shared.css sets body padding-top */
  padding-bottom: 60px;
  background-color: var(--deep-navy, #08162B); /* Match body background */
}

.page-tin-tuc-cap-nhat-moi-nhat__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 16px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-tin-tuc-cap-nhat-moi-nhat__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  color: var(--text-main, #F3F8FF);
}

.page-tin-tuc-cap-nhat-moi-nhat__hero-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold, #F2C14E); /* Using gold for main title for prominence */
}

.page-tin-tuc-cap-nhat-moi-nhat__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary, #AFC4E8);
}

.page-tin-tuc-cap-nhat-moi-nhat__hero-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-tin-tuc-cap-nhat-moi-nhat__btn-primary,
.page-tin-tuc-cap-nhat-moi-nhat__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-tin-tuc-cap-nhat-moi-nhat__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: var(--text-main, #F3F8FF);
  border: 2px solid transparent;
}

.page-tin-tuc-cap-nhat-moi-nhat__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-tin-tuc-cap-nhat-moi-nhat__btn-secondary {
  background: transparent;
  color: var(--text-main, #F3F8FF);
  border: 2px solid var(--border, #244D84);
}

.page-tin-tuc-cap-nhat-moi-nhat__btn-secondary:hover {
  background: var(--border, #244D84);
  color: var(--text-main, #F3F8FF);
}

.page-tin-tuc-cap-nhat-moi-nhat__hero-image {
  flex: 1 1 40%;
  text-align: center;
  min-width: 300px;
}

.page-tin-tuc-cap-nhat-moi-nhat__hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.page-tin-tuc-cap-nhat-moi-nhat__news-list-section {
  padding: 60px 0;
  background-color: var(--deep-navy, #08162B); /* Match body background */
}

.page-tin-tuc-cap-nhat-moi-nhat__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-tin-tuc-cap-nhat-moi-nhat__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--gold, #F2C14E);
}

.page-tin-tuc-cap-nhat-moi-nhat__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-secondary, #AFC4E8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tuc-cap-nhat-moi-nhat__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-tin-tuc-cap-nhat-moi-nhat__news-card {
  background-color: var(--card-bg, #10233F);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-tin-tuc-cap-nhat-moi-nhat__news-card-media {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  overflow: hidden;
}

.page-tin-tuc-cap-nhat-moi-nhat__news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

.page-tin-tuc-cap-nhat-moi-nhat__news-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  color: var(--text-main, #F3F8FF);
}

.page-tin-tuc-cap-nhat-moi-nhat__news-date {
  font-size: 0.9em;
  color: var(--text-secondary, #AFC4E8);
  margin-bottom: 10px;
}

.page-tin-tuc-cap-nhat-moi-nhat__news-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-tin-tuc-cap-nhat-moi-nhat__news-title a {
  color: var(--text-main, #F3F8FF);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tuc-cap-nhat-moi-nhat__news-title a:hover {
  color: var(--glow, #4FA8FF);
}

.page-tin-tuc-cap-nhat-moi-nhat__news-excerpt {
  font-size: 1em;
  color: var(--text-secondary, #AFC4E8);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tin-tuc-cap-nhat-moi-nhat__btn-read-more {
  display: inline-block;
  padding: 8px 15px;
  background: var(--deep-navy, #08162B); /* Darker background for contrast */
  color: var(--text-main, #F3F8FF);
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
  align-self: flex-start;
  transition: background 0.3s ease;
}

.page-tin-tuc-cap-nhat-moi-nhat__btn-read-more:hover {
  background: var(--border, #244D84);
}

.page-tin-tuc-cap-nhat-moi-nhat__view-all-news {
  text-align: center;
  margin-top: 50px;
}

.page-tin-tuc-cap-nhat-moi-nhat__cta-section {
  padding: 80px 0;
  background-color: var(--primary-color, #113B7A); /* Using primary brand color for CTA */
  text-align: center;
  color: var(--text-main, #F3F8FF);
}

.page-tin-tuc-cap-nhat-moi-nhat__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold, #F2C14E);
}

.page-tin-tuc-cap-nhat-moi-nhat__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary, #AFC4E8);
}

.page-tin-tuc-cap-nhat-moi-nhat__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%; /* Ensure container fills width for mobile adaptation */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* General image responsive styles */
.page-tin-tuc-cap-nhat-moi-nhat img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-tin-tuc-cap-nhat-moi-nhat {
    font-size: 15px; /* Slightly smaller base font for mobile */
    line-height: 1.5;
  }

  /* HERO section */
  .page-tin-tuc-cap-nhat-moi-nhat__hero-section {
    padding-top: 10px !important; /* Fixed header spacing */
    padding-bottom: 40px;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__hero-container {
    flex-direction: column;
    padding: 20px 15px; /* Adjust padding for mobile */
    gap: 30px;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__hero-content,
  .page-tin-tuc-cap-nhat-moi-nhat__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__hero-title {
    font-size: 2em; /* Smaller title on mobile */
    text-align: center;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__hero-description {
    font-size: 1em;
    text-align: center;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__hero-cta-group {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__btn-primary,
  .page-tin-tuc-cap-nhat-moi-nhat__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
  }

  /* News list section */
  .page-tin-tuc-cap-nhat-moi-nhat__news-list-section {
    padding: 40px 0;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px !important; /* Adjust padding for mobile */
  }
  .page-tin-tuc-cap-nhat-moi-nhat__section-title {
    font-size: 1.8em;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__news-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__news-card-media {
    height: 180px; /* Slightly smaller image height for mobile cards */
  }
  .page-tin-tuc-cap-nhat-moi-nhat__news-title {
    font-size: 1.2em;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__news-excerpt {
    font-size: 0.95em;
  }

  /* CTA section */
  .page-tin-tuc-cap-nhat-moi-nhat__cta-section {
    padding: 50px 15px;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__cta-title {
    font-size: 2em;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    padding: 0 15px; /* Add padding to button container */
  }

  /* General image and container responsiveness */
  .page-tin-tuc-cap-nhat-moi-nhat img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-tin-tuc-cap-nhat-moi-nhat__section,
  .page-tin-tuc-cap-nhat-moi-nhat__card,
  .page-tin-tuc-cap-nhat-moi-nhat__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* No circular images in this page, so no specific rule for __icon-box-media */
}