.bobo-sidebanner .container h1,
  .bobo-sidebanner .container h2 {
    color: #fff;
    font-size: var(--bobo-sidebanner-title-size);
  }

  .bobo-sidebanner .path p,
  .bobo-sidebanner .path a {
    color: #fff;
  }

  :root {
    --bobo-sidebanner-title-size: 36px;
  }

  .bobo-sidebanner {
    position: relative;
    overflow: hidden;
  }

  .bobo-sidebanner.has-media .bobo-sidebanner-media {
    width: 100%;
  }

  .bobo-sidebanner.has-media .bobo-sidebanner-media img {
    display: block;
    width: 100%;
    height: auto;
  }

  .bobo-sidebanner .bobo-sidebanner-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .bobo-sidebanner .container {
    width: 100%;
    height: 100%;
    max-width: var(--container-max-width, 1200px);
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .bobo-sidebanner .container .left,
  .bobo-sidebanner .path.left {
    width: 100%;
    text-align: left;
  }

  .bobo-sidebanner .container .center,
  .bobo-sidebanner .path.center {
    width: 100%;
    text-align: center;
  }

  .bobo-sidebanner:not(.has-media) {
    min-height: 280px;
  }

  .bobo-sidebanner:not(.has-media) .bobo-sidebanner-overlay {
    position: static;
  }

  .bobo-sidebanner:not(.has-media) .container {
    min-height: 280px;
  }

  @media screen and (max-width: 1500px) {
    :root {
      --bobo-sidebanner-title-size: 32px;
    }
  }

  @media screen and (max-width: 1280px) {
    :root {
      --bobo-sidebanner-title-size: 28px;
    }
  }

  @media screen and (max-width: 1200px) {
    :root {
      --bobo-sidebanner-title-size: 26px;
    }
  }

  @media screen and (max-width: 992px) {
    :root {
      --bobo-sidebanner-title-size: 32px;
    }

    .bobo-sidebanner .container {
      padding: 0 20px;
    }
  }

  @media screen and (max-width: 768px) {
    :root {
      --bobo-sidebanner-title-size: 28px;
    }

    .bobo-sidebanner .container {
      padding: 0 16px;
    }

    .bobo-sidebanner:not(.has-media) .container {
      min-height: 180px;
    }
  }

  @media screen and (max-width: 576px) {
    :root {
      --bobo-sidebanner-title-size: 24px;
    }

    .bobo-sidebanner .container {
      padding: 0 12px;
    }
  }
