:root {
  --fbu-maroon: #6b0f0f;
  --fbu-muted: #4b4b4b;
}

/* Global readability */
.text-muted {
  color: var(--fbu-muted) !important;
}

/* Primary CTA: Request a Free Estimate */
.btn-fbu-estimate {
  border-radius: 0 !important;
  background-color: var(--fbu-maroon) !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  line-height: 1.05;
}

.btn-fbu-estimate:hover,
.btn-fbu-estimate:focus {
  background-color: #5b0c0c !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* Footer headings */
.footer-module-title {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Reviews "See More" */
.fbu-review-text {
  color: var(--fbu-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.fbu-review-text.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

