/* style/tin-tuc-industry-news.css */
:root {
    --primary-color: #0A2463;
    --secondary-color: #E3B505;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
}

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

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

.page-tin-tuc-industry-news h1,
.page-tin-tuc-industry-news h2,
.page-tin-tuc-industry-news h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-tin-tuc-industry-news h1 {
    font-size: 3.2em;
    text-align: center;
    color: var(--text-light);
}

.page-tin-tuc-industry-news h2 {
    font-size: 2.5em;
    margin-top: 40px;
    text-align: center;
}

.page-tin-tuc-industry-news h3 {
    font-size: 1.8em;
    margin-top: 30px;
}

.page-tin-tuc-industry-news p {
    margin-bottom: 1em;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-tin-tuc-industry-news .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-tin-tuc-industry-news .cta-button:hover {
    background-color: #d1a404; /* Slightly darker secondary color */
    transform: translateY(-2px);
}

/* Hero Section */
.page-tin-tuc-industry-news .hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0A2463ee 100%); /* Dark blue gradient with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-tin-tuc-industry-news .hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-tin-tuc-industry-news .hero-image {
    width: 100%;
    max-width: 1000px; /* Adjust max-width as needed */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    object-fit: cover;
}

.page-tin-tuc-industry-news .hero-content {
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tin-tuc-industry-news .hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Section Styling */
.page-tin-tuc-industry-news .section-intro, 
.page-tin-tuc-industry-news .section-latest-updates, 
.page-tin-tuc-industry-news .section-industry-trends, 
.page-tin-tuc-industry-news .section-expert-corner, 
.page-tin-tuc-industry-news .section-faq, 
.page-tin-tuc-industry-news .section-cta-bottom {
    padding: 60px 0;
}

.page-tin-tuc-industry-news .section-intro {
    background-color: var(--bg-light);
}

.page-tin-tuc-industry-news .section-latest-updates {
    background-color: #ffffff;
}

.page-tin-tuc-industry-news .section-industry-trends {
    background-color: var(--bg-light);
}

.page-tin-tuc-industry-news .section-expert-corner {
    background-color: #ffffff;
}

.page-tin-tuc-industry-news .section-cta-bottom {
    background: linear-gradient(135deg, var(--primary-color), #0A2463cc);
    color: var(--text-light);
    text-align: center;
}

.page-tin-tuc-industry-news .section-cta-bottom h2, 
.page-tin-tuc-industry-news .section-cta-bottom p {
    color: var(--text-light);
}

.page-tin-tuc-industry-news .cta-image-bottom {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Update Grid */
.page-tin-tuc-industry-news .update-grid, 
.page-tin-tuc-industry-news .article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-tin-tuc-industry-news .update-card:hover, 
.page-tin-tuc-industry-news .article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-tin-tuc-industry-news .update-card .card-image, 
.page-tin-tuc-industry-news .article-card .card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-tin-tuc-industry-news .update-card h3, 
.page-tin-tuc-industry-news .article-card h3 {
    font-size: 1.4em;
    margin: 20px 20px 10px 20px;
    line-height: 1.4;
    flex-grow: 1;
}

.page-tin-tuc-industry-news .update-card h3 a, 
.page-tin-tuc-industry-news .article-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tin-tuc-industry-news .update-card h3 a:hover, 
.page-tin-tuc-industry-news .article-card h3 a:hover {
    color: var(--secondary-color);
}

.page-tin-tuc-industry-news .update-card p, 
.page-tin-tuc-industry-news .article-card p {
    font-size: 0.95em;
    color: #555;
    padding: 0 20px;
    margin-bottom: 15px;
}

.page-tin-tuc-industry-news .read-more {
    display: inline-block;
    margin: 0 20px 20px 20px;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-tin-tuc-industry-news .read-more:hover {
    background-color: #d1a404;
}

/* FAQ Styling */
.page-tin-tuc-industry-news .faq-list {
    margin-top: 40px;
}

.page-tin-tuc-industry-news .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-tin-tuc-industry-news .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-tin-tuc-industry-news .faq-question:hover {
    background-color: var(--bg-light);
}

.page-tin-tuc-industry-news .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.page-tin-tuc-industry-news .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.page-tin-tuc-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-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.page-tin-tuc-industry-news .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 25px;
}

.page-tin-tuc-industry-news .faq-answer p {
    margin: 0;
    font-size: 1em;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-tin-tuc-industry-news h1 {
        font-size: 2.5em;
    }
    .page-tin-tuc-industry-news h2 {
        font-size: 2em;
    }
    .page-tin-tuc-industry-news .hero-content p {
        font-size: 1.1em;
    }
    .page-tin-tuc-industry-news .update-grid, 
    .page-tin-tuc-industry-news .article-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-tin-tuc-industry-news .container {
        padding: 15px;
    }
    .page-tin-tuc-industry-news h1 {
        font-size: 2em;
    }
    .page-tin-tuc-industry-news h2 {
        font-size: 1.8em;
    }
    .page-tin-tuc-industry-news h3 {
        font-size: 1.5em;
    }
    .page-tin-tuc-industry-news p {
        font-size: 1em;
    }
    .page-tin-tuc-industry-news .hero-section {
        padding: 60px 0;
    }
    .page-tin-tuc-industry-news .hero-image {
        margin-bottom: 20px;
    }
    .page-tin-tuc-industry-news .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-tin-tuc-industry-news .section-intro, 
    .page-tin-tuc-industry-news .section-latest-updates, 
    .page-tin-tuc-industry-news .section-industry-trends, 
    .page-tin-tuc-industry-news .section-expert-corner, 
    .page-tin-tuc-industry-news .section-faq, 
    .page-tin-tuc-industry-news .section-cta-bottom {
        padding: 40px 0;
    }
    .page-tin-tuc-industry-news .faq-question {
        padding: 15px 20px;
    }
    .page-tin-tuc-industry-news .faq-question h3 {
        font-size: 1.1em;
    }
    .page-tin-tuc-industry-news .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-tin-tuc-industry-news h1 {
        font-size: 1.8em;
    }
    .page-tin-tuc-industry-news h2 {
        font-size: 1.5em;
    }
    .page-tin-tuc-industry-news h3 {
        font-size: 1.3em;
    }
    .page-tin-tuc-industry-news .update-grid, 
    .page-tin-tuc-industry-news .article-grid {
        grid-template-columns: 1fr;
    }
    .page-tin-tuc-industry-news .update-card .card-image, 
    .page-tin-tuc-industry-news .article-card .card-image {
        height: 180px;
    }
}