/* style/tintc.css */
.page-tintc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

.page-tintc__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, #0A0A0A 100%);
}

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

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

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

.page-tintc__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-tintc__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-tintc__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-tintc__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast on bright button */
  border: none;
}

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

.page-tintc__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B;
}

.page-tintc__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
}

.page-tintc__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #FFF6D6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-tintc__section-description {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-tintc__latest-news-section {
  padding-bottom: 60px;
}

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

.page-tintc__news-card {
  background: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border */
}

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

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

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

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

.page-tintc__card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
}

.page-tintc__card-meta {
  font-size: 0.9em;
  color: #FFF6D6;
  opacity: 0.7;
  margin-bottom: 15px;
}

.page-tintc__card-excerpt {
  font-size: 1em;
  color: #FFF6D6;
}

.page-tintc__view-all-button-container {
  text-align: center;
  margin-top: 40px;
}

.page-tintc__promotions-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

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

.page-tintc__promotion-card {
  background: #111111; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  text-align: center;
}

.page-tintc__promotion-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
}

.page-tintc__promotion-text {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 25px;
}

.page-tintc__faq-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.page-tintc__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-tintc__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #FFF6D6; /* Text Main */
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
  user-select: none;
  list-style: none; /* For <summary> */
}

.page-tintc__faq-question::-webkit-details-marker {
  display: none;
}

.page-tintc__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-tintc__faq-toggle {
  font-size: 1.5em;
  color: #FFD36B; /* Glow */
  transition: transform 0.3s ease;
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
  transform: rotate(45deg);
}

.page-tintc__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #FFF6D6;
  line-height: 1.5;
  transition: max-height 0.3s ease-out;
  max-height: 0;
  overflow: hidden;
}

.page-tintc__faq-item[open] .page-tintc__faq-answer {
  max-height: 500px; /* Sufficiently large to show content */
}

/* --- Responsive Styles --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-tintc__main-title {
    font-size: 2.5em;
  }

  .page-tintc__hero-description {
    font-size: 1.1em;
  }

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

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

  .page-tintc__promotion-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .page-tintc {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-tintc__container {
    padding: 15px;
  }

  /* HERO 主图区域 */
  .page-tintc__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
  }

  .page-tintc__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-tintc__main-title {
    font-size: 2em !important;
    margin-bottom: 15px;
  }

  .page-tintc__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  /* 按钮与按钮容器 */
  .page-tintc__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tintc__btn-primary,
  .page-tintc__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-tintc__section-title {
    font-size: 1.8em !important;
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-tintc__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* 产品展示图区域 (News Grid in this case) */
  .page-tintc__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-tintc__news-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-tintc__card-image {
    height: 200px; /* Adjust height for mobile */
  }

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

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

  /* 通用图片与容器 */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-tintc__section,
  .page-tintc__card,
  .page-tintc__container,
  .page-tintc__hero-section,
  .page-tintc__latest-news-section,
  .page-tintc__promotions-section,
  .page-tintc__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-tintc__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-tintc__faq-answer {
    padding: 0 15px 15px 15px;
  }
}