div.callout {
  max-width: none;
  padding: 0; // override volto's style
  border: none;
  border-radius: unset;
  margin: 0;
  box-shadow: none;

  .callout-title {
    display: flex;
    width: calc(100% + 1.389rem * 2 + 1.4rem); // padding + icon
    margin-right: 0;

    svg.icon {
      min-width: 1.4rem;
    }

    .text {
      width: auto;
      padding-right: 1rem;

      &::after {
        display: none;
      }
    }

    .text-line {
      position: relative;
      top: 0.8rem;
      width: 100%;
      min-width: 3rem;
      height: 2px;
      flex: 1;
      background-color: $color-border-secondary;
    }
  }

  &.danger {
    .text-line {
      background-color: $danger;
    }
  }

  &.success {
    .text-line {
      background-color: $success;
    }
  }

  &.warning {
    .text-line {
      background-color: $warning;
    }
  }

  &.note {
    .text-line {
      background-color: $primary;
    }
  }
}
