/* style/blog-industry-news.css */
.page-blog-industry-news {
    font-family: Arial, sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-blog-industry-news__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for hero section */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    background-color: #000000; /* Fallback background */
}

.page-blog-industry-news__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-blog-industry-news__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
    border-radius: 8px;
}

.page-blog-industry-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FCBC45;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-blog-industry-news__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-blog-industry-news__hero-button {
    display: inline-block;
    background-color: #FCBC45;
    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;
}

.page-blog-industry-news__hero-button:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

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

.page-blog-industry-news__latest-updates,
.page-blog-industry-news__market-trends,
.page-blog-industry-news__regulatory-news,
.page-blog-industry-news__innovation-tech,
.page-blog-industry-news__call-to-action {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-blog-industry-news__news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-industry-news__news-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-industry-news__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-blog-industry-news__news-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
}

.page-blog-industry-news__news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-blog-industry-news__news-title {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

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

.page-blog-industry-news__news-title a:hover {
    color: #FCBC45;
}

.page-blog-industry-news__news-excerpt {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-blog-industry-news__read-more {
    display: inline-block;
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

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

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

.page-blog-industry-news__market-image,
.page-blog-industry-news__innovation-image {
    width: 600px;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-blog-industry-news__text-content {
    flex: 1;
}

.page-blog-industry-news__text-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #333333;
}

.page-blog-industry-news__explore-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-industry-news__explore-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-blog-industry-news__call-to-action {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

.page-blog-industry-news__cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.page-blog-industry-news__cta-button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-blog-industry-news__cta-button--register:hover {
    background-color: #E0E0E0;
    transform: translateY(-3px);
}

.page-blog-industry-news__cta-button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-blog-industry-news__cta-button--login:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-industry-news__hero-title {
        font-size: 2.8em;
    }
    .page-blog-industry-news__section-title {
        font-size: 2em;
    }
    .page-blog-industry-news__content-wrapper {
        flex-direction: column;
    }
    .page-blog-industry-news__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-blog-industry-news__market-image,
    .page-blog-industry-news__innovation-image {
        width: 100%;
        height: auto;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .page-blog-industry-news {
        padding-top: var(--header-offset, 80px);
    }
    .page-blog-industry-news__hero-section {
        height: 450px;
    }
    .page-blog-industry-news__hero-title {
        font-size: 2em;
    }
    .page-blog-industry-news__hero-description {
        font-size: 1em;
    }
    .page-blog-industry-news__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-blog-industry-news__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .page-blog-industry-news__news-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-industry-news__news-image,
    .page-blog-industry-news__market-image,
    .page-blog-industry-news__innovation-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
        min-height: 200px; /* Enforce minimum size */
    }
    .page-blog-industry-news__news-title {
        font-size: 1.3em;
    }
    .page-blog-industry-news__cta-description {
        font-size: 1.1em;
    }
    .page-blog-industry-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-industry-news__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-blog-industry-news__content-wrapper,
    .page-blog-industry-news__content-wrapper--reverse {
        gap: 20px;
    }
    /* Ensure all content area images are at least 200px wide */
    .page-blog-industry-news img {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-blog-industry-news__hero-section {
        height: 350px;
    }
    .page-blog-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-blog-industry-news__hero-description {
        font-size: 0.9em;
    }
    .page-blog-industry-news__hero-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-blog-industry-news__section-title {
        font-size: 1.5em;
    }
    .page-blog-industry-news__cta-description {
        font-size: 1em;
    }
}