/* style/industry-news.css */
.page-industry-news {
    --primary-color: #003366;
    --accent-color: #FFCC00;
    --text-light: #f0f0f0;
    --text-dark: #333;
    --background-light: #ffffff;
    --background-dark: #0a1e33;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.page-industry-news__hero {
    background: linear-gradient(135deg, var(--primary-color), #1a4d80);
    color: var(--text-light);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: 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.2em;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

.page-industry-news__cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-industry-news__cta-button:hover {
    background-color: #e6b800; /* Slightly darker accent */
    transform: translateY(-2px);
}

.page-industry-news__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    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: var(--accent-color);
    border-radius: 2px;
}

.page-industry-news__overview,
.page-industry-news__articles,
.page-industry-news__deep-dive,
.page-industry-news__cta-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-industry-news__overview p,
.page-industry-news__deep-dive p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.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: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 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 {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-industry-news__article-card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    padding: 15px 20px 10px;
    margin: 0;
}

.page-industry-news__article-card h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-industry-news__article-card h3 a:hover {
    color: var(--accent-color);
}

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

.page-industry-news__read-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    margin: 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-industry-news__read-more:hover {
    background-color: #002244; /* Darker primary */
}

.page-industry-news__deep-dive {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.page-industry-news__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
}

.page-industry-news__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-industry-news__inline-cta {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-industry-news__inline-cta:hover {
    color: var(--accent-color);
}

.page-industry-news__cta-section {
    background: linear-gradient(135deg, var(--primary-color), #002244);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.page-industry-news__cta-section .page-industry-news__section-title {
    color: var(--accent-color);
}

.page-industry-news__cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.page-industry-news__cta-button--secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.page-industry-news__cta-button--secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-industry-news__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: transform 0.3s ease;
}

.page-industry-news__floating-ad:hover {
    transform: translateY(-5px);
}

.page-industry-news__floating-ad a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-industry-news__floating-ad-icon {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news__section-title {
        font-size: 2em;
    }
    .page-industry-news__article-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 60px 0;
    }
    .page-industry-news__hero-title {
        font-size: 2em;
    }
    .page-industry-news__hero-description {
        font-size: 1.1em;
    }
    .page-industry-news__overview,
    .page-industry-news__articles,
    .page-industry-news__deep-dive,
    .page-industry-news__cta-section {
        padding: 40px 0;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
    }
    .page-industry-news__sub-title {
        font-size: 1.5em;
    }
    .page-industry-news__floating-ad {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 0.9em;
    }
    .page-industry-news__floating-ad-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news__hero-description {
        font-size: 1em;
    }
    .page-industry-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news__section-title {
        font-size: 1.5em;
    }
    .page-industry-news__sub-title {
        font-size: 1.3em;
    }
    .page-industry-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-news__floating-ad {
        bottom: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 0.8em;
    }
    .page-industry-news__floating-ad-icon {
        width: 18px;
        height: 18px;
    }
}