/* NOTICE SECTIONS */
.notice-sections {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Individual Column */
.notice-column {
  background: #f4e5e8;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(128, 0, 0, 0.12);
  border-top: 5px solid #800020;
  transition: transform 0.3s ease;
}

.notice-column:hover {
  transform: translateY(-5px);
  border-top-color: #D4AF37;
}

/* Title */
.notice-title {
  font-size: 22px;
  color: #800020;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.notice-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 5px;
}

/* List */
.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #d9b6be;
}

.notice-list li:last-child {
  border-bottom: none;
}

.notice-list a {
  display: block;
  font-size: 16px;
  color: #800020;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.notice-list a:hover {
  color: #D4AF37;
}

.notice-date {
  display: block;
  font-size: 13px;
  color: #555;
  margin-top: 4px;
}

/* Empty Message */
.no-notice {
  text-align: center;
  font-size: 15px;
  color: #777;
}
