/* 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, #0056b3);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-industry-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-industry-news__btn--primary {
    background-color: #ffc107;
    color: #333;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.page-industry-news__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-industry-news__btn--secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 12px 25px;
}

.page-industry-news__btn--secondary:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

.page-industry-news__section {
    padding: 60px 0;
}

.page-industry-news__section--alt-bg {
    background-color: #e9ecef;
}

.page-industry-news__section-title {
    font-size: 2.8em;
    color: #007bff;
    text-align: center;
    margin-bottom: 50px;
    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;
    border-radius: 2px;
}

.page-industry-news__sub-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.page-industry-news__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-industry-news__text-content {
    flex: 2;
}

.page-industry-news__image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-industry-news__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-industry-news__text-content p {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #495057;
}

.page-industry-news__call-to-action {
    background-color: #007bff;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.page-industry-news__call-to-action-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-industry-news__call-to-action-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e9ecef;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-news__content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .page-industry-news__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-industry-news__image-wrapper {
        margin-top: 30px;
        order: -1; /* Image appears above text on smaller screens */
    }

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

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

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

    .page-industry-news__sub-title {
        font-size: 1.6em;
    }

    .page-industry-news__call-to-action-title {
        font-size: 2.5em;
    }

    .page-industry-news__call-to-action-description {
        font-size: 1.1em;
    }
}

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

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

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

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

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

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

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

    .page-industry-news__call-to-action {
        padding: 60px 0;
    }

    .page-industry-news__call-to-action-title {
        font-size: 2em;
    }

    .page-industry-news__call-to-action-description {
        font-size: 1em;
    }

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