/* Independent alignment module for common banner headings. */
.commonbanner .fctel-banner-copy {
  position: relative;
  display: inline-block;
  padding-bottom: 26px;
  text-align: center;
}

.commonbanner .fctel-banner-copy > h3 {
  margin: 0;
  text-align: center;
}

.commonbanner .fctel-banner-copy > p {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 50%;
  width: max-content;
  max-width: none;
  margin: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 767px) {
  .commonbanner .fctel-banner-copy {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }

  .commonbanner .fctel-banner-copy > p {
    position: static;
    width: auto;
    max-width: 100%;
    transform: none;
    white-space: normal;
  }
}
