.editor-styles-wrapper .column_component {
  border: 1px solid #2CA6E0;
  border-radius: 10px;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.editor-styles-wrapper .column_component .column_component_title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background: #2CA6E0;
  color: #FFFFFF;
  margin: 0;
  padding: 10px;
  border-radius: 5px 5px 0 0;
}
.editor-styles-wrapper .column_component .column_component_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 10px;
}
.editor-styles-wrapper .column_component .column_component_list .column_component_item {
  padding-left: 2rem;
  position: relative;
}
.editor-styles-wrapper .column_component .column_component_list .column_component_item::before {
  content: "✔︎";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  color: #2CA6E0;
}
.editor-styles-wrapper .column_component .column_component_list .column_component_item p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin-top: 0;
}
.editor-styles-wrapper .column_component .column_component_list .column_component_item p strong {
  font-weight: bold;
  color: #EF8337;
}
