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

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

.page-industry-news__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-industry-news__hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-industry-news__section-title {
    font-size: 2.2em;
    color: #007bff; /* Main brand color for titles */
    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: #ffc107; /* Accent color for underline */
    border-radius: 2px;
}

.page-industry-news__intro, .page-industry-news__deep-dive, .page-industry-news__future-outlook {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-industry-news__intro p, .page-industry-news__deep-dive p, .page-industry-news__future-outlook p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-industry-news__featured-articles {
    padding: 60px 0;
    background-color: #f0f4f8;
}

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

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

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

.page-industry-news__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-industry-news__article-card h3 {
    font-size: 1.5em;
    color: #007bff; /* Main brand color */
    padding: 20px 20px 10px;
    min-height: 80px;
}

.page-industry-news__article-card p {
    font-size: 1em;
    color: #666;
    padding: 0 20px 20px;
    min-height: 120px;
}

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

.page-industry-news__button--primary {
    background-color: #007bff; /* Main brand color */
    color: #ffffff; /* White text for contrast */
    border: 2px solid #007bff;
}

.page-industry-news__button--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #ffffff;
}

.page-industry-news__button--secondary {
    background-color: #ffc107; /* Accent color */
    color: #333333; /* Dark text for contrast */
    border: 2px solid #ffc107;
}

.page-industry-news__button--secondary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #333333;
}

.page-industry-news__cta {
    background-color: #007bff; /* Main brand color */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-industry-news__cta h2 {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.page-industry-news__cta p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-industry-news__cta-buttons .page-industry-news__button {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news__hero h1 {
        font-size: 2em;
    }

    .page-industry-news__hero p {
        font-size: 1em;
    }

    .page-industry-news__section-title {
        font-size: 1.8em;
    }

    .page-industry-news__grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news__intro, .page-industry-news__featured-articles, .page-industry-news__deep-dive, .page-industry-news__future-outlook, .page-industry-news__cta {
        padding: 40px 0;
    }

    .page-industry-news__article-card h3 {
        min-height: auto;
    }

    .page-industry-news__article-card p {
        min-height: auto;
    }

    .page-industry-news__cta h2 {
        font-size: 2em;
    }

    .page-industry-news__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-industry-news__button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero {
        padding: 60px 0;
    }

    .page-industry-news__hero h1 {
        font-size: 1.8em;
    }

    .page-industry-news__section-title {
        font-size: 1.5em;
    }

    .page-industry-news__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}