/* ---------- Fonts ---------- */
@font-face{
  font-family: "Futura";
  src: url("/wp-content/uploads/fonts/Futura.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face{
  font-family: "Futura";
  src: url("/wp-content/uploads/fonts/Futura-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face{
  font-family: "Futura";
  src: url("/wp-content/uploads/fonts/Futura-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

/* ---------- Body copy block ---------- */
.tru-body{
  font-family: "Futura PT", "Futura", "Avenir Next", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  color: #ffffff;
  font-size: 0.8em;
}

/* ---------- Billing typography ---------- */
.tru-billing,
.tru-billing *{
  font-family: "Futura", "Futura PT", "Avenir Next", Helvetica, Arial, sans-serif;
  color: #ffffff;
  text-align: center;
}

/* Lead name */
.tru-billing__line1{
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 40px);
  letter-spacing: 0.17em;
  line-height: 1.2;
}

/* Second line container */
.tru-billing__line2{
  margin-top: 0.35em;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.1em;
  line-height: 1.2;
  width: 100%;
}

/* Character + credit names */
.tru-billing__line2 .major{
  font-weight: 500;
  font-size: 1.5em;
  letter-spacing: 0.17em;
  line-height: 1.2;
}
.tru-billing__line2 .name{
  font-weight: 500;
  font-size: 1.5em;
  letter-spacing: 0.17em;
  line-height: 1.2;
}
.tru-billing__line2 .small-name{
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 0.17em;
  line-height: 1.2;
}

/* Small connective words / labels */
.tru-billing__line2 .minor{
  font-weight: 400;
  font-size: 0.8em;
  letter-spacing: 0.30em;
  line-height: 1.2;
  opacity: 0.85;
}
.tru-billing__line2 .credit{
  font-weight: 400;
  font-size: 0.5em;
  letter-spacing: 0.30em;
  line-height: 1.2;
  opacity: 0.85;
}

/* MOBILE: stack credit + name (but NOT the role line) */
@media (max-width: 767px){

  /* Default: stack credits */
  .tru-billing__line2{
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    margin-top: 0.6em;
  }

  /* Role line stays inline + shrink-wrapped */
  .tru-billing__line2--role{
    flex-direction: row;
    align-items: baseline;
    justify-content: center;

    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;

    flex-wrap: wrap;
    column-gap: 0.35em;
    row-gap: 0.10em;
    margin-top: 0.35em;
  }

  .tru-billing__line2--role .minor{
    font-size: 0.65em;
    letter-spacing: 0.28em;
  }
  .tru-billing__line2--role .major{
    font-size: 1.05em;
    letter-spacing: 0.16em;
  }

  /* Mobile sizing tweaks for CREDIT lines only (not role line) */
  .tru-billing__line2:not(.tru-billing__line2--role) .name{
    font-size: 1.25em;
    letter-spacing: 0.15em;
    font-weight: 500 !important;
  }
  .tru-billing__line2:not(.tru-billing__line2--role) .small-name{
    font-size: 0.9em;
    letter-spacing: 0.15em;
    font-weight: 500 !important;
  }
  .tru-billing__line2:not(.tru-billing__line2--role) .minor{
    font-size: 0.75em;
    letter-spacing: 0.28em;
  }
  .tru-billing__line2:not(.tru-billing__line2--role) .credit{
    font-size: 0.65em;
    letter-spacing: 0.28em;
  }
}