/**
 * Footer CTA Block Styles
 * Final CTA with background image
 */

.footer-cta {
  position: relative;
  background: var(--dark-gray);
  color: var(--white);
  text-align: center;
  padding: 55px 40px;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .18;
}

.footer-cta-content {
  position: relative;
}

.footer-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--light-bg);
}

.footer-cta h2 span {
  color: var(--light-bg);
}

.footer-cta p {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 22px;
}

.footer-cta .phone-large {
  font-size: 38px;
  font-weight: 900;
  color: var(--orange);
  display: block;
  margin-bottom: 22px;
  letter-spacing: 2px;
}

.footer-cta .phone-large:hover {
  color: var(--cream);
}

/* Responsive */
@media (max-width: 600px) {
  .footer-cta {
    padding: 40px 20px;
  }
  
  .footer-cta h2 {
    font-size: 28px;
  }
  
  .footer-cta .phone-large {
    font-size: 28px;
  }
}
