/* style/tin-tc.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #1A1A1A;
  --text-light: #FFFFFF;
  --text-dark: #1A1A1A;
  --background-light: #F8F8F8;
  --background-dark: #2C2C2C;
  --border-color: #E0E0E0;
}

.page-tin-tc {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  background-color: var(--background-light);
  line-height: 1.6;
}

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

/* Hero Section */
.page-tin-tc-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--secondary-color);
  padding: 60px 0;
}

.page-tin-tc-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.page-tin-tc-hero-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-tin-tc-hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-light);
}

.page-tin-tc-hero-content h1 {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-tin-tc-hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #E0E0E0;
}

.page-tin-tc-cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary-color);
}

.page-tin-tc-cta-button:hover {
  background-color: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Featured News Section */
.page-tin-tc-featured-news {
  background-color: var(--background-light);
  padding: 60px 0;
}

.page-tin-tc-featured-news h2,
.page-tin-tc-latest-news h2,
.page-tin-tc-cta-section h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-tin-tc-featured-news p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #555;
}

.page-tin-tc-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-tin-tc-news-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-tin-tc-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

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

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

.page-tin-tc-card-content h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--secondary-color);
}

.page-tin-tc-card-content h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc-card-content h3 a:hover {
  color: var(--primary-color);
}

.page-tin-tc-card-content p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.page-tin-tc-read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-tin-tc-read-more:hover {
  color: #FFC107;
  text-decoration: underline;
}

/* Latest News Section */
.page-tin-tc-latest-news {
  background-color: var(--background-dark);
  padding: 60px 0;
  color: var(--text-light);
}

.page-tin-tc-latest-news h2 {
  color: var(--primary-color);
}

.page-tin-tc-latest-news p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #BBB;
}

.page-tin-tc-news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.page-tin-tc-list-item {
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tc-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-tin-tc-list-image {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 25px;
  flex-shrink: 0;
}

.page-tin-tc-list-content {
  flex-grow: 1;
}

.page-tin-tc-list-content h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tin-tc-list-content h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc-list-content h3 a:hover {
  color: #FFC107;
}

.page-tin-tc-list-content p {
  font-size: 0.95em;
  color: #D0D0D0;
  margin-bottom: 15px;
  text-align: left;
}

/* CTA Section */
.page-tin-tc-cta-section {
  background-color: var(--background-light);
  padding: 60px 0;
}

.page-tin-tc-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--secondary-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--text-light);
}

.page-tin-tc-cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-tin-tc-cta-text h2 {
  color: var(--primary-color);
  font-size: 2.2em;
  margin-bottom: 20px;
}

.page-tin-tc-cta-text p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-tin-tc-cta-button-bottom {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 18px 45px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--primary-color);
}

.page-tin-tc-cta-button-bottom:hover {
  background-color: #FFC107;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-tin-tc-hero-content h1 {
    font-size: 2.8em;
  }
  .page-tin-tc-hero-content p {
    font-size: 1.1em;
  }
  .page-tin-tc-featured-news h2,
  .page-tin-tc-latest-news h2,
  .page-tin-tc-cta-section h2 {
    font-size: 2.2em;
  }
  .page-tin-tc-news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .page-tin-tc-list-item {
    flex-direction: column;
    text-align: center;
  }
  .page-tin-tc-list-image {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .page-tin-tc-list-content h3 a,
  .page-tin-tc-list-content p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-tin-tc-hero {
    padding: 40px 0;
  }
  .page-tin-tc-hero-image {
    max-height: 300px;
    margin-bottom: 20px;
  }
  .page-tin-tc-hero-content h1 {
    font-size: 2.2em;
  }
  .page-tin-tc-hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-tin-tc-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-tin-tc-featured-news,
  .page-tin-tc-latest-news,
  .page-tin-tc-cta-section {
    padding: 40px 0;
  }
  .page-tin-tc-featured-news h2,
  .page-tin-tc-latest-news h2,
  .page-tin-tc-cta-section h2 {
    font-size: 1.8em;
  }
  .page-tin-tc-news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tin-tc-card-content h3 {
    font-size: 1.4em;
  }
  .page-tin-tc-list-item {
    padding: 15px;
  }
  .page-tin-tc-list-image {
    width: 100%;
    height: 180px;
  }
  .page-tin-tc-list-content h3 {
    font-size: 1.2em;
  }
  .page-tin-tc-list-content p {
    font-size: 0.9em;
  }
  .page-tin-tc-cta-content {
    padding: 30px;
  }
  .page-tin-tc-cta-image {
    margin-bottom: 20px;
  }
  .page-tin-tc-cta-text h2 {
    font-size: 1.8em;
  }
  .page-tin-tc-cta-text p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-tin-tc-cta-button-bottom {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-tin-tc-hero-content h1 {
    font-size: 1.8em;
  }
  .page-tin-tc-featured-news h2,
  .page-tin-tc-latest-news h2,
  .page-tin-tc-cta-section h2 {
    font-size: 1.6em;
  }
  .page-tin-tc-card-content h3 {
    font-size: 1.2em;
  }
  .page-tin-tc-list-content h3 {
    font-size: 1.1em;
  }
  .page-tin-tc-cta-text h2 {
    font-size: 1.6em;
  }
}