.news-aggregator-container {
    background-color:  rgba(22, 56, 84, 1); /* Same dark navy background for both pages */
    opacity: 1; /* Ensure no inherited opacity */
}

/* The rest of your downloads styles */


/* Style for each post in the news aggregator */
.news-aggregator-post {
    background-color: #242a2ec5; /* Match the table background color from downloads.css */
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ffbe55; /* Correct border color */
}

/* Change background color on hover with transparency */
.news-aggregator-post:hover {
    background-color: rgba(0, 162, 255, 0.1); /* Matches the hover effect from downloads.css but with 34% opacity */
}

/* Title of the Open Graph post */
.news-aggregator-post h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.news-aggregator-post h3 a {
    text-decoration: none;
    color: #bfbfbf;
}

.news-aggregator-post h3 a:hover {
    text-decoration: underline;
    color: rgba(0, 122, 204, 0.24); /* Hover link color */
}

/* Open Graph Image styling */
.news-aggregator-post .og-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px #bfbfbf; /* Corrected box shadow color */
}

/* Description styling */
.news-aggregator-post p {
    font-size: 1em;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #bfbfbf;
}

/* Styling for the commentary section */
.news-aggregator-post p strong {
    font-size: 1.1em;
    color: #bfbfbf;
}

/* Date styling */
.news-aggregator-post p:last-of-type {
    font-style: italic;
    color: #bfbfbf;
}

/* Ensure the page is responsive */
@media (max-width: 768px) {
    main.main-content {
        padding: 15px;
    }

    .news-aggregator-post {
        padding: 10px;
    }

    .news-aggregator-post h3 {
        font-size: 1.3em;
    }
}

