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

.page-tin-tuc__hero-section {
  padding-top: 10px; /* Minimal top padding as body handles header offset */
  padding-bottom: 40px;
  background-color: #F4F7FB;
}

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

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

.page-tin-tuc__main-title {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-tin-tuc__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.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: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-tin-tuc__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button custom color */
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-tin-tuc__btn-secondary {
  background-color: #ffffff; /* Card B G */
  color: #2F6BFF; /* Main color */
  border: 2px solid #2F6BFF; /* Main color */
}

.page-tin-tuc__btn-secondary:hover {
  background-color: #2F6BFF; /* Main color */
  color: #ffffff;
}

.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: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-tin-tuc__section-title {
  font-size: 2em;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
}

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

.page-tin-tuc__news-card {
  background-color: #ffffff; /* Card B G */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-tin-tuc__news-card-media {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

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

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

.page-tin-tuc__news-card-title a {
  color: #000000; /* Custom Color_1776249996415 */
  text-decoration: none;
}

.page-tin-tuc__news-card-title a:hover {
  color: #2F6BFF; /* Main color */
}

.page-tin-tuc__news-card-date {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 15px;
}

.page-tin-tuc__news-card-excerpt {
  font-size: 1em;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-tin-tuc__read-more-btn {
  display: inline-block;
  color: #2F6BFF; /* Main color */
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #2F6BFF;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.page-tin-tuc__read-more-btn:hover {
  color: #1e1765;
  border-color: #1e1765;
}

.page-tin-tuc__news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.page-tin-tuc__news-item {
  display: flex;
  background-color: #ffffff; /* Card B G */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tuc__news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.page-tin-tuc__news-item-media {
  flex: 0 0 300px; /* Fixed width for desktop */
  height: 200px;
  overflow: hidden;
}

.page-tin-tuc__news-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-tin-tuc__news-item-content {
  flex: 1;
  padding: 20px;
}

.page-tin-tuc__news-item-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 8px;
}

.page-tin-tuc__news-item-title a {
  color: #000000; /* Custom Color_1776249996415 */
  text-decoration: none;
}

.page-tin-tuc__news-item-title a:hover {
  color: #2F6BFF; /* Main color */
}

.page-tin-tuc__news-item-meta {
  font-size: 0.85em;
  color: #666666;
  margin-bottom: 12px;
}

.page-tin-tuc__news-item-excerpt {
  font-size: 0.95em;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-tin-tuc__read-more-link {
  display: inline-block;
  color: #2F6BFF; /* Main color */
  text-decoration: none;
  font-weight: bold;
}

.page-tin-tuc__read-more-link:hover {
  text-decoration: underline;
}

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

.page-tin-tuc__contact-cta-section {
  background-color: #2F6BFF; /* Main color */
  padding: 60px 0;
  text-align: center;
}

.page-tin-tuc__dark-section {
  background-color: #2F6BFF;
  color: #ffffff;
}

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

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

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

.page-tin-tuc__btn-primary--light:hover {
  background: #f0f0f0;
  color: #2F6BFF;
}

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

.page-tin-tuc__btn-secondary--light:hover {
  background: #ffffff;
  color: #2F6BFF;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-tin-tuc__hero-container {
    padding: 30px 16px;
  }
  .page-tin-tuc__main-title {
    font-size: 2.2em;
  }
  .page-tin-tuc__description {
    font-size: 1em;
  }
  .page-tin-tuc__section-title {
    font-size: 1.8em;
  }
  .page-tin-tuc__news-card-title {
    font-size: 1.2em;
  }
  .page-tin-tuc__news-item {
    flex-direction: column;
  }
  .page-tin-tuc__news-item-media {
    flex: none;
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 768px) {
  /* HERO section */
  .page-tin-tuc__hero-section {
    padding-top: 10px !important; /* Adhere to minimal top padding */
    padding-bottom: 30px;
  }
  .page-tin-tuc__hero-container {
    flex-direction: column-reverse;
    padding: 20px 15px;
    gap: 20px;
  }
  .page-tin-tuc__hero-content {
    flex: 1 1 100%;
    text-align: center;
  }
  .page-tin-tuc__main-title {
    font-size: 2em; /* Smaller font size for mobile */
    margin-bottom: 15px;
  }
  .page-tin-tuc__description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-tin-tuc__hero-image {
    flex: 1 1 100%;
  }
  .page-tin-tuc__hero-side-image {
    width: 100%;
    max-width: 400px; /* Constrain max-width for image in center */
    margin: 0 auto;
  }
  .page-tin-tuc__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px; /* Add padding to button container */
  }
  .page-tin-tuc__btn-primary,
  .page-tin-tuc__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    font-size: 0.95em;
  }

  /* General content sections */
  .page-tin-tuc__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-tin-tuc__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  /* News grid (featured news) */
  .page-tin-tuc__news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-tin-tuc__news-card-media {
    height: 200px;
  }
  .page-tin-tuc__news-card-title {
    font-size: 1.1em;
  }
  .page-tin-tuc__news-card-excerpt {
    font-size: 0.9em;
  }

  /* News list (all news) */
  .page-tin-tuc__news-item {
    flex-direction: column;
  }
  .page-tin-tuc__news-item-media {
    width: 100%;
    height: 180px;
  }
  .page-tin-tuc__news-item-content {
    padding: 15px;
  }
  .page-tin-tuc__news-item-title {
    font-size: 1.05em;
  }
  .page-tin-tuc__news-item-excerpt {
    font-size: 0.85em;
  }

  /* Contact CTA section */
  .page-tin-tuc__contact-cta-section {
    padding: 40px 0;
  }
  .page-tin-tuc__description--light {
    font-size: 0.95em;
    padding: 0 15px;
  }

  /* General image responsiveness */
  .page-tin-tuc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-tin-tuc__news-card-media img,
  .page-tin-tuc__news-item-media img {
    object-fit: cover;
  }
}