/* Skills grid.

   The icon colours are deliberately NOT set here. css/joseph-custom.css gives
   each brand its own colour (.fa-hubspot #FF5C35, .fa-wordpress #3858E9,
   .fa-cpanel #EA6930) and a blanket rule here would flatten all three to one
   colour, which is not what the original does. */

{# Card background is transparent by default, matching the original theme.
   Emitted only when it is actually set to something visible: when the module
   has no saved instance data these expressions render empty and the rule
   compiled to the literal `background: rgba(,)`, which is invalid CSS and was
   silently discarded by the browser. #}
{% if module.style.card_bg and module.style.card_bg.opacity > 0 %}
.services-section .services {
  background: rgba(, );
}
{% endif %}

.services-section .services-title {
  color: ;
}

/* .fancy-list styles the <a>; the number badge is its ::before counter. */
.services-section .fancy-list a,
.services-section .fancy-list a:before {
  background: ;
  color: ;
}

.services-section .fancy-list a:hover {
  background: ;
}
