/* ============================================
   1. Card borders + hover lift
   ============================================ */
.card, [class*="card"], [class*="tile"] {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease;
}
.card:hover, [class*="card"]:hover, [class*="tile"]:hover {
  border-color: #FF6B35;
}

/* ============================================
   2. Orange accent underline on section headings
   ============================================ */
h2 {
  position: relative;
  padding-bottom: 12px;
}
h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background-color: #FF6B35;
}

/* ============================================
   3. Announcement banner link color
   Status: NOT YET TESTED
   ============================================ */
[class*="announcement"] a, [class*="banner"] a {
  color: #FF6B35;
  text-decoration: underline;
}