:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-dark: #1a1a1a;
    --background-light: #f5f5f5;
    --card-background: #2a2a2a;
    --border-color: #444444;
}

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

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

/* Hero Section */
.page-tin-tc-industry-news__hero {
    position: relative;
    padding: 80px 0;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a30000 100%); /* Dark red gradient background */
}

.page-tin-tc-industry-news__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-tin-tc-industry-news__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--primary-color); /* Gold title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tin-tc-industry-news__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0; /* Slightly lighter text for contrast */
}

.page-tin-tc-industry-news__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15; /* Subtly overlay image */
    pointer-events: none;
}

.page-tin-tc-industry-news__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-tin-tc-industry-news__cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-dark); /* Dark text on gold button for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-tin-tc-industry-news__cta-button:hover {
    background-color: #e0c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* General Section Styling */
.page-tin-tc-industry-news__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-tin-tc-industry-news__section:last-of-type {
    border-bottom: none;
}

.page-tin-tc-industry-news__section h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-tin-tc-industry-news__section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-tin-tc-industry-news__section h3 {
    font-size: 1.8em;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-tin-tc-industry-news__section p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-tin-tc-industry-news__section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-tin-tc-industry-news__section li {
    margin-bottom: 8px;
}

/* Card Grid for Highlights */
.page-tin-tc-industry-news__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-tin-tc-industry-news__card {
    background-color: var(--card-background); /* Dark background for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-light); /* Light text on dark card */
}

.page-tin-tc-industry-news__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

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

.page-tin-tc-industry-news__card-content {
    padding: 25px;
}

.page-tin-tc-industry-news__card-content h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    border-left: none;
    padding-left: 0;
}

.page-tin-tc-industry-news__card-link {
    color: var(--primary-color); /* Gold link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tin-tc-industry-news__card-link:hover {
    color: #fff; /* White on hover for better contrast on dark background */
}

.page-tin-tc-industry-news__card-content p {
    font-size: 0.95em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-tin-tc-industry-news__read-more-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-dark);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-tin-tc-industry-news__read-more-button:hover {
    background-color: #e0c200;
}

/* Image styling within sections */
.page-tin-tc-industry-news__image--full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
    display: block;
}

.page-tin-tc-industry-news__image--half-width {
    width: 100%; /* Default for mobile */
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
}

@media (min-width: 768px) {
    .page-tin-tc-industry-news__image--half-width {
        width: 48%; /* Half width on larger screens */
        float: left; /* Or use flexbox for better control */
        margin-right: 2%;
    }
    .page-tin-tc-industry-news__market-analysis p:nth-of-type(3) {
        clear: left; /* Clear float after the image */
    }
}

/* FAQ Section */
.page-tin-tc-industry-news__faq {
    background-color: var(--background-dark); /* Dark background for FAQ */
    color: var(--text-light);
    padding-bottom: 80px;
}

.page-tin-tc-industry-news__faq h2 {
    color: var(--primary-color); /* Gold title */
}

.page-tin-tc-industry-news__faq h3 {
    color: var(--text-light);
    border-left-color: var(--primary-color);
}

.page-tin-tc-industry-news .faq-list {
    margin-top: 30px;
}

.page-tin-tc-industry-news .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #333333; /* Slightly lighter dark for item */
}

.page-tin-tc-industry-news .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #444444; /* Darker background for question */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--text-light);
}

.page-tin-tc-industry-news .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    flex-grow: 1;
    color: var(--text-light);
    border-left: none;
    padding-left: 0;
}

.page-tin-tc-industry-news .faq-question:hover {
    background: #555555;
}

.page-tin-tc-industry-news .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.page-tin-tc-industry-news .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-tin-tc-industry-news .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #333333;
    color: #cccccc;
}

.page-tin-tc-industry-news .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 20px 25px 25px;
}

.page-tin-tc-industry-news .faq-answer p {
    margin: 0;
    color: #cccccc;
}

/* Latest Blog Section */
.page-tin-tc-industry-news__latest-blog {
    background-color: var(--background-light);
}

.page-tin-tc-industry-news__blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-tin-tc-industry-news__blog-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-tin-tc-industry-news__blog-content {
    padding: 20px;
}

.page-tin-tc-industry-news__blog-content h3 {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    border-left: none;
    padding-left: 0;
}

.page-tin-tc-industry-news__blog-link {
    color: var(--secondary-color); /* Dark red for blog links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tin-tc-industry-news__blog-link:hover {
    color: var(--primary-color);
}

.page-tin-tc-industry-news__blog-content p {
    font-size: 0.9em;
    color: #555555;
    margin-bottom: 15px;
}

.page-tin-tc-industry-news__blog-date {
    display: block;
    font-size: 0.85em;
    color: #888888;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-tin-tc-industry-news__hero h1 {
        font-size: 3em;
    }
    .page-tin-tc-industry-news__section h2 {
        font-size: 2.2em;
    }
    .page-tin-tc-industry-news__section h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-tin-tc-industry-news__hero {
        padding: 60px 0;
    }
    .page-tin-tc-industry-news__hero h1 {
        font-size: 2.5em;
    }
    .page-tin-tc-industry-news__hero p {
        font-size: 1em;
    }
    .page-tin-tc-industry-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-tin-tc-industry-news__section {
        padding: 40px 0;
    }
    .page-tin-tc-industry-news__section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-tin-tc-industry-news__section h3 {
        font-size: 1.4em;
    }
    .page-tin-tc-industry-news__card-grid,
    .page-tin-tc-industry-news__blog-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-tin-tc-industry-news__image--half-width {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    .page-tin-tc-industry-news .faq-question {
        padding: 15px 20px;
    }
    .page-tin-tc-industry-news .faq-question h3 {
        font-size: 1.1em;
    }
    .page-tin-tc-industry-news .faq-toggle {
        font-size: 20px;
    }
    .page-tin-tc-industry-news .faq-answer {
        padding: 0 20px;
    }
    .page-tin-tc-industry-news .faq-item.active .faq-answer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-tin-tc-industry-news__hero h1 {
        font-size: 2em;
    }
    .page-tin-tc-industry-news__hero p {
        font-size: 0.9em;
    }
    .page-tin-tc-industry-news__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-tin-tc-industry-news__section h2 {
        font-size: 1.8em;
    }
    .page-tin-tc-industry-news__section h3 {
        font-size: 1.2em;
    }
}