section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
}

#announcements {
    background-color: black;
    color: whitesmoke;
    border: 1px solid whitesmoke;
}

#announcements .content {
    background-color: whitesmoke;
    color: black;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#news {
    background-color: black;
    color: whitesmoke;
    border: 1px solid whitesmoke;
}

#news .content {
    background-color: whitesmoke;
    color: black;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.news-container {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-thumbnail {
    width: 30%;
    min-width: 150px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.news-details {
    padding: 15px;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-details h3 {
    margin: 0 0 8px 0;
    font-family: 'Georgia', serif;
    font-size: 1.3em;
    color: #333;
}

.news-date {
    font-family: 'Georgia', serif;
    font-size: 0.9em;
    color: #666;
    margin: 0 0 8px 0;
}

.news-excerpt {
    font-family: 'Georgia', serif;
    font-size: 1em;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

p {
    font-family: 'Georgia', serif;
    font-size: 2em;
    color: #333;
}

blockquote {
    font-family: 'Georgia', serif;
    font-size: 1.2em;
    color: #333;
    border-left: 4px solid #ccc;
    padding-left: 15px;
    margin: 20px 0;
}



