.page-news-platform-announcements {
    color: #ffffff; /* Default text color for dark background */
    background-color: #000000; /* Ensure consistency with body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-news-platform-announcements__hero-section {
    position: relative;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background-color: #000000; /* Ensure dark background for hero */
    overflow: hidden;
}

.page-news-platform-announcements__hero-content {
    max-width: 900px;
    z-index: 2;
    padding: 20px;
}

.page-news-platform-announcements__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-platform-announcements__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-news-platform-announcements__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    width: 100%; /* Ensure container takes full width */
    max-width: 400px; /* Limit button group width */
    box-sizing: border-box;
}

.page-news-platform-announcements__btn-primary,
.page-news-platform-announcements__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    flex-grow: 1; /* Allow buttons to grow */
    text-align: center;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box; /* Include padding and border in element's total width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
}

.page-news-platform-announcements__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-news-platform-announcements__btn-primary:hover {
    background-color: #1a8cc4;
    border-color: #1a8cc4;
    transform: translateY(-2px);
}

.page-news-platform-announcements__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-news-platform-announcements__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-news-platform-announcements__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-news-platform-announcements__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay */
    filter: brightness(0.5); /* Darken image to ensure text contrast on dark background */
}

.page-news-platform-announcements__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #0d0d0d; /* Slightly lighter dark background for content */
    color: #f0f0f0; /* Light text for content */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
    margin-top: -60px; /* Pull content up over hero section slightly */
}

.page-news-platform-announcements__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(38, 169, 224, 0.3);
}

.page-news-platform-announcements__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-news-platform-announcements__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-news-platform-announcements__card {
    background-color: #1a1a1a; /* Darker background for cards */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-news-platform-announcements__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-news-platform-announcements__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(38, 169, 224, 0.2);
}

.page-news-platform-announcements__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #26A9E0;
    flex-grow: 1; /* Allow title to take up space */
}

.page-news-platform-announcements__card-title a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news-platform-announcements__card-title a:hover {
    color: #4dc2ff;
}

.page-news-platform-announcements__card-description {
    font-size: 0.95em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-news-platform-announcements__btn-text {
    display: inline-block;
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border: 1px solid #26A9E0;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-news-platform-announcements__btn-text:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-news-platform-announcements__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-news-platform-announcements__list-item {
    background-color: #1a1a1a;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #f0f0f0;
    font-size: 1.05em;
    border-left: 5px solid #26A9E0;
}

.page-news-platform-announcements__list-item strong {
    color: #26A9E0;
}

.page-news-platform-announcements__benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}