/* style/industry-news.css */

/* General Page Styling */
.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__section-heading {
    font-size: 2.5em;
    color: #003366; /* Deep Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-industry-news__section-heading--light {
    color: #FFFFFF;
}

.page-industry-news__section-heading--light::after {
    background-color: #FFCC00;
}

.page-industry-news__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-industry-news__paragraph--light {
    color: #E0E0E0;
}

/* Buttons */
.page-industry-news__btn-primary,
.page-industry-news__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-industry-news__btn-primary {
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Deep Blue */
    border: 2px solid #FFCC00;
}

.page-industry-news__btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #001a33;
}

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

.page-industry-news__btn-secondary:hover {
    background-color: #003366;
    color: #FFCC00;
}

/* Hero Section */
.page-industry-news__hero {
    background: linear-gradient(135deg, #003366, #001a33);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 450px;
    flex-wrap: wrap;
}

.page-industry-news__hero-content {
    max-width: 600px;
    text-align: left;
}

.page-industry-news__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFCC00; /* Gold */
}

.page-industry-news__subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-industry-news__hero-image-container {
    max-width: 500px;
    flex-shrink: 0;
}

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

/* Introduction Section */
.page-industry-news__introduction {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-industry-news__introduction .page-industry-news__btn-secondary {
    margin-top: 20px;
    color: #003366;
    border-color: #003366;
}

.page-industry-news__introduction .page-industry-news__btn-secondary:hover {
    background-color: #003366;
    color: #FFCC00;
}

/* Articles Grid Section */
.page-industry-news__articles {
    padding: 60px 0;
    background-color: #ffffff;
}

.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: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.page-industry-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px 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,
.page-industry-news__article-card p,
.page-industry-news__article-card a {
    padding: 0 25px;
}

.page-industry-news__article-title {
    font-size: 1.5em;
    color: #003366;
    margin: 20px 0 10px;
}

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

.page-industry-news__article-btn {
    display: inline-block;
    background-color: #003366; /* Deep Blue */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-industry-news__article-btn:hover {
    background-color: #004d99;
}

/* Call to Action Section */
.page-industry-news__cta-section {
    background: linear-gradient(45deg, #003366, #004d99);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

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

.page-industry-news__cta-section .page-industry-news__btn-primary {
    background-color: #FFCC00;
    color: #003366;
    border-color: #FFCC00;
}

.page-industry-news__cta-section .page-industry-news__btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #001a33;
}

.page-industry-news__cta-section .page-industry-news__btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-industry-news__cta-section .page-industry-news__btn-secondary:hover {
    background-color: #fff;
    color: #003366;
}

/* About Us Section */
.page-industry-news__about-us {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.page-industry-news__about-us .page-industry-news__btn-primary {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-industry-news__hero-content {
        text-align: center;
    }

    .page-industry-news__title {
        font-size: 2.8em;
    }

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

    .page-industry-news__hero-image-container {
        max-width: 80%;
    }

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

@media (max-width: 768px) {
    .page-industry-news__section-heading {
        font-size: 2em;
    }

    .page-industry-news__title {
        font-size: 2.2em;
    }

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

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

    .page-industry-news__hero {
        padding: 60px 15px;
    }

    .page-industry-news__introduction,
    .page-industry-news__articles,
    .page-industry-news__cta-section,
    .page-industry-news__about-us {
        padding: 40px 0;
    }

    .page-industry-news__btn-primary,
    .page-industry-news__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-industry-news__cta-buttons .page-industry-news__btn-primary,
    .page-industry-news__cta-buttons .page-industry-news__btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-industry-news__article-card p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-industry-news__title {
        font-size: 1.8em;
    }

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

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

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