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

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

.page-industry-news__hero {
    background: linear-gradient(135deg, #003366, #FFD700);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    z-index: 0;
}

.page-industry-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.page-industry-news__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
}

.page-industry-news__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
    font-size: 1.1em;
}

.page-industry-news__btn--primary {
    background-color: #FFD700;
    color: #003366;
    border: 2px solid #FFD700;
}

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

.page-industry-news__btn--secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

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

.page-industry-news__btn--large {
    padding: 15px 40px;
    font-size: 1.2em;
}

.page-industry-news__section-title {
    font-size: 2.8em;
    color: #003366;
    text-align: center;
    margin-bottom: 60px;
    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: #FFD700;
    border-radius: 2px;
}

.page-industry-news__articles {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.page-industry-news__article-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-industry-news__article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-industry-news__article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-industry-news__article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-industry-news__article-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #003366;
    flex-grow: 1;
}

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

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

.page-industry-news__article-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-industry-news__cta {
    background-color: #003366;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-industry-news__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
}

.page-industry-news__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-industry-news__faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-industry-news__faq-item {
    background-color: #f0f4f7;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-left: 5px solid #003366;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-industry-news__faq-item:hover {
    background-color: #e6edf2;
    border-left-color: #FFD700;
}

.page-industry-news__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-industry-news__faq-answer {
    font-size: 1em;
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-industry-news__hero-title {
        font-size: 3em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 1.2em;
    }
    .page-industry-news__section-title {
        font-size: 2.2em;
    }
    .page-industry-news__article-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-industry-news__cta-title {
        font-size: 2.5em;
    }
    .page-industry-news__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 80px 0;
    }
    .page-industry-news__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news__articles, .page-industry-news__cta, .page-industry-news__faq {
        padding: 60px 0;
    }
    .page-industry-news__section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .page-industry-news__article-content {
        padding: 20px;
    }
    .page-industry-news__article-title {
        font-size: 1.3em;
    }
    .page-industry-news__cta-title {
        font-size: 2em;
    }
    .page-industry-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-news__btn--large {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero {
        padding: 60px 0;
    }
    .page-industry-news__hero-title {
        font-size: 2em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-news__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-industry-news__articles, .page-industry-news__cta, .page-industry-news__faq {
        padding: 40px 0;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-industry-news__article-grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news__article-image {
        height: 180px;
    }
    .page-industry-news__article-title {
        font-size: 1.2em;
    }
    .page-industry-news__article-description {
        font-size: 0.9em;
    }
    .page-industry-news__cta-title {
        font-size: 1.8em;
    }
    .page-industry-news__cta-description {
        font-size: 1em;
    }
    .page-industry-news__btn--large {
        width: 90%;
    }
    .page-industry-news__faq-question {
        font-size: 1.1em;
    }
    .page-industry-news__faq-answer {
        font-size: 0.9em;
    }
}