.page-blog-industry-news {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Explicitly set for content area if needed, though body handles it */
    padding-top: var(--header-offset, 120px); /* Mandatory header offset */
}

.page-blog-industry-news__hero-section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background-color: #000000; /* Dark background for hero for contrast */
    color: #FFFFFF; /* Light text on dark background */
    overflow: hidden; /* Ensure image doesn't overflow */
    display: flex; /* Use flex to center content */
    align-items: center;
    justify-content: center;
    min-height: 450px; /* Ensure a decent height for the hero */
}

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

.page-blog-industry-news__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, crop if necessary */
    opacity: 0.3; /* Subtly blend with background */
    display: block;
}

.page-blog-industry-news__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* min-height removed as parent flex handles alignment */
}

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

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

.page-blog-industry-news__hero-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color for CTA */
    color: #000000;
    padding: 15px 30px;
    border-radius: 8px;
    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: #e0a53b;
    transform: translateY(-2px);
}

.page-blog-industry-news__latest-news,
.page-blog-industry-news__responsible-gaming-promo,
.page-blog-industry-news__cta-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

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

.page-blog-industry-news__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-blog-industry-news__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-blog-industry-news__news-article {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-industry-news__news-article img {
    width: 100%;
    max-width: 800px; /* Ensure images are not too wide on large screens */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce min-size for content images */
    min-height: 200px;
}

.page-blog-industry-news__article-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}

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

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

.page-blog-industry-news__article-meta {
    font-size: 0.9em;
    color: #888888;
    margin-bottom: 15px;
}

.page-blog-industry-news__article-excerpt {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-industry-news__read-more-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

.page-blog-industry-news__responsible-gaming-promo {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
}

.page-blog-industry-news__responsible-gaming-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.page-blog-industry-news__responsible-gaming-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min-size */
    min-height: 200px;
}

.page-blog-industry-news__responsible-gaming-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-blog-industry-news__responsible-gaming-text p {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 20px;
}

.page-blog-industry-news__responsible-gaming-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-blog-industry-news__responsible-gaming-button:hover {
    background-color: #e0a53b;
}

.page-blog-industry-news__cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 10px;
    margin-top: 60px;
}

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

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

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

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

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

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

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

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

/* Responsive adjustments */
@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__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-blog-industry-news {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-blog-industry-news__hero-section {
        padding: 60px 15px;
        min-height: 350px;
    }
    .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__latest-news,
    .page-blog-industry-news__responsible-gaming-promo,
    .page-blog-industry-news__cta-section {
        padding: 15px;
        margin: 30px auto;
    }
    .page-blog-industry-news__section-title {
        font-size: 1.8em;
    }
    .page-blog-industry-news__section-intro {
        font-size: 0.95em;
    }
    .page-blog-industry-news__news-article {
        padding: 20px;
    }
    .page-blog-industry-news__news-article img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    /* Ensure all content area images are responsive and not too small */
    .page-blog-industry-news__news-article img,
    .page-blog-industry-news__responsible-gaming-content img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-blog-industry-news__article-title {
        font-size: 1.5em;
    }
    .page-blog-industry-news__article-excerpt {
        font-size: 0.95em;
    }
    .page-blog-industry-news__responsible-gaming-content {
        flex-direction: column;
        gap: 20px;
    }
    .page-blog-industry-news__responsible-gaming-text {
        text-align: center;
    }
    .page-blog-industry-news__cta-title {
        font-size: 2em;
    }
    .page-blog-industry-news__cta-description {
        font-size: 1em;
    }
    .page-blog-industry-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-industry-news__cta-button {
        width: 80%;
        max-width: 300px;
    }
}

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