/* =========================================================
   ARC Location Widgets - Title Styling Fix
   File: arc-location-widgets.v2.css

   Purpose:
   - Make NON-linked titles (p/span) appear white like linked titles (a)
   - Keep hover underline ONLY for real links
   ========================================================= */

.location-widget .widget-header a,
.location-widget .widget-header p,
.location-widget .widget-header span {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.3;
  margin: 0;           /* important for <p> default margin */
  display: block;
}

/* Hover styling applies only to actual links */
.location-widget .widget-header a:hover {
  text-decoration: underline;
  color: #ffffff;
}
