/*
 * The /services listing grid.
 *
 * The live page carries these two rules in an inline <style> block at the top
 * of application/views/services/services_tpl.php rather than in any vendored
 * stylesheet, so the ported style.css has no trace of them — it only styles
 * the older `.col-lg-3` version of the grid. Without them the cards lose their
 * border and padding and the headings render as blue links.
 *
 * Kept in their own file so the vendored stylesheets stay byte-identical.
 * Loaded last.
 */

/* --- Service cards ------------------------------------------------------ */

.service_sec .col-lg-4 {
  border: 1px solid #ccc;
  padding: 30px;
}

/*
 * The whole card is the link on the live site — the anchor wraps the icon,
 * heading and blurb — so it has to fill the cell rather than sit inline, and
 * it inherits body colour instead of Bootstrap's link blue.
 */
.service_sec .col-lg-4 a {
  display: block;
  color: #212529;
}
