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

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

.page-industry-news__hero-section {
    background: linear-gradient(135deg, #0A2239, #3A5B79);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-industry-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E0B400; /* Accent color for title */
    font-weight: bold;
    line-height: 1.2;
}

.page-industry-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.page-industry-news__cta-button {
    display: inline-block;
    background-color: #E0B400; /* Accent color for button */
    color: #0A2239; /* Main color for button text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-industry-news__cta-button:hover {
    background-color: #f5c700; /* Slightly lighter accent for hover */
    transform: translateY(-2px);
}

.page-industry-news__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-industry-news__article-title {
    font-size: 2.5em;
    color: #0A2239; /* Main color for article titles */
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
    border-bottom: 3px solid #E0B400; /* Accent color for underline */
    padding-bottom: 10px;
}

.page-industry-news__article h3 {
    font-size: 1.8em;
    color: #0A2239;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news__article p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

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

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

.page-industry-news__news-card {
    background-color: #fefefe;
    border-radius: 12px;
    box-shadow: 0 6px 20px 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__news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.page-industry-news__card-title {
    font-size: 1.5em;
    color: #0A2239;
    margin: 20px;
    line-height: 1.4;
    font-weight: bold;
    flex-grow: 1;
}

.page-industry-news__card-title a {
    text-decoration: none;
    color: #0A2239;
    transition: color 0.3s ease;
}

.page-industry-news__card-title a:hover {
    color: #E0B400;
}

.page-industry-news__card-description {
    font-size: 0.95em;
    color: #666;
    margin: 0 20px 20px;
}

.page-industry-news__read-more-button {
    display: inline-block;
    background-color: #E0B400;
    color: #0A2239;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    margin: 0 20px 20px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-industry-news__read-more-button:hover {
    background-color: #f5c700;
}

.page-industry-news__cta-bottom {
    text-align: center;
    padding: 60px 20px;
    background-color: #0A2239; /* Main color for bottom CTA */
    color: #ffffff;
    margin-top: 60px;
    border-radius: 10px;
}

.page-industry-news__cta-bottom p {
    font-size: 1.6em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-industry-news__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

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

    .page-industry-news__hero-description {
        font-size: 1.1em;
    }

    .page-industry-news__article-title {
        font-size: 2em;
    }

    .page-industry-news__article h3 {
        font-size: 1.5em;
    }

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

    .page-industry-news__news-card {
        margin-bottom: 20px;
    }

    .page-industry-news__cta-bottom p {
        font-size: 1.3em;
    }

    .page-industry-news__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero-title {
        font-size: 2em;
    }

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

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

    .page-industry-news__article h3 {
        font-size: 1.3em;
    }

    .page-industry-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-news__cta-bottom p {
        font-size: 1.1em;
    }

    .page-industry-news__cta-button--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}