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

.page-industry-news h1, .page-industry-news h2, .page-industry-news h3 {
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: bold;
}

.page-industry-news h1 {
    font-size: 2.8rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid #FFD700;
}

.page-industry-news h2 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.page-industry-news h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-industry-news h3 {
    font-size: 1.6rem;
    color: #FFD700;
    margin-top: 1.5rem;
}

.page-industry-news p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
}

.page-industry-news strong {
    color: #2C3E50;
}

.page-industry-news__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2C3E50 0%, #4a6c8e 100%); /* Darker gradient for hero */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news__hero h1 {
    color: #FFD700; /* Gold text on dark background */
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    border-bottom: none;
}

.page-industry-news__hero p {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.2rem;
}

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

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

.page-industry-news__hero-content {
    position: relative;
    z-index: 1;
}

.page-industry-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin-top: 20px;
}

.page-industry-news__btn--primary {
    background-color: #FFD700;
    color: #2C3E50; /* Dark text on gold button */
}

.page-industry-news__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-industry-news__articles, .page-industry-news__analysis, .page-industry-news__cta-section, .page-industry-news__related-links {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

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

.page-industry-news__article-card, .page-industry-news__challenge-opportunity-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px 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__article-card:hover, .page-industry-news__challenge-opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-industry-news__article-card h3, .page-industry-news__challenge-opportunity-card h3 {
    padding: 20px;
    margin-top: 0;
    font-size: 1.4rem;
    color: #2C3E50; /* Dark blue for card titles */
}

.page-industry-news__article-card p, .page-industry-news__challenge-opportunity-card p {
    padding: 0 20px 20px;
    font-size: 1rem;
    flex-grow: 1;
}

.page-industry-news__read-more {
    display: block;
    text-align: right;
    padding: 0 20px 20px;
    color: #FFD700; /* Gold link */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-news__read-more:hover {
    color: #e6c200;
}

.page-industry-news__analysis-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-industry-news__analysis-item {
    background-color: #2C3E50;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-industry-news__analysis-item h3 {
    color: #FFD700; /* Gold text on dark background */
    margin-bottom: 15px;
}

.page-industry-news__analysis-item p {
    color: #e0e0e0;
    font-size: 1rem;
}

.page-industry-news__analysis-image, .page-industry-news__tech-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-industry-news__cta-section {
    background-color: #2C3E50;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    margin-top: 60px;
}

.page-industry-news__cta-section h2 {
    color: #FFD700; /* Gold text on dark background */
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.page-industry-news__cta-section h2::after {
    background-color: #FFD700;
}

.page-industry-news__cta-section p {
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

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

.page-industry-news__btn--accent {
    background-color: #FFD700;
    color: #2C3E50; /* Dark text on gold button */
    border: 2px solid #FFD700;
}

.page-industry-news__btn--accent:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-industry-news__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background, gold border */
    border: 2px solid #FFD700;
}

.page-industry-news__btn--secondary:hover {
    background-color: #FFD700;
    color: #2C3E50; /* Dark text on gold background */
}

.page-industry-news__btn--tertiary {
    background-color: transparent;
    color: #fff; /* White text on dark background, white border */
    border: 2px solid #fff;
}

.page-industry-news__btn--tertiary:hover {
    background-color: #fff;
    color: #2C3E50; /* Dark text on white background */
}

.page-industry-news__related-links ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.page-industry-news__related-links li {
    margin-bottom: 10px;
}

.page-industry-news__related-links a {
    color: #2C3E50;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.page-industry-news__related-links a:hover {
    color: #FFD700;
}

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

    .page-industry-news__hero h1 {
        font-size: 2.5rem;
    }

    .page-industry-news h2 {
        font-size: 1.8rem;
    }

    .page-industry-news h3 {
        font-size: 1.4rem;
    }

    .page-industry-news__article-grid, .page-industry-news__analysis-points, .page-industry-news__challenge-opportunity-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .page-industry-news__hero h1 {
        font-size: 2rem;
    }

    .page-industry-news h2 {
        font-size: 1.6rem;
    }

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

    .page-industry-news__article-card h3 {
        font-size: 1.2rem;
    }

    .page-industry-news__article-card p {
        font-size: 0.95rem;
    }
}