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

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

.page-industry-news__hero {
    background: linear-gradient(135deg, #FFD700 0%, #000000 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-industry-news__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-industry-news__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
    overflow: hidden;
}

.page-industry-news__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

.page-industry-news__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 15px 30px;
    border-radius: 5px;
    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: #e6c200;
    transform: translateY(-2px);
}

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-industry-news__introduction,
.page-industry-news__articles,
.page-industry-news__cta-section,
.page-industry-news__why-us,
.page-industry-news__final-cta {
    padding: 60px 0;
}

.page-industry-news__introduction {
    background-color: #FFFFFF;
}

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

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

.page-industry-news__articles {
    background-color: #f0f0f0;
}

.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: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.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-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-industry-news__article-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news__article-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-industry-news__article-title a:hover {
    color: #FFD700;
}

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

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

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

.page-industry-news__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

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

.page-industry-news__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-industry-news__cta-button--secondary {
    background-color: #FFD700;
    color: #000000;
    margin-top: 20px;
}

.page-industry-news__cta-button--secondary:hover {
    background-color: #e6c200;
}

.page-industry-news__cta-small-text {
    font-size: 0.9em;
    margin-top: 25px;
    color: #cccccc;
}

.page-industry-news__cta-small-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-industry-news__cta-small-text a:hover {
    text-decoration: underline;
}

.page-industry-news__why-us {
    background-color: #FFFFFF;
}

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

.page-industry-news__why-us-item {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-industry-news__why-us-item:hover {
    transform: translateY(-5px);
}

.page-industry-news__why-us-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-industry-news__why-us-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news__why-us-description {
    font-size: 1em;
    color: #555;
}

.page-industry-news__final-cta {
    background: linear-gradient(45deg, #000000 0%, #333333 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
}

.page-industry-news__final-cta-title {
    font-size: 3em;
    margin-bottom: 25px;
    font-weight: bold;
    color: #FFD700;
}

.page-industry-news__final-cta-text {
    font-size: 1.3em;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-industry-news__final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

    .page-industry-news__final-cta-title {
        font-size: 2.5em;
    }

    .page-industry-news__final-cta-text {
        font-size: 1.1em;
    }
}

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

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

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

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

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

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

    .page-industry-news__article-content {
        padding: 20px;
    }

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

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

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

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

    .page-industry-news__final-cta-text {
        font-size: 1em;
    }

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

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

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

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

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

    .page-industry-news__cta-button {
        width: 100%;
        box-sizing: border-box;
    }

    .page-industry-news__final-cta-buttons .page-industry-news__cta-button {
        width: auto;
    }
}