/* ============================= */
/* Notice Detail Styling */
/* ============================= */

.notice-detail-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.notice-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.notice-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}

.sidebar-notices {
  background: #f8f9fa;
  border-radius: 0.5rem;
}

.sidebar-notices ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

.sidebar-notices ul li a:hover {
  color: #0d6efd;
}

.sidebar-notices img {
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .notice-detail-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .sidebar-notices {
    margin-top: 2rem;
  }
}
