/* style/news-platform-updates.css */

/* Base styles for the page content */
.page-news-platform-updates {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: var(--secondary-color); /* Assuming --secondary-color is #FFFFFF for light background */
}

/* Hero Section */
.page-news-platform-updates__hero-section {
    position: relative;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    overflow: hidden;
    background-color: #26A9E0;
    color: #ffffff;
}

.page-news-platform-updates__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6);
}

.page-news-platform-updates__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.page-news-platform-updates__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}}