.pipeline-block {
  & .pipeline-block__content {
    background: #FAF9F7;
    border: 1.5px solid #cbcbcb;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media screen and (max-width: 1100px) {
      padding: 16px 11px;
    }

    & .pipeline-block__population p.hdr.label {
      opacity: 0.5;
      font-size: 1.3rem;

      @media screen and (max-width: 1100px) {
        font-size: 1.1rem;
      }
    }

    & .row {
      display: flex;
      flex-direction: row;
      gap: 20px;
      justify-content: space-between;

      @media screen and (max-width: 1100px) {
        flex-direction: column;
      }
    }

    & .pipeline-block__phases {
      max-width: 828px;

      
      @media screen and (min-width: 1100px) {
        padding-left: 20px;
        flex: 1;
      }
      & ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        gap: 20px;

        @media screen and (max-width: 1100px) {
          gap: 7px;
        }

        & li.phase {
          display: flex;
          flex-direction: column;
          gap: 14px;
          flex: 1;

          @media screen and (max-width: 1100px) {
            gap: 8px;
          }

          & span.label {
            color: var(--dark-gray);
            @media screen and (max-width: 1100px) {
              font-size: 1rem;
              letter-spacing: 0.5px;
            }
          }

          & span.status {
            width: 100%;
            border-radius: 100px;
            height: 8px;
            border: 1px solid;

            &.complete {
              background: var(--orange);
              border-color: var(--orange);
            }

            &.inprogress {
              background: var(--light-orange);
              border-color: var(--orange);
            }

            &.none {
              background: transparent;
              border-color: #24242366;
            }
          }

        }
      }
    }
    & .pipeline-block__copy {
      max-width: 890px;

      p.small {
        letter-spacing: 0;
      }
    }
  }


  margin-top: 24px;

  @media screen and (max-width: 1100px) {
    margin-top: 20px;
  }

}