.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.news-card {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.news-card h2 {
    font-size: 1.25em;
    color: #fff;
    margin-bottom: 10px;
}

.news-card p {
    font-size: 0.9em;
    color: #bbb;
    margin-bottom: 20px;
}

.news-card .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #007bff;
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.news-card .btn:hover {
    background-color: #0056b3;
}

.bold-light-grey-link {
    color: lightgrey;
    font-weight: bold;
    text-decoration: none;
}

.bold-light-grey-link:hover {
    text-decoration: underline;
}
.news-content-container {
    background-color: rgba(0, 0, 0, 0.8); /* Dark transparent background */
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
}

.news-content {
    text-align: left; /* Align text to the left within the container */
}

.news-content h1,
.news-content h3 {
    text-align: center;
    color: #fff;
}

.news-content p {
    font-size: 1.1em;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-content img {
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

.news-content a {
    color: darkgrey;
    font-weight: bold;
    text-decoration: none;
}

.news-content a:hover {
    text-decoration: underline;
}