/* ===== BULLETIN PAGE ===== */

body {
  margin: 0;
  background: #0a2a43; /* FDWC navy */
}

/* Section */
.bulletin-section {
  background: #0a2a43;
  padding: 90px 20px 120px;
  text-align: center;
}

/* Title */
.bulletin-title {
  color: #ffffff; /* WHITE text */
  font-size: 2.6rem;
  margin-bottom: 20px;
}

/* Gold bar */
.gold-divider {
  width: 160px;
  height: 4px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg, #b58e00, #ffd700, #b58e00);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255,215,0,0.6);
}

/* Viewer */
.bulletin-viewer {
  max-width: 900px;
  margin: 0 auto;
}

/* Bulletin images */
.bulletin-viewer img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Buttons */
.bulletin-actions {
  margin-top: 20px;
}

.bulletin-actions a,
.bulletin-actions button {
  display: inline-block;
  margin: 10px;
  padding: 14px 26px;
  background: #f5c400;
  color: #0a2a43;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.bulletin-actions a:hover,
.bulletin-actions button:hover {
  background: #ffd84d;
}
