.itrcontents.banner {
  background-color: var(--brand-primary, red);

  ul {
    margin-bottom: 0;

    li {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      min-height: 3rem;

      img {
        width: auto;
        height: auto;
      }

      span {
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 700;
        color: var(--neutral-white, white);
      }
    }
  }
}

.itrcontents.additional-information {
  border: 1px solid var(--neutral-300, gray) ;

  ul {
    margin-bottom: 0;

    li {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      min-height: 2rem;

      img {
        width: auto;
        height: auto;
      }

      span {
        font-size: 0.875rem;
        line-height: 0.875rem;
        font-weight: 400;
        color: var(--neutral-black, black);
        width: fit-content;
        text-wrap: nowrap;
      }
    }
  }
}

