.page-tintc {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-tintc__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, main padding handled by body */
  background-color: #2F6BFF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-tintc__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.page-tintc__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.page-tintc__main-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Using clamp for responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-tintc__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #D6E2FF;
}

.page-tintc__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-tintc__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-tintc__news-grid-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-tintc__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-tintc__news-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
  display: flex;
  flex-direction: column;
}

.page-tintc__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-tintc__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

.page-tintc__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tintc__card-title a {
  color: #000000; /* Custom Color_1776249996415 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__card-title a:hover {
  color: #2F6BFF;
}

.page-tintc__card-meta {
  font-size: 0.9em;
  color: #6FA3FF;
  margin-bottom: 15px;
}

.page-tintc__card-excerpt {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tintc__read-more {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
  color: #1F2D3D;
}

.page-tintc__view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-tintc__view-all-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-tintc__view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-tintc__cta-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-tintc__cta-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-tintc__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #D6E2FF;
}

.page-tintc__cta-button--large {
  padding: 16px 35px;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .page-tintc__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-tintc__description {
    font-size: 1em;
  }

  .page-tintc__hero-content {
    padding: 30px 15px;
  }

  .page-tintc__section-title {
    font-size: 2em;
  }

  .page-tintc__news-grid {
    grid-template-columns: 1fr;
  }

  .page-tintc__card-title {
    font-size: 1.3em;
  }

  .page-tintc__card-image {
    height: 200px; /* Ensure min 200px height on mobile */
    max-width: 100%; /* Prevent overflow */
  }

  .page-tintc__news-card img {
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Ensure images are not too small */
  }

  .page-tintc__cta-title {
    font-size: 2em;
  }

  .page-tintc__cta-description {
    font-size: 1em;
  }

  .page-tintc__cta-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-tintc__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }

  .page-tintc__cta-title {
    font-size: 1.8em;
  }
}