/* style/industry-news.css */

/* Base styles for the industry news page */
.page-industry-news {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

/* Text highlighting for keywords */
.page-industry-news .text-highlight {
    color: #1A2B5B;
    font-weight: bold;
}

/* Hero Section */
.page-industry-news__hero {
    background: linear-gradient(135deg, #1A2B5B 0%, #3a4b7d 100%);
    color: #ffffff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-industry-news__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-industry-news__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700;
}

.page-industry-news__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-industry-news__hero-image-wrapper {
    max-width: 600px;
    width: 100%;
    z-index: 1;
}

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

/* General Section Styles */
.page-industry-news__section {
    padding: 60px 20px;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

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

.page-industry-news__section-title {
    font-size: 2.2em;
    color: #1A2B5B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.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__text-content {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

/* Images within content */
.page-industry-news__image-with-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    gap: 15px;
}

.page-industry-news__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news__image-caption {
    font-style: italic;
    color: #666;
    font-size: 0.95em;
    text-align: center;
}

.page-industry-news__image-full-width {
    margin: 40px 0;
    text-align: center;
}
.page-industry-news__image-full-width .page-industry-news__content-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Call to Action (CTA) Button */
.page-industry-news__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B5B;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

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

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

/* CTA Block (image and text) */
.page-industry-news__cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    text-align: center;
}

.page-industry-news__cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.page-industry-news__cta-heading {
    font-size: 1.8em;
    color: #1A2B5B;
    margin-bottom: 15px;
}

.page-industry-news__cta-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

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

.page-industry-news__news-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    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 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-industry-news__news-card h3 {
    font-size: 1.4em;
    color: #1A2B5B;
    margin: 20px 20px 10px;
    flex-grow: 1;
}

.page-industry-news__news-card h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-industry-news__news-card h3 a:hover {
    color: #FFD700;
}

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

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

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

/* Final Call to Action */
.page-industry-news__call-to-action {
    background-color: #1A2B5B;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.page-industry-news__cta-final .page-industry-news__section-title {
    color: #FFD700;
}

.page-industry-news__cta-final .page-industry-news__text-content {
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-industry-news__download-app-text {
    margin-top: 20px;
    font-size: 1.1em;
}

.page-industry-news__download-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-news__download-link:hover {
    color: #e6c200;
    text-decoration: underline;
}


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

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

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

    .page-industry-news__cta-heading {
        font-size: 1.5em;
    }

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

@media (max-width: 768px) {
    .page-industry-news__hero {
        flex-direction: column;
        padding: 60px 15px;
        gap: 30px;
    }

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

    .page-industry-news__section {
        padding: 40px 15px;
    }

    .page-industry-news__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .page-industry-news__image-with-text {
        flex-direction: column;
        gap: 10px;
    }

    .page-industry-news__cta-block {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

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

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

    .page-industry-news__news-card {
        margin: 0 auto;
        max-width: 400px;
    }
}

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

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

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

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

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

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