.announcements_container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.announcements_container h2 {
  color: #00796b;
  margin-bottom: 20px;
  border-bottom: 2px solid #cceee9;
  padding-bottom: 10px;
}

.announcement {
  background-color: #ffffff;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 5px solid #009688;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.announcement h3 {
  color: #00796b;
  margin-bottom: 10px;
}

.announcement-meta {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.announcement-content {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.announcement-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

.no-image {
  color: #c62828;
  font-style: italic;
  margin-top: 10px;
}
.event-video {
  margin-top: 15px;
}
.event-video video, .event-video iframe {
  max-width: 100%;
  border-radius: 8px;
}

/* Responsive design */
@media (max-width: 768px) {
  .announcements_container {
    padding: 15px;
  }

  .announcement h3 {
    font-size: 18px;
  }

  .announcement-meta {
    font-size: 13px;
  }

  .announcement-content {
    font-size: 14px;
  }
}
