/* style/industry-news.css */
.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-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-news__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-industry-news__text-content--center {
    text-align: center;
    max-width: 900px;
    margin: 20px auto;
}

.page-industry-news__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.05em;
    text-align: center;
}

.page-industry-news__btn--primary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

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

.page-industry-news__btn--secondary {
    background-color: #28a745;
    color: #fff;
    border: 2px solid #28a745;
}

.page-industry-news__btn--secondary:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    transform: translateY(-2px);
}

.page-industry-news__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Hero Section */
.page-industry-news__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

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

.page-industry-news__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
}

.page-industry-news__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #f0f8ff;
}

.page-industry-news__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

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

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.section-bg--light {
    background-color: #f8f9fa;
}

.section-bg--dark {
    background-color: #343a40;
    color: #fff;
}

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

.page-industry-news__news-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-industry-news__news-card h3 {
    font-size: 1.8em;
    color: #007bff;
    padding: 20px 20px 10px;
    margin-bottom: 0;
}

.page-industry-news__news-card p {
    font-size: 1em;
    color: #666;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-industry-news__news-card .page-industry-news__btn {
    margin: 0 20px 20px;
    align-self: flex-start;
    width: calc(100% - 40px);
}

/* Why Choose Us Section */
.page-industry-news__why-choose-us h2 {
    margin-bottom: 60px;
}

.page-industry-news__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.page-industry-news__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-industry-news__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.page-industry-news__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-industry-news__feature-description {
    font-size: 1em;
    color: #666;
}

/* CTA Section */
.page-industry-news__cta {
    text-align: center;
    background-color: #343a40;
    color: #fff;
    background-image: url('[GALLERY:bg:dark_abstract,geometric_pattern,subtle_texture]');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-industry-news__cta-content {
    position: relative;
    z-index: 2;
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news__hero-title {
        font-size: 3em;
    }
    .page-industry-news__hero-description {
        font-size: 1.2em;
    }
    .page-industry-news__section-title {
        font-size: 2em;
    }
    .page-industry-news__news-card h3 {
        font-size: 1.6em;
    }
    .page-industry-news__feature-title {
        font-size: 1.3em;
    }
    .page-industry-news__cta-title {
        font-size: 2.5em;
    }
    .page-industry-news__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 60px 20px;
    }
    .page-industry-news__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news__hero-description {
        font-size: 1.1em;
    }
    .page-industry-news__grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news__features-grid {
        grid-template-columns: 1fr;
    }
    .section-padding {
        padding: 60px 0;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-industry-news__cta-title {
        font-size: 2em;
    }
    .page-industry-news__cta-description {
        font-size: 1em;
    }
    .page-industry-news__cta-buttons .page-industry-news__btn--large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero-title {
        font-size: 2em;
    }
    .page-industry-news__hero-description {
        font-size: 1em;
    }
    .page-industry-news__btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }
    .page-industry-news__btn--large {
        padding: 12px 25px;
        font-size: 1.05em;
    }
    .page-industry-news__section-title {
        font-size: 1.5em;
    }
    .page-industry-news__cta-title {
        font-size: 1.8em;
    }
}