/* ============================== */
/* News, Notices & Downloads Page */
/* ============================== */

/* Outer container */
#news_box    {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

/* Row: News + Notices */
.middle_box {
  display: flex;                  
  justify-content: space-between; 
  width: 50%;                     /* make row take more space */
  max-width: 1100px;
  gap: 20px;
}

/* Inner Glass Boxes (News / Notices) */
.middle_box .inner_box {
  flex: 1;                        /* equal width for both */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Titles inside sections */
.middle_box h1,
#Down h1 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-align: center;
  letter-spacing: 1px;
}

/* Links (News, Notices, Downloads) */
.inner_box a,
.download-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.inner_box a:hover,
.download-grid a:hover {
  background: rgba(0, 123, 255, 0.25);
  transform: translateX(5px);
}

/* PDF Icon */
.inner_box img,
.download-grid img {
  height: 22px;
  width: 22px;
}

/* Downloads Section */
#Down {
  width: 50%; 
  max-width: 1100px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Grid inside Downloads */
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 30px;
}

/* Each column of downloads */
.download-grid .end_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
