body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.main-container {
    max-width: 1200px;    /* ✅ 統一寬度（與輪播/news 一致） */
    margin: 0 auto;       /* ✅ 水平置中 */
    padding: 20px;        /* ✅ 內距保持模組間留白 */
  }
  @media (max-width: 768px) {
    .main-container {
      padding: 10px;
    }
  }
/* Breadcrumb 導航 */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 24px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .divider {
  margin: 0 8px;
  color: #6c757d;
}

.breadcrumb .current {
  color: #495057;
  font-weight: 600;
}

.news-new {
  background-color: #ff4d4f;
  color: white;
  font-size: 0.75em;
  padding: 2px 8px;
  border-radius: 12px;
  margin-right: 8px;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  vertical-align: text-top;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  animation: pulseNew 1.5s infinite;
}

/* 動畫讓 NEW 更吸引注意 */
@keyframes pulseNew {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
