/* style/industry-news.css */
/* 页面完整样式代码 - 注意：所有选择器必须添加页面前缀 */

.page-industry-news {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark backgrounds */
    background-color: #1a1a1a; /* Dark background to complement brand colors */
    line-height: 1.6;
}

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

/* Hero Section */
.page-industry-news__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Gradient from dark red to gold */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff; /* White text on gradient background */
}

.page-industry-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-industry-news__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #eee;
}

.page-industry-news__hero-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    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 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__hero-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-industry-news__hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-industry-news__section {
    padding: 60px 0;
    background-color: #2a2a2a; /* Slightly lighter dark background for sections */
    margin-bottom: 30px;
}

.page-industry-news__section:nth-of-type(even) {
    background-color: #1a1a1a; /* Alternating background for visual separation */
}

.page-industry-news__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main section titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-industry-news__section-description {
    font-size: 1.1em;
    color: #ccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Article Styling */
.page-industry-news__article {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-industry-news__article-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for article titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news__article-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-industry-news__article p {
    color: #e0e0e0;
    margin-bottom: 1em;
}

/* CTA Buttons within Articles */
.page-industry-news__cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-industry-news__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-industry-news__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-industry-news__btn--secondary {
    background-color: #8B0000;
    color: #fff;
    border: 1px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news__btn--secondary:hover {
    background-color: #a01010;
    transform: translateY(-2px);
}

/* Related Pages / Article List */
.page-industry-news__article-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-industry-news__article-item {
    background-color: #333;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-industry-news__article-list-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    flex-grow: 1; /* Allows it to take available space */
}

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

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

.page-industry-news__article-list-description {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.page-industry-news__btn--detail {
    background-color: #8B0000;
    color: #fff;
    align-self: flex-start; /* Aligns button to the start of the flex item */
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-industry-news__btn--detail:hover {
    background-color: #a01010;
}

/* CTA Banner at bottom */
.page-industry-news__cta-banner {
    background: linear-gradient(45deg, #FFD700 0%, #8B0000 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-industry-news__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-industry-news__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #eee;
}

.page-industry-news__cta-btn {
    display: inline-block;
    background-color: #1a1a1a; /* Dark background for contrast */
    color: #FFD700; /* Gold text */
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid #FFD700;
}

.page-industry-news__cta-btn:hover {
    background-color: #333;
    transform: translateY(-5px);
    color: #fff;
}

.page-industry-news__cta-image {
    max-width: 70%;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news__hero-title {
        font-size: 2.8em;
    }
    .page-industry-news__section-title {
        font-size: 2.2em;
    }
    .page-industry-news__cta-title {
        font-size: 2.5em;
    }
    .page-industry-news__article {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 80px 0 60px;
    }
    .page-industry-news__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news__section {
        padding: 40px 0;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
    }
    .page-industry-news__article-title {
        font-size: 1.4em;
    }
    .page-industry-news__article-list {
        grid-template-columns: 1fr;
    }
    .page-industry-news__cta-banner {
        padding: 60px 0;
    }
    .page-industry-news__cta-title {
        font-size: 2em;
    }
    .page-industry-news__cta-description {
        font-size: 1em;
    }
    .page-industry-news__cta-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-news__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news__section-title {
        font-size: 1.5em;
    }
    .page-industry-news__section-description {
        font-size: 0.9em;
    }
    .page-industry-news__article-title {
        font-size: 1.2em;
    }
    .page-industry-news__cta-title {
        font-size: 1.6em;
    }
    .page-industry-news__cta-description {
        font-size: 0.9em;
    }
    .page-industry-news__cta-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}