.announcement-box {
	text-align: center;
	font-family: proxima-nova, sans-serif;
	font-size: 16px;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 15px;
}

.announcement-body {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}
h2, .h2 {
    font-size: 30px;
    font-weight: bolder;
}
/* Ensure the image fits well */
.announcement-image img {
    width: 30%;
    height: auto;
    border-bottom: 1px solid #eee;
}
.announcement-footer {
	font-weight: bold;
    display: flex;
    justify-content: space-between; /* Aligns the date and read time on opposite ends */
    align-items: center;
    font-size: 14px;
    color: #999;
    padding-top: 10px;
    border-top: 1px solid #eee; /* Adds a line above the footer for visual separation */
}

.announcement-read-time {
    font-style: italic; /* Italicize the read time */
}