.single-box {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: white;
  background-image: url('https://4867628.fs1.hubspotusercontent-na1.net/hubfs/4867628/25NASR5728%20Decision%20Making%20Campaign/dot-pattern.png');
  background-repeat: repeat-x;
  background-position: bottom center;
  position: relative;
}

.single-box__inner {
  background: transparent;
  padding: 80px 20px;
  max-width: 1340px;
  width: 100%;
}

.single-box__title {
  font-size: 42px;
}

.single-box__content {
  font-size: 26px;
}

.single-box__panel {
  width: 1012px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.single-box__actions {
  padding: 50px 0 70px;
}

.btn {
  background: #967126;
  padding: 20px 27px;
  border-radius: 0;
  font-size: 16px;
}

/* Single Box — 4-corner background images */
.single-box__inner {
  /* Swap these URLs for your 4 HubSpot image fields */
  background-image:
    url("https://4867628.fs1.hubspotusercontent-na1.net/hubfs/4867628/25NASR5728%20Decision%20Making%20Campaign/corner-grey-top-left.svg"),
    url("https://4867628.fs1.hubspotusercontent-na1.net/hubfs/4867628/25NASR5728%20Decision%20Making%20Campaign/corner-grey-top-right.svg"),
    url("https://4867628.fs1.hubspotusercontent-na1.net/hubfs/4867628/25NASR5728%20Decision%20Making%20Campaign/corner-grey-bottom-left.svg"),
    url("https://4867628.fs1.hubspotusercontent-na1.net/hubfs/4867628/25NASR5728%20Decision%20Making%20Campaign/corner-grey-bottom-right.svg");

  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;

  background-position:
    left top,
    right top,
    left bottom,
    right bottom;

  /* 👇 force exact square size */
  background-size:
    42px 42px,
    42px 42px,
    42px 42px,
    42px 42px;
}

.single-box__top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 5px;
  height: 62px;
  background: #D9D9D9;
}


.btn.btn--corners {
  text-transform: none;
  letter-spacing: 0.06em;
}

.btn.btn--corners:hover {
  background: #967126;
}

.btn--corners {
  position: relative;
  display: inline-block;
  /* keep your normal button sizing here */
  padding: 14px 28px;
  text-decoration: none;
}

.btn__corner {
  position: absolute;
  opacity: 0;
  pointer-events: none; /* prevents hover flicker */
  transition: opacity 180ms ease;
}

/* show on hover */
.btn--corners:hover .btn__corner,
.btn--corners:focus-visible .btn__corner {
  opacity: 1;
}

.btn__corner--top-left {
  top: -10px;
  left: -10px;
}
.btn__corner--top-right {
  top: -10px;
  right: -10px;
}
.btn__corner--bottom-left {
  bottom: -10px;
  left: -10px;
}
.btn__corner--bottom-right {
  bottom: -10px;
  right: -10px;
}

.single-box__all-in {
  width: 100%;
  max-width: 440px;
}

@media (max-width: 758px){
 .single-box__title {
    font-size: 30px;
   
}