/* style/industry-news.css */
.page-industry-news {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #1A202C; /* Dark background */
    line-height: 1.6;
}

.page-industry-news__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1A202C 0%, #3a4a5a 100%); /* Darker gradient */
    color: #FFD700;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-industry-news__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold title */
    font-weight: bold;
}

.page-industry-news__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0; /* Lighter text for contrast */
}

.page-industry-news__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-industry-news__hero-image-wrapper {
    margin-top: 40px;
    max-width: 100%;
    width: 800px;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-industry-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-industry-news__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #2a3440; /* Slightly lighter dark for content sections */
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold title */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-industry-news__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-industry-news__content-wrapper p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    color: #e0e0e0; /* Light gray text */
    text-align: justify;
}

.page-industry-news__content-wrapper strong {
    color: #FFD700;
}

.page-industry-news__content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.page-industry-news__button--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-industry-news__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

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

.page-industry-news__button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2);
}

.page-industry-news__button--action {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: #007bff; /* A distinct color for action */
    color: #fff;
    border-radius: 5px;
    padding: 12px 25px;
}

.page-industry-news__button--action:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

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

.page-industry-news__related-articles {
    background-color: #1A202C;
    color: #f0f0f0;
    text-align: center;
    padding-bottom: 20px;
}

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

.page-industry-news__article-card {
    background-color: #2a3440;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

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

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

.page-industry-news__article-title {
    font-size: 1.4em;
    color: #FFD700;
    margin: 15px 20px 10px;
    line-height: 1.4;
}

.page-industry-news__article-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-industry-news__article-title a:hover {
    text-decoration: underline;
}

.page-industry-news__article-description {
    font-size: 0.95em;
    color: #c0c0c0;
    margin: 0 20px 20px;
    text-align: left;
}

.page-industry-news__button--read-more {
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    margin: 0 20px 20px;
    display: inline-block;
}

.page-industry-news__button--read-more:hover {
    background-color: #e6c200;
}

.page-industry-news__conclusion {
    background-color: #1A202C;
    text-align: center;
    padding-bottom: 80px;
    margin-bottom: 0;
}

.page-industry-news__final-cta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 40px 15px;
    }

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

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

    .page-industry-news__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

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

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

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

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

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