.sw-promo-banner {
  padding: 1.5rem 0;

  &.silver {
    background-color: var(--primary-silver-200);
  }

  &.hide {
    display: none;
  }

  &.sw-orange {
    a {
      color: #003342;

      &:hover {
        text-decoration-thickness: 2px;
      }

      &:active {
        color: #111;
        text-decoration-thickness: 2px;
      }
    }
  }

  .sw19s-std-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 1.5rem;
    gap: 2rem;
  }

  .content-and-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .content {
    line-height: 1.5;
    opacity: 0.8;
    font-size: 1rem;
    max-width: 56.5rem;

    &.sw-justify-center {
      text-align: center;
    }

    &.sw-justify-right {
      text-align: right;
    }

    &.sw-text-size-small {
      font-size: 14px;
    }

    &.sw-text-size-large {
      font-size: 18px;
    }

    &.sw-text-exp-full {
      max-width: none;
    }

    a {
      text-decoration: underline;
      color: #006482;

      &:hover {
        text-decoration-thickness: 2px;
      }

      &:active {
        color: #003c4e;
        text-decoration-thickness: 2px;
      }

      &:visited {
        color: #800080;
      }

      &:visited:active {
        color: #510051;
      }
    }
  }

  .sw19s-text-color-gray-400 {
    color: var(--neutral-gray-400);
  }

  .content p {
    margin: 0;
  }

  .content strong {
    color: var(--primary-black-600);
  }

  .cta {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.78;
    opacity: 0.8;
    flex-shrink: 0;
  }

  .close {
    opacity: 0.8;
    background: none;
    cursor: pointer;
    margin-bottom: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid transparent;
    width: 29px;
    height: 29px;
    transition: all 0.4s ease;
    padding-block: 0;
    padding-inline: 0;
    min-height: 29px;
    min-width: 29px;

    &:hover {
      background-color: #ccc;
    }

    &:focus {
      border-color: #2c61f5;
      background-color: #fff;
      outline: none;
    }

    &:active {
      background-color: #444;

      svg {
        fill: #ccc;
      }
    }

    svg {
      width: 24px;
      height: 24px;
      fill: #000;
    }
  }

  @media (max-width: 768px) {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;

    .sw19s-std-wrap {
      align-items: flex-start;
      gap: 0.75rem;
    }

    .content-and-cta {
      display: block;
    }

    .content {
      font-size: 0.875rem;
      line-height: 1.57;

      a {
        word-break: break-all;
      }
    }

    .cta {
      display: block;
      padding-top: 0.5rem;
    }
  }
}
