.page-blog-latest-industry-news {
    color: #333333; /* Dark text for light body background */
}

.page-blog-latest-industry-news__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0A2463; /* Deep blue background */
    color: #ffffff;
    padding-bottom: 60px;
}

.page-blog-latest-industry-news__hero-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.page-blog-latest-industry-news__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.page-blog-latest-industry-news__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    line-height: 1.2;
}

.page-blog-latest-industry-news__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-blog-latest-industry-news__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463;
    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-latest-industry-news__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-blog-latest-industry-news__articles-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

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

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

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

.page-blog-latest-industry-news__article-card {
    background-color: #ffffff;
    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;
}

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

.page-blog-latest-industry-news__article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.page-blog-latest-industry-news__article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-blog-latest-industry-news__article-content {
    padding: 25px;
}

.page-blog-latest-industry-news__article-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

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

.page-blog-latest-industry-news__article-excerpt {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

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

.page-blog-latest-industry-news__read-more:hover {
    color: #0A2463;
}

.page-blog-latest-industry-news__cta-section {
    background-color: #0A2463;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

.page-blog-latest-industry-news__cta-description {
    font-size: 1.3em;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

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

.page-blog-latest-industry-news__cta-button--primary {
    background-color: #FFD700;
    color: #0A2463;
}

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

.page-blog-latest-industry-news__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

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

.page-blog-latest-industry-news__related-links-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.page-blog-latest-industry-news__related-links-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: center;
}

.page-blog-latest-industry-news__related-links-list li {
    margin-bottom: 15px;
}

.page-blog-latest-industry-news__related-links-list a {
    font-size: 1.1em;
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-latest-industry-news__related-links-list a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog-latest-industry-news__hero-title {
        font-size: 2.5em;
    }
    .page-blog-latest-industry-news__hero-description {
        font-size: 1.1em;
    }
    .page-blog-latest-industry-news__section-title {
        font-size: 2em;
    }
    .page-blog-latest-industry-news__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-blog-latest-industry-news__hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-latest-industry-news__hero-title {
        font-size: 2em;
    }
    .page-blog-latest-industry-news__hero-description {
        font-size: 1em;
    }
    .page-blog-latest-industry-news__articles-section,
    .page-blog-latest-industry-news__cta-section,
    .page-blog-latest-industry-news__related-links-section {
        padding: 40px 15px;
    }
    .page-blog-latest-industry-news__article-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-latest-industry-news__article-image img,
    .page-blog-latest-industry-news__hero-image img {
        max-width: 100%;
        height: auto;
    }
    .page-blog-latest-industry-news__article-image {
        height: 200px; /* Ensure minimum height for content images */
    }
    .page-blog-latest-industry-news__article-image img {
        min-width: 200px; /* Enforce minimum width for content images */
        min-height: 200px; /* Enforce minimum height for content images */
    }
    .page-blog-latest-industry-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-latest-industry-news__cta-button {
        width: 100%;
        max-width: 300px;
    }
    /* Ensure all images within the content area are responsive and do not overflow */
    .page-blog-latest-industry-news img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum width for all content images */
        min-height: 200px; /* Enforce minimum height for all content images */
    }
}

@media (max-width: 480px) {
    .page-blog-latest-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-blog-latest-industry-news__hero-description {
        font-size: 0.9em;
    }
    .page-blog-latest-industry-news__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-blog-latest-industry-news__section-title {
        font-size: 1.8em;
    }
    .page-blog-latest-industry-news__article-title {
        font-size: 1.3em;
    }
    .page-blog-latest-industry-news__cta-title {
        font-size: 2em;
    }
    .page-blog-latest-industry-news__cta-description {
        font-size: 1.1em;
    }
}