<style>
/*****************************
 *  BASIC LAYOUT & TYPOGRAPHY
 *****************************/
.db-module {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,.1);
  font-family: inherit;
}
.db-module__labels {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #0091CE; /* Debtbook blue */
  font-size: 1rem;
  line-height:1.1;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-family: Overpass;
}
.db-module__row {
  display: flex;
  gap: 1rem 2rem; /* row then column */
  align-items: flex-start;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0,0,0,.1);
}
.db-module__col {
  flex: 1 1 0;
  min-width: 0;
}
.db-module__heading {
  font-weight: 700;
  margin: 0 0 .5rem;
  font-size: 1rem; /* ≈16px */
  line-height: 1.3;
  display:none;
}
.db-module__text {
  font-size: .9375rem; /* ≈15px */
  line-height: 1.45;
  margin: 0;
}

/*****************************
 *  ARROW
 *****************************/
.db-module__arrow {
  flex: 0 0 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.db-module__arrow svg {
  width: 100%;
  height: auto;
}

/*****************************
 *  MOBILE BREAKPOINT (≤ 767px)
 *****************************/
@media (max-width: 767px) {
  .db-module__labels {
    display: none;   /* hide GO FROM / TO labels */
  }
  .db-module__row {
    flex-direction: column;
    padding: 1.5rem 0;
    border-top: none;
  }
  .db-module__arrow {
    order: 2;
    width: 100%;
    height: 24px;
    margin: 1rem 0;
    transform: rotate(90deg);
  }
  .db-module__col--to {
    order: 3;
  }
  .db-module__heading {
    display:block;
  }
}
</style>