/* style/industry-news-trends.css */
.page-industry-news-trends {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-industry-news-trends-hero {
    background: linear-gradient(135deg, #003366 0%, #003366 70%, #FFCC00 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-trends-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

.page-industry-news-trends-hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-industry-news-trends-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-industry-news-trends-section:nth-child(even) {
    background-color: #f0f4f8;
}

.page-industry-news-trends-section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-industry-news-trends-section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-industry-news-trends-trend-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.page-industry-news-trends-trend-item.page-industry-news-trends-reverse {
    flex-direction: row-reverse;
}

.page-industry-news-trends-trend-image {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-industry-news-trends-trend-image:hover {
    transform: translateY(-5px);
}

.page-industry-news-trends-trend-item div {
    flex: 1;
}

.page-industry-news-trends-trend-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-industry-news-trends-trend-text {
    font-size: 1em;
    color: #444;
}

.page-industry-news-trends-content-block {
    background-color: #fefefe;
    padding: 30px;
    border-left: 5px solid #FFCC00;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-industry-news-trends-block-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
}

.page-industry-news-trends-block-text {
    font-size: 1em;
    color: #555;
}

.page-industry-news-trends-btn {
    display: inline-block;
    padding: 12px 28px;
    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.3s ease;
    cursor: pointer;
    margin: 10px;
    text-align: center;
}

.page-industry-news-trends-btn-primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.page-industry-news-trends-btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
}

.page-industry-news-trends-btn-secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #003366;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.3);
}

.page-industry-news-trends-btn-secondary:hover {
    background-color: #002244;
    border-color: #002244;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 51, 102, 0.4);
}

.page-industry-news-trends-btn-tertiary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-industry-news-trends-btn-tertiary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-industry-news-trends-highlight {
    color: #FFCC00;
}

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

.page-industry-news-trends-article-card {
    background-color: #fefefe;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-trends-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-industry-news-trends-article-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-industry-news-trends-article-title a {
    color: #003366;
    text-decoration: none;
}

.page-industry-news-trends-article-title a:hover {
    color: #FFCC00;
}

.page-industry-news-trends-article-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-industry-news-trends-cta-final {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-industry-news-trends-cta-final .page-industry-news-trends-section-title {
    color: #fff;
}

.page-industry-news-trends-cta-final .page-industry-news-trends-section-intro {
    color: #e0e0e0;
}

.page-industry-news-trends-cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-trends-hero-title {
        font-size: 2.8em;
    }
    .page-industry-news-trends-section-title {
        font-size: 2em;
    }
    .page-industry-news-trends-trend-item {
        flex-direction: column;
        text-align: center;
    }
    .page-industry-news-trends-trend-item.page-industry-news-trends-reverse {
        flex-direction: column;
    }
    .page-industry-news-trends-trend-image {
        max-width: 80%;
        margin-bottom: 30px;
    }
    .page-industry-news-trends-article-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-industry-news-trends-hero {
        padding: 80px 0;
    }
    .page-industry-news-trends-hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-trends-hero-description {
        font-size: 1em;
    }
    .page-industry-news-trends-section {
        padding: 40px 0;
    }
    .page-industry-news-trends-section-title {
        font-size: 1.8em;
    }
    .page-industry-news-trends-section-intro {
        font-size: 0.95em;
    }
    .page-industry-news-trends-trend-item {
        gap: 20px;
    }
    .page-industry-news-trends-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-industry-news-trends-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-industry-news-trends-hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-trends-section-title {
        font-size: 1.5em;
    }
    .page-industry-news-trends-trend-image {
        max-width: 100%;
    }
    .page-industry-news-trends-btn {
        width: 100%;
        margin: 5px 0;
    }
    .page-industry-news-trends-cta-buttons {
        width: 100%;
    }
}