
/* onepercent-locations-directory v1.3 brand + spacing tweaks
   Edit the variables below to adjust styling without touching PHP.
   This version intentionally does NOT remove underlines (site-level CSS will control that).
*/
:root {
  --opl-blue: #0b6ca6;          /* brand blue */
  --opl-dir-button-mt: 20px;    /* space above the CTA button */
  --opl-dir-section-py: 20px;   /* vertical padding inside cards/sections */
}

/* Button spacing & color */
.opl-card .opl-card__cta {
  margin-top: var(--opl-dir-button-mt);
  border-color: var(--opl-blue);
  color: var(--opl-blue);
}
.opl-card .opl-card__cta:hover,
.opl-card .opl-card__cta:focus {
  background: var(--opl-blue);
  color: #fff;
}

/* Section vertical padding (applies to directory sections if present) */
.opl-dir__state-section {
  padding-top: var(--opl-dir-section-py);
  padding-bottom: var(--opl-dir-section-py);
}
