/* Box */
.acf-cta {
   padding: clamp(34px, 46 * (100vw / 1920), 46px);
   background: transparent;
   border-top: 1px solid #000;
   border-bottom: 1px solid #000;
   margin-bottom: 1.6em;
}

.acf-cta:last-child {
   margin-bottom: 0;
}

/* Layout row */
.acf-cta__row {
   display: flex;
   align-items: flex-start;
   gap: 28px;
   margin-bottom: clamp(20px, 28 * (100vw / 1920), 28px);
}

/* Logo 74x74, 1:1, border */
.acf-cta__logo {
   display: inline-block;
   width: 74px;
   height: 74px;
   border: 1px solid #818181;
   box-sizing: border-box;
   flex: 0 0 74px;
   overflow: hidden;
}
.acf-cta__logo img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.acf-cta__content {
   font-weight: 500;
   text-transform: uppercase;
}

/* Bottom H1 with link (no backgrounds) */
.acf-cta__action {
   font-weight: 500;
   background: transparent;
}
.acf-cta__action a {
   font-weight: inherit;
   text-transform: uppercase;
   text-decoration: underline;
   color: inherit;
   background: none;
}

@media (max-width: 1024px) {
   .acf-cta {
      padding-left: 0;
      padding-right: 0;
   }
}

