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

.page-industry-news__hero {
    background: linear-gradient(135deg, #003366, #1a4a7a);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-industry-news__hero-content {
    max-width: 900px;
}

.page-industry-news__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-industry-news__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #e0e0e0;
}

.page-industry-news__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-industry-news__section-title {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-news__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-industry-news__sub-title {
    font-size: 1.6em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

.page-industry-news__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-industry-news__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-industry-news__trend-item, .page-industry-news__regulation-item, .page-industry-news__innovation-item, .page-industry-news__market-item, .page-industry-news__event-item, .page-industry-news__responsible-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fdfdfd;
    border-left: 3px solid #003366;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-industry-news__cta-section {
    text-align: center;
    background-color: #003366;
    color: #ffffff;
    padding: 60px 20px;
    border-radius: 8px;
    margin-top: 60px;
}

.page-industry-news__cta-section .page-industry-news__section-title {
    color: #ffffff;
}

.page-industry-news__cta-section .page-industry-news__section-title::after {
    background-color: #FFCC00;
}

.page-industry-news__cta-section .page-industry-news__text {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-industry-news__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-industry-news__cta-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-industry-news__cta-button--secondary {
    background-color: #CC0000;
    color: #ffffff;
}

.page-industry-news__cta-button--secondary:hover {
    background-color: #a30000;
}

.page-industry-news__cta-button--tertiary {
    background-color: #4d7094;
    color: #ffffff;
}

.page-industry-news__cta-button--tertiary:hover {
    background-color: #3b5a7a;
}

.page-industry-news__related-articles {
    margin-top: 60px;
}

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

.page-industry-news__article-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-industry-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news__article-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #003366;
    font-weight: bold;
}

.page-industry-news__article-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-industry-news__article-title a:hover {
    color: #FFCC00;
}

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

.page-industry-news__read-more {
    display: inline-block;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFCC00;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-industry-news__read-more:hover {
    color: #FFCC00;
    border-color: #003366;
}

.page-industry-news .highlight {
    color: #FFCC00;
    font-weight: bold;
}

/* Floating CTA Button */
.page-industry-news__floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #CC0000;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-industry-news__floating-cta:hover {
    background-color: #a30000;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-news__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
    }
    .page-industry-news__sub-title {
        font-size: 1.4em;
    }
    .page-industry-news__text {
        font-size: 1em;
    }
    .page-industry-news__article-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-industry-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        flex-direction: column;
        padding: 60px 15px;
    }
    .page-industry-news__hero-image {
        order: -1; /* Image above text on mobile */
        margin-bottom: 30px;
    }
    .page-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news__hero-description {
        font-size: 1em;
    }
    .page-industry-news__section {
        margin: 30px auto;
        padding: 15px;
    }
    .page-industry-news__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    .page-industry-news__sub-title {
        font-size: 1.2em;
    }
    .page-industry-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-news__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-industry-news__floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero-title {
        font-size: 1.5em;
    }
    .page-industry-news__section-title {
        font-size: 1.4em;
    }
    .page-industry-news__article-list {
        grid-template-columns: 1fr;
    }
}