#inner-page-wrapper > .container {
  width: 100%;
  padding: 0;
}

#content p#breadcrumbs {
  padding-left: 15px;
  padding-right: 15px;
}

#content .entry-title {
  padding-left: 15px;
  padding-right: 15px;
}

.cta-container {
  position: relative;
}

.cta-item {
  position: relative;
  width: 25%;
}

.cta-item:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 90%);
  z-index: 10;
}

.cta-item a {
  display: block;
  position: relative;
}

.cta-image {
  opacity: 0;
  z-index: 1;
  transition: all var(--default-transition);
}

.cta-image::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 283/328;
  width: 88.43%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../../images/logo-mono.png) no-repeat center center/contain;
  filter: brightness(0) invert(1);
  z-index: 5;
  opacity: 0.05;
}

.cta-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
}

.cta-image img {
  aspect-ratio: 320/600;
}

.cta-item a:hover .cta-image {
  opacity: 1;
}

.cta-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cta-name {
  font-family: var(--font-family-title-alt);
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (max-width: 1366px) {
  .cta-name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .cta-item {
    width: 50%;
  }
  .cta-image {
    opacity: 1;
  }
  .cta-name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .cta-name {
    font-size: 15px;
  }
}