.page-tintc {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
}

.page-tintc__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

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

.page-tintc__hero-content-wrapper {
  max-width: 900px;
  padding: 0 20px;
}

.page-tintc__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFB04D;
  margin-bottom: 15px;
}

.page-tintc__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-tintc__cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-tintc__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 165, 58, 0.4);
}

.page-tintc__news-list-section {
  padding: 40px 0;
  background-color: #0D0E12;
}

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

.page-tintc__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #FFB04D;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-tintc__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFA53A, #D96800);
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-tintc__news-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C;
}

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

.page-tintc__card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-tintc__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-tintc__card-content {
  padding: 20px;
}

.page-tintc__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFF3E6;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-tintc__card-meta {
  font-size: 0.9rem;
  color: #FFA53A;
  margin-bottom: 15px;
}

.page-tintc__card-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF3E6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-tintc__read-more {
  color: #FFA53A;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-tintc__view-all-wrapper {
  text-align: center;
}

.page-tintc__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-tintc__view-all-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 165, 58, 0.4);
}

.page-tintc__cta-section {
  background-color: #17191F;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #A84F0C;
}

.page-tintc__cta-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #FFB04D;
  margin-bottom: 20px;
}

.page-tintc__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

@media (max-width: 768px) {
  .page-tintc__hero-section {
    margin-bottom: 20px;
  }

  .page-tintc__main-title {
    font-size: 2rem;
  }

  .page-tintc__intro-text {
    font-size: 1rem;
  }

  .page-tintc__cta-button,
  .page-tintc__view-all-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-tintc__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

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

  .page-tintc__card-image {
    height: 200px;
  }

  .page-tintc__card-title {
    font-size: 1.1rem;
  }

  .page-tintc__card-meta,
  .page-tintc__card-excerpt {
    font-size: 0.9rem;
  }

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

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

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

  /* Mobile image overflow prevention */
  .page-tintc img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-tintc__main-title {
    font-size: 1.8rem;
  }

  .page-tintc__section-title {
    font-size: 1.8rem;
  }

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