/* Footer image + CTA styles moved from inc-footer.php */

.image-container-footer {
  position: relative;
  width: 100%;
  margin-bottom: 5%;
}

.image-container-footer img {
  width: 100%;
  display: block;
}

.text-overlay-footer {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  color: white;
  padding: 10px 20px;
  text-align: left;
  font-size: 58px;
  width: 90%;
  line-height: 55px;
}

.cta-button {
  display: inline-block;
  position: absolute;
  top: 60%;
  margin-inline-start: 30px;
  transform: translateY(-50%);
  background-color: rgba(242, 102, 94, 1);
  color: white;
  padding: 6px 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transform: skew(-21deg);
}

.cta-button .diamond-text-footer {
  transform: skew(21deg);
  font-size: 25px;
  color: white;
  font-weight: 600;
  text-align: center;
}

.cta-button:hover {
  background-color: rgb(204, 83, 77);
}

@media only screen and (max-width: 900px) {
  .text-overlay-footer {
    font-size: 16px;
    margin-inline-start: 0%;
    line-height: 16px;
  }
  .cta-button {
    padding: 2px 20px;
    margin-top: 10px;
    margin-inline-start: 5%;
  }
  .cta-button .diamond-text-footer {
    font-size: 10px;
  }
}